We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
IndexTemplate
1 parent 55d431a commit 5ab68c3Copy full SHA for 5ab68c3
specification/indices/_types/IndexTemplate.ts
@@ -64,6 +64,16 @@ export class IndexTemplate {
64
* Data streams require a matching index template with a `data_stream` object.
65
*/
66
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
+ */
72
+ deprecated?: boolean
73
74
+ * A list of component template names that are allowed to be absent.
75
76
+ ignore_missing_component_templates?: Names
77
}
78
79
export class IndexTemplateDataStreamConfiguration {
0 commit comments