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

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

/*
 * 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.
 */

//----------------------------------------------------
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------

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._types.query_dsl.Query;
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 co.elastic.clients.util.WithJsonObjectBuilderBase;
import jakarta.json.stream.JsonGenerator;
import java.lang.Boolean;
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 java.util.stream.Collectors;
import javax.annotation.Nullable;

// typedef: indices.put_alias.Request

/**
 * Creates or updates an alias.
 * 
 * @see API
 *      specification
 */
@JsonpDeserializable
public class PutAliasRequest extends RequestBase implements JsonpSerializable {
	@Nullable
	private final Query filter;

	private final List index;

	@Nullable
	private final String indexRouting;

	@Nullable
	private final Boolean isWriteIndex;

	@Nullable
	private final Time masterTimeout;

	private final String name;

	@Nullable
	private final String routing;

	@Nullable
	private final String searchRouting;

	@Nullable
	private final Time timeout;

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

	private PutAliasRequest(Builder builder) {

		this.filter = builder.filter;
		this.index = ApiTypeHelper.unmodifiableRequired(builder.index, this, "index");
		this.indexRouting = builder.indexRouting;
		this.isWriteIndex = builder.isWriteIndex;
		this.masterTimeout = builder.masterTimeout;
		this.name = ApiTypeHelper.requireNonNull(builder.name, this, "name");
		this.routing = builder.routing;
		this.searchRouting = builder.searchRouting;
		this.timeout = builder.timeout;

	}

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

	/**
	 * API name: {@code filter}
	 */
	@Nullable
	public final Query filter() {
		return this.filter;
	}

