Class IndexTemplate

java.lang.Object
co.elastic.clients.elasticsearch.indices.IndexTemplate
All Implemented Interfaces:
JsonpSerializable

@JsonpDeserializable public class IndexTemplate extends Object implements JsonpSerializable
See Also:
  • Field Details

  • Method Details

    • of

    • indexPatterns

      public final List<String> indexPatterns()
      Required - Name of the index template.

      API name: index_patterns

    • composedOf

      public final List<String> composedOf()
      Required - An ordered list of component template names. Component templates are merged in the order specified, meaning that the last component template specified has the highest precedence.

      API name: composed_of

    • template

      @Nullable public final IndexTemplateSummary template()
      Template to be applied. It may optionally include an aliases, mappings, or settings configuration.

      API name: template

    • version

      @Nullable public final Long version()
      Version number used to manage index templates externally. This number is not automatically generated by Elasticsearch.

      API name: version

    • priority

      @Nullable public final Long priority()
      Priority to determine index template precedence when a new data stream or index is created. The index template with the highest priority is chosen. If no priority is specified the template is treated as though it is of priority 0 (lowest priority). This number is not automatically generated by Elasticsearch.

      API name: priority

    • meta

      public final Map<String,JsonData> meta()
      Optional user metadata about the index template. May have any contents. This map is not automatically generated by Elasticsearch.

      API name: _meta

    • allowAutoCreate

      @Nullable public final Boolean allowAutoCreate()
      API name: allow_auto_create
    • dataStream

      @Nullable public final IndexTemplateDataStreamConfiguration dataStream()
      If this object is included, the template is used to create data streams and their backing indices. Supports an empty object. Data streams require a matching index template with a data_stream object.

      API name: data_stream

    • serialize

      public void serialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)
      Serialize this object to JSON.
      Specified by:
      serialize in interface JsonpSerializable
    • serializeInternal

      protected void serializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • setupIndexTemplateDeserializer

      protected static void setupIndexTemplateDeserializer(ObjectDeserializer<IndexTemplate.Builder> op)