Skip to content

Commit 61a93dc

Browse files
authored
Merge branch '8.16' into automated/rest-api-spec-update-8.16
2 parents 97cf971 + 9c41428 commit 61a93dc

File tree

7 files changed

+133
-8
lines changed

7 files changed

+133
-8
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 11 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: 54 additions & 5 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: 3 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/security/_types/Privileges.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,11 @@ export class ReplicationAccess {
382382
* A list of indices (or index name patterns) to which the permissions in this entry apply.
383383
*/
384384
names: IndexName[]
385+
/**
386+
* This needs to be set to true if the patterns in the names field should cover system indices.
387+
* @server_default false
388+
*/
389+
allow_restricted_indices?: boolean
385390
}
386391

387392
export class SearchAccess {

0 commit comments

Comments
 (0)