	/**
	 * Required - A comma-separated list of index names the alias should point to
	 * (supports wildcards); use _all to perform the operation on all
	 * indices.
	 * 

* API name: {@code index} */ public final List index() { return this.index; } /** * API name: {@code index_routing} */ @Nullable public final String indexRouting() { return this.indexRouting; } /** * API name: {@code is_write_index} */ @Nullable public final Boolean isWriteIndex() { return this.isWriteIndex; } /** * Specify timeout for connection to master *

* API name: {@code master_timeout} */ @Nullable public final Time masterTimeout() { return this.masterTimeout; } /** * Required - The name of the alias to be created or updated *

* API name: {@code name} */ public final String name() { return this.name; } /** * API name: {@code routing} */ @Nullable public final String routing() { return this.routing; } /** * API name: {@code search_routing} */ @Nullable public final String searchRouting() { return this.searchRouting; } /** * Explicit timestamp for the document *

* API name: {@code timeout} */ @Nullable public final Time timeout() { return this.timeout; } /** * 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 (this.filter != null) { generator.writeKey("filter"); this.filter.serialize(generator, mapper); } if (this.indexRouting != null) { generator.writeKey("index_routing"); generator.write(this.indexRouting); } if (this.isWriteIndex != null) { generator.writeKey("is_write_index"); generator.write(this.isWriteIndex); } if (this.routing != null) { generator.writeKey("routing"); generator.write(this.routing); } if (this.searchRouting != null) { generator.writeKey("search_routing"); generator.write(this.searchRouting); } } // --------------------------------------------------------------------------------------------- /** * Builder for {@link PutAliasRequest}. */ public static class Builder extends WithJsonObjectBuilderBase implements ObjectBuilder { @Nullable private Query filter; private List index; @Nullable private String indexRouting; @Nullable private Boolean isWriteIndex; @Nullable private Time masterTimeout; private String name; @Nullable private String routing; @Nullable private String searchRouting; @Nullable private Time timeout; /** * API name: {@code filter} */ public final Builder filter(@Nullable Query value) { this.filter = value; return this; } /** * API name: {@code filter} */ public final Builder filter(Function> fn) { return this.filter(fn.apply(new Query.Builder()).build()); } /** * Required - A comma-separated list of index names the alias should point to * (supports wildcards); use _all to perform the operation on all * indices. *

* API name: {@code index} *

* Adds all elements of list to index. */ public final Builder index(List list) { this.index = _listAddAll(this.index, list); return this; } /** * Required - A comma-separated list of index names the alias should point to * (supports wildcards); use _all to perform the operation on all * indices. *

* API name: {@code index} *

* Adds one or more values to index. */ public final Builder index(String value, String... values) { this.index = _listAdd(this.index, value, values); return this; } /** * API name: {@code index_routing} */ public final Builder indexRouting(@Nullable String value) { this.indexRouting = value; return this; } /** * API name: {@code is_write_index} */ public final Builder isWriteIndex(@Nullable Boolean value) { this.isWriteIndex = value; return this; } /** * Specify timeout for connection to master *

* API name: {@code master_timeout} */ public final Builder masterTimeout(@Nullable Time value) { this.masterTimeout = value; return this; } /** * Specify timeout for connection to master *

* API name: {@code master_timeout} */ public final Builder masterTimeout(Function> fn) { return this.masterTimeout(fn.apply(new Time.Builder()).build()); } /** * Required - The name of the alias to be created or updated *

* API name: {@code name} */ public final Builder name(String value) { this.name = value; return this; } /** * API name: {@code routing} */ public final Builder routing(@Nullable String value) { this.routing = value; return this; } /** * API name: {@code search_routing} */ public final Builder searchRouting(@Nullable String value) { this.searchRouting = value; return this; } /** * Explicit timestamp for the document *

* API name: {@code timeout} */ public final Builder timeout(@Nullable Time value) { this.timeout = value; return this; } /** * Explicit timestamp for the document *

* API name: {@code timeout} */ public final Builder timeout(Function> fn) { return this.timeout(fn.apply(new Time.Builder()).build()); } @Override protected Builder self() { return this; } /** * Builds a {@link PutAliasRequest}. * * @throws NullPointerException * if some of the required fields are null. */ public PutAliasRequest build() { _checkSingleUse(); return new PutAliasRequest(this); } } // --------------------------------------------------------------------------------------------- /** * Json deserializer for {@link PutAliasRequest} */ public static final JsonpDeserializer _DESERIALIZER = ObjectBuilderDeserializer.lazy(Builder::new, PutAliasRequest::setupPutAliasRequestDeserializer); protected static void setupPutAliasRequestDeserializer(ObjectDeserializer op) { op.add(Builder::filter, Query._DESERIALIZER, "filter"); op.add(Builder::indexRouting, JsonpDeserializer.stringDeserializer(), "index_routing"); op.add(Builder::isWriteIndex, JsonpDeserializer.booleanDeserializer(), "is_write_index"); op.add(Builder::routing, JsonpDeserializer.stringDeserializer(), "routing"); op.add(Builder::searchRouting, JsonpDeserializer.stringDeserializer(), "search_routing"); } // --------------------------------------------------------------------------------------------- /** * Endpoint "{@code indices.put_alias}". */ public static final Endpoint _ENDPOINT = new SimpleEndpoint<>( "es/indices.put_alias", // Request method request -> { return "PUT"; }, // Request path request -> { final int _name = 1 << 0; final int _index = 1 << 1; int propsSet = 0; propsSet |= _name; propsSet |= _index; if (propsSet == (_index | _name)) { StringBuilder buf = new StringBuilder(); buf.append("/"); SimpleEndpoint.pathEncode(request.index.stream().map(v -> v).collect(Collectors.joining(",")), buf); buf.append("/_alias"); buf.append("/"); SimpleEndpoint.pathEncode(request.name, buf); return buf.toString(); } if (propsSet == (_index | _name)) { StringBuilder buf = new StringBuilder(); buf.append("/"); SimpleEndpoint.pathEncode(request.index.stream().map(v -> v).collect(Collectors.joining(",")), buf); buf.append("/_aliases"); buf.append("/"); SimpleEndpoint.pathEncode(request.name, buf); return buf.toString(); } throw SimpleEndpoint.noPathTemplateFound("path"); }, // Request parameters request -> { Map params = new HashMap<>(); if (request.masterTimeout != null) { params.put("master_timeout", request.masterTimeout._toJsonString()); } if (request.timeout != null) { params.put("timeout", request.timeout._toJsonString()); } return params; }, SimpleEndpoint.emptyMap(), true, PutAliasResponse._DESERIALIZER); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy