Skip to content

Commit 39bc792

Browse files
authored
Merge branch '8.x' into automated/rest-api-spec-update-8.x
2 parents 9cb476d + 60b3a5f commit 39bc792

File tree

8 files changed

+151
-7
lines changed

8 files changed

+151
-7
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 17 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: 65 additions & 4 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/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
@@ -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)