All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.elastic.clients.elasticsearch.indices.SimulateTemplateRequest Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to Elasticsearch B.V. under one or more contributor
 * license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright
 * ownership. Elasticsearch B.V. licenses this file to you under
 * the Apache License, Version 2.0 (the "License"); you may
 * not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package co.elastic.clients.elasticsearch.indices;

import co.elastic.clients.elasticsearch._types.ErrorResponse;
import co.elastic.clients.elasticsearch._types.RequestBase;
import co.elastic.clients.elasticsearch._types.Time;
import co.elastic.clients.elasticsearch.indices.put_index_template.IndexTemplateMapping;
import co.elastic.clients.json.JsonData;
import co.elastic.clients.json.JsonpDeserializable;
import co.elastic.clients.json.JsonpDeserializer;
import co.elastic.clients.json.JsonpMapper;
import co.elastic.clients.json.JsonpSerializable;
import co.elastic.clients.json.ObjectBuilderDeserializer;
import co.elastic.clients.json.ObjectDeserializer;
import co.elastic.clients.transport.Endpoint;
import co.elastic.clients.transport.endpoints.SimpleEndpoint;
import co.elastic.clients.util.ApiTypeHelper;
import co.elastic.clients.util.ObjectBuilder;
import jakarta.json.stream.JsonGenerator;
import java.lang.Boolean;
import java.lang.Long;
import java.lang.String;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.function.Function;
import javax.annotation.Nullable;

//----------------------------------------------------------------
//       THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------------------
//
// This code is generated from the Elasticsearch API specification
// at https://github.com/elastic/elasticsearch-specification
//
// Manual updates to this file will be lost when the code is
// re-generated.
//
// If you find a property that is missing or wrongly typed, please
// open an issue or a PR on the API specification repository.
//
//----------------------------------------------------------------

// typedef: indices.simulate_template.Request

/**
 * Simulate an index template. Get the index configuration that would be applied
 * by a particular index template.
 * 
 * @see API
 *      specification
 */
@JsonpDeserializable
public class SimulateTemplateRequest extends RequestBase implements JsonpSerializable {
	private final Map meta;

	@Nullable
	private final Boolean allowAutoCreate;

	@Nullable
	private final String cause;

	private final List composedOf;

	@Nullable
	private final Boolean create;

	@Nullable
	private final DataStreamVisibility dataStream;

	@Nullable
	private final Boolean deprecated;

	private final List ignoreMissingComponentTemplates;

	@Nullable
	private final Boolean includeDefaults;

	private final List indexPatterns;

	@Nullable
	private final Time masterTimeout;

	@Nullable
	private final String name;

	@Nullable
	private final Long priority;

	@Nullable
	private final IndexTemplateMapping template;

	@Nullable
	private final Long version;

	// ---------------------------------------------------------------------------------------------

	private SimulateTemplateRequest(Builder builder) {

		this.meta = ApiTypeHelper.unmodifiable(builder.meta);
		this.allowAutoCreate = builder.allowAutoCreate;
		this.cause = builder.cause;
		this.composedOf = ApiTypeHelper.unmodifiable(builder.composedOf);
		this.create = builder.create;
		this.dataStream = builder.dataStream;
		this.deprecated = builder.deprecated;
		this.ignoreMissingComponentTemplates = ApiTypeHelper.unmodifiable(builder.ignoreMissingComponentTemplates);
		this.includeDefaults = builder.includeDefaults;
		this.indexPatterns = ApiTypeHelper.unmodifiable(builder.indexPatterns);
		this.masterTimeout = builder.masterTimeout;
		this.name = builder.name;
		this.priority = builder.priority;
		this.template = builder.template;
		this.version = builder.version;

	}

	public static SimulateTemplateRequest of(Function> fn) {
		return fn.apply(new Builder()).build();
	}

	/**
	 * Optional user metadata about the index template. May have any contents. This
	 * map is not automatically generated by Elasticsearch.
	 * 

* API name: {@code _meta} */ public final Map meta() { return this.meta; } /** * This setting overrides the value of the action.auto_create_index * cluster setting. If set to true in a template, then indices can * be automatically created using that template even if auto-creation of indices * is disabled via actions.auto_create_index. If set to * false, then indices or data streams matching the template must * always be explicitly created, and may never be automatically created. *

* API name: {@code allow_auto_create} */ @Nullable public final Boolean allowAutoCreate() { return this.allowAutoCreate; } /** * User defined reason for dry-run creating the new template for simulation * purposes *

* API name: {@code cause} */ @Nullable public final String cause() { return this.cause; } /** * 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: {@code composed_of} */ public final List composedOf() { return this.composedOf; } /** * If true, the template passed in the body is only used if no existing * templates match the same index patterns. If false, the simulation uses the * template with the highest priority. Note that the template is not permanently * added or updated in either case; it is only used for the simulation. *

* API name: {@code create} */ @Nullable public final Boolean create() { return this.create; } /** * 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: {@code data_stream} */ @Nullable public final DataStreamVisibility dataStream() { return this.dataStream; } /** * Marks this index template as deprecated. When creating or updating a * non-deprecated index template that uses deprecated components, Elasticsearch * will emit a deprecation warning. *

* API name: {@code deprecated} */ @Nullable public final Boolean deprecated() { return this.deprecated; } /** * The configuration option ignore_missing_component_templates can be used when * an index template references a component template that might not exist *

* API name: {@code ignore_missing_component_templates} */ public final List ignoreMissingComponentTemplates() { return this.ignoreMissingComponentTemplates; } /** * If true, returns all relevant default configurations for the index template. *

* API name: {@code include_defaults} */ @Nullable public final Boolean includeDefaults() { return this.includeDefaults; } /** * Array of wildcard (*) expressions used to match the names of * data streams and indices during creation. *

* API name: {@code index_patterns} */ public final List indexPatterns() { return this.indexPatterns; } /** * Period to wait for a connection to the master node. If no response is * received before the timeout expires, the request fails and returns an error. *

* API name: {@code master_timeout} */ @Nullable public final Time masterTimeout() { return this.masterTimeout; } /** * Name of the index template to simulate. To test a template configuration * before you add it to the cluster, omit this parameter and specify the * template configuration in the request body. *

* API name: {@code name} */ @Nullable public final String name() { return this.name; } /** * 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: {@code priority} */ @Nullable public final Long priority() { return this.priority; } /** * Template to be applied. It may optionally include an aliases, * mappings, or settings configuration. *

* API name: {@code template} */ @Nullable public final IndexTemplateMapping template() { return this.template; } /** * Version number used to manage index templates externally. This number is not * automatically generated by Elasticsearch. *

* API name: {@code version} */ @Nullable public final Long version() { return this.version; } /** * Serialize this object to JSON. */ public void serialize(JsonGenerator generator, JsonpMapper mapper) { generator.writeStartObject(); serializeInternal(generator, mapper); generator.writeEnd(); } protected void serializeInternal(JsonGenerator generator, JsonpMapper mapper) { if (ApiTypeHelper.isDefined(this.meta)) { generator.writeKey("_meta"); generator.writeStartObject(); for (Map.Entry item0 : this.meta.entrySet()) { generator.writeKey(item0.getKey()); item0.getValue().serialize(generator, mapper); } generator.writeEnd(); } if (this.allowAutoCreate != null) { generator.writeKey("allow_auto_create"); generator.write(this.allowAutoCreate); } if (ApiTypeHelper.isDefined(this.composedOf)) { generator.writeKey("composed_of"); generator.writeStartArray(); for (String item0 : this.composedOf) { generator.write(item0); } generator.writeEnd(); } if (this.dataStream != null) { generator.writeKey("data_stream"); this.dataStream.serialize(generator, mapper); } if (this.deprecated != null) { generator.writeKey("deprecated"); generator.write(this.deprecated); } if (ApiTypeHelper.isDefined(this.ignoreMissingComponentTemplates)) { generator.writeKey("ignore_missing_component_templates"); generator.writeStartArray(); for (String item0 : this.ignoreMissingComponentTemplates) { generator.write(item0); } generator.writeEnd(); } if (ApiTypeHelper.isDefined(this.indexPatterns)) { generator.writeKey("index_patterns"); generator.writeStartArray(); for (String item0 : this.indexPatterns) { generator.write(item0); } generator.writeEnd(); } if (this.priority != null) { generator.writeKey("priority"); generator.write(this.priority); } if (this.template != null) { generator.writeKey("template"); this.template.serialize(generator, mapper); } if (this.version != null) { generator.writeKey("version"); generator.write(this.version); } } // --------------------------------------------------------------------------------------------- /** * Builder for {@link SimulateTemplateRequest}. */ public static class Builder extends RequestBase.AbstractBuilder implements ObjectBuilder { @Nullable private Map meta; @Nullable private Boolean allowAutoCreate; @Nullable private String cause; @Nullable private List composedOf; @Nullable private Boolean create; @Nullable private DataStreamVisibility dataStream; @Nullable private Boolean deprecated; @Nullable private List ignoreMissingComponentTemplates; @Nullable private Boolean includeDefaults; @Nullable private List indexPatterns; @Nullable private Time masterTimeout; @Nullable private String name; @Nullable private Long priority; @Nullable private IndexTemplateMapping template; @Nullable private Long version; /** * Optional user metadata about the index template. May have any contents. This * map is not automatically generated by Elasticsearch. *

* API name: {@code _meta} *

* Adds all entries of map to meta. */ public final Builder meta(Map map) { this.meta = _mapPutAll(this.meta, map); return this; } /** * Optional user metadata about the index template. May have any contents. This * map is not automatically generated by Elasticsearch. *

* API name: {@code _meta} *

* Adds an entry to meta. */ public final Builder meta(String key, JsonData value) { this.meta = _mapPut(this.meta, key, value); return this; } /** * This setting overrides the value of the action.auto_create_index * cluster setting. If set to true in a template, then indices can * be automatically created using that template even if auto-creation of indices * is disabled via actions.auto_create_index. If set to * false, then indices or data streams matching the template must * always be explicitly created, and may never be automatically created. *

* API name: {@code allow_auto_create} */ public final Builder allowAutoCreate(@Nullable Boolean value) { this.allowAutoCreate = value; return this; } /** * User defined reason for dry-run creating the new template for simulation * purposes *

* API name: {@code cause} */ public final Builder cause(@Nullable String value) { this.cause = value; return this; } /** * 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: {@code composed_of} *

* Adds all elements of list to composedOf. */ public final Builder composedOf(List list) { this.composedOf = _listAddAll(this.composedOf, list); return this; } /** * 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: {@code composed_of} *

* Adds one or more values to composedOf. */ public final Builder composedOf(String value, String... values) { this.composedOf = _listAdd(this.composedOf, value, values); return this; } /** * If true, the template passed in the body is only used if no existing * templates match the same index patterns. If false, the simulation uses the * template with the highest priority. Note that the template is not permanently * added or updated in either case; it is only used for the simulation. *

* API name: {@code create} */ public final Builder create(@Nullable Boolean value) { this.create = value; return this; } /** * 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: {@code data_stream} */ public final Builder dataStream(@Nullable DataStreamVisibility value) { this.dataStream = value; return this; } /** * 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: {@code data_stream} */ public final Builder dataStream( Function> fn) { return this.dataStream(fn.apply(new DataStreamVisibility.Builder()).build()); } /** * Marks this index template as deprecated. When creating or updating a * non-deprecated index template that uses deprecated components, Elasticsearch * will emit a deprecation warning. *

* API name: {@code deprecated} */ public final Builder deprecated(@Nullable Boolean value) { this.deprecated = value; return this; } /** * The configuration option ignore_missing_component_templates can be used when * an index template references a component template that might not exist *

* API name: {@code ignore_missing_component_templates} *

* Adds all elements of list to * ignoreMissingComponentTemplates. */ public final Builder ignoreMissingComponentTemplates(List list) { this.ignoreMissingComponentTemplates = _listAddAll(this.ignoreMissingComponentTemplates, list); return this; } /** * The configuration option ignore_missing_component_templates can be used when * an index template references a component template that might not exist *

* API name: {@code ignore_missing_component_templates} *

* Adds one or more values to ignoreMissingComponentTemplates. */ public final Builder ignoreMissingComponentTemplates(String value, String... values) { this.ignoreMissingComponentTemplates = _listAdd(this.ignoreMissingComponentTemplates, value, values); return this; } /** * If true, returns all relevant default configurations for the index template. *

* API name: {@code include_defaults} */ public final Builder includeDefaults(@Nullable Boolean value) { this.includeDefaults = value; return this; } /** * Array of wildcard (*) expressions used to match the names of * data streams and indices during creation. *

* API name: {@code index_patterns} *

* Adds all elements of list to indexPatterns. */ public final Builder indexPatterns(List list) { this.indexPatterns = _listAddAll(this.indexPatterns, list); return this; } /** * Array of wildcard (*) expressions used to match the names of * data streams and indices during creation. *

* API name: {@code index_patterns} *

* Adds one or more values to indexPatterns. */ public final Builder indexPatterns(String value, String... values) { this.indexPatterns = _listAdd(this.indexPatterns, value, values); return this; } /** * Period to wait for a connection to the master node. If no response is * received before the timeout expires, the request fails and returns an error. *

* API name: {@code master_timeout} */ public final Builder masterTimeout(@Nullable Time value) { this.masterTimeout = value; return this; } /** * Period to wait for a connection to the master node. If no response is * received before the timeout expires, the request fails and returns an error. *

* API name: {@code master_timeout} */ public final Builder masterTimeout(Function> fn) { return this.masterTimeout(fn.apply(new Time.Builder()).build()); } /** * Name of the index template to simulate. To test a template configuration * before you add it to the cluster, omit this parameter and specify the * template configuration in the request body. *

* API name: {@code name} */ public final Builder name(@Nullable String value) { this.name = value; return this; } /** * 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: {@code priority} */ public final Builder priority(@Nullable Long value) { this.priority = value; return this; } /** * Template to be applied. It may optionally include an aliases, * mappings, or settings configuration. *

* API name: {@code template} */ public final Builder template(@Nullable IndexTemplateMapping value) { this.template = value; return this; } /** * Template to be applied. It may optionally include an aliases, * mappings, or settings configuration. *

* API name: {@code template} */ public final Builder template(Function> fn) { return this.template(fn.apply(new IndexTemplateMapping.Builder()).build()); } /** * Version number used to manage index templates externally. This number is not * automatically generated by Elasticsearch. *

* API name: {@code version} */ public final Builder version(@Nullable Long value) { this.version = value; return this; } @Override protected Builder self() { return this; } /** * Builds a {@link SimulateTemplateRequest}. * * @throws NullPointerException * if some of the required fields are null. */ public SimulateTemplateRequest build() { _checkSingleUse(); return new SimulateTemplateRequest(this); } } // --------------------------------------------------------------------------------------------- /** * Json deserializer for {@link SimulateTemplateRequest} */ public static final JsonpDeserializer _DESERIALIZER = ObjectBuilderDeserializer .lazy(Builder::new, SimulateTemplateRequest::setupSimulateTemplateRequestDeserializer); protected static void setupSimulateTemplateRequestDeserializer( ObjectDeserializer op) { op.add(Builder::meta, JsonpDeserializer.stringMapDeserializer(JsonData._DESERIALIZER), "_meta"); op.add(Builder::allowAutoCreate, JsonpDeserializer.booleanDeserializer(), "allow_auto_create"); op.add(Builder::composedOf, JsonpDeserializer.arrayDeserializer(JsonpDeserializer.stringDeserializer()), "composed_of"); op.add(Builder::dataStream, DataStreamVisibility._DESERIALIZER, "data_stream"); op.add(Builder::deprecated, JsonpDeserializer.booleanDeserializer(), "deprecated"); op.add(Builder::ignoreMissingComponentTemplates, JsonpDeserializer.arrayDeserializer(JsonpDeserializer.stringDeserializer()), "ignore_missing_component_templates"); op.add(Builder::indexPatterns, JsonpDeserializer.arrayDeserializer(JsonpDeserializer.stringDeserializer()), "index_patterns"); op.add(Builder::priority, JsonpDeserializer.longDeserializer(), "priority"); op.add(Builder::template, IndexTemplateMapping._DESERIALIZER, "template"); op.add(Builder::version, JsonpDeserializer.longDeserializer(), "version"); } // --------------------------------------------------------------------------------------------- /** * Endpoint "{@code indices.simulate_template}". */ public static final Endpoint _ENDPOINT = new SimpleEndpoint<>( "es/indices.simulate_template", // Request method request -> { return "POST"; }, // Request path request -> { final int _name = 1 << 0; int propsSet = 0; if (request.name() != null) propsSet |= _name; if (propsSet == 0) { StringBuilder buf = new StringBuilder(); buf.append("/_index_template"); buf.append("/_simulate"); return buf.toString(); } if (propsSet == (_name)) { StringBuilder buf = new StringBuilder(); buf.append("/_index_template"); buf.append("/_simulate"); buf.append("/"); SimpleEndpoint.pathEncode(request.name, buf); return buf.toString(); } throw SimpleEndpoint.noPathTemplateFound("path"); }, // Path parameters request -> { Map params = new HashMap<>(); final int _name = 1 << 0; int propsSet = 0; if (request.name() != null) propsSet |= _name; if (propsSet == 0) { } if (propsSet == (_name)) { params.put("name", request.name); } return params; }, // Request parameters request -> { Map params = new HashMap<>(); if (request.masterTimeout != null) { params.put("master_timeout", request.masterTimeout._toJsonString()); } if (request.create != null) { params.put("create", String.valueOf(request.create)); } if (request.cause != null) { params.put("cause", request.cause); } if (request.includeDefaults != null) { params.put("include_defaults", String.valueOf(request.includeDefaults)); } return params; }, SimpleEndpoint.emptyMap(), true, SimulateTemplateResponse._DESERIALIZER); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy