Skip to content

Commit 12f4889

Browse files
authored
Merge branch 'main' into automated/rest-api-spec-update-main
2 parents ac25b9d + 2c94880 commit 12f4889

File tree

8 files changed

+171
-9
lines changed

8 files changed

+171
-9
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 39 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 80 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/indices/_types/IndexTemplate.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,20 @@ export class IndexTemplate {
6464
* Data streams require a matching index template with a `data_stream` object.
6565
*/
6666
data_stream?: IndexTemplateDataStreamConfiguration
67+
/**
68+
* Marks this index template as deprecated.
69+
* When creating or updating a non-deprecated index template that uses deprecated components,
70+
* Elasticsearch will emit a deprecation warning.
71+
* @availability stack since=8.12.0
72+
* @availability serverless
73+
*/
74+
deprecated?: boolean
75+
/**
76+
* A list of component template names that are allowed to be absent.
77+
* @availability stack since=8.7.0
78+
* @availability serverless
79+
*/
80+
ignore_missing_component_templates?: Names
6781
}
6882

6983
export class IndexTemplateDataStreamConfiguration {

specification/migration/deprecations/DeprecationInfoResponse.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export class Response {
2424
body: {
2525
cluster_settings: Deprecation[]
2626
index_settings: Dictionary<string, Deprecation[]>
27+
data_streams: Dictionary<string, Deprecation[]>
2728
node_settings: Deprecation[]
2829
ml_settings: Deprecation[]
2930
}

specification/security/_types/Privileges.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,11 @@ export class ReplicationAccess {
418418
* A list of indices (or index name patterns) to which the permissions in this entry apply.
419419
*/
420420
names: IndexName[]
421+
/**
422+
* This needs to be set to true if the patterns in the names field should cover system indices.
423+
* @server_default false
424+
*/
425+
allow_restricted_indices?: boolean
421426
}
422427

423428
export class SearchAccess {

0 commit comments

Comments
 (0)