Class IndexRequest.Builder<TDocument>
- java.lang.Object
-
- org.opensearch.client.util.ObjectBuilderBase
-
- org.opensearch.client.opensearch.core.IndexRequest.Builder<TDocument>
-
- All Implemented Interfaces:
ObjectBuilder<IndexRequest<TDocument>>
- Enclosing class:
- IndexRequest<TDocument>
public static class IndexRequest.Builder<TDocument> extends ObjectBuilderBase implements ObjectBuilder<IndexRequest<TDocument>>
Builder forIndexRequest.
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IndexRequest<TDocument>build()Builds aIndexRequest.IndexRequest.Builder<TDocument>document(TDocument value)Required - Request body.IndexRequest.Builder<TDocument>id(java.lang.String value)Document IDIndexRequest.Builder<TDocument>ifPrimaryTerm(java.lang.Long value)only perform the index operation if the last operation that has changed the document has the specified primary termIndexRequest.Builder<TDocument>ifSeqNo(java.lang.Long value)only perform the index operation if the last operation that has changed the document has the specified sequence numberIndexRequest.Builder<TDocument>index(java.lang.String value)Required - The name of the indexIndexRequest.Builder<TDocument>opType(OpType value)Explicit operation type.IndexRequest.Builder<TDocument>pipeline(java.lang.String value)The pipeline id to preprocess incoming documents withIndexRequest.Builder<TDocument>refresh(Refresh value)Iftruethen refresh the affected shards to make this operation visible to search, ifwait_forthen wait for a refresh to make this operation visible to search, iffalse(the default) then do nothing with refreshes.IndexRequest.Builder<TDocument>requireAlias(java.lang.Boolean value)When true, requires destination to be an alias.IndexRequest.Builder<TDocument>routing(java.lang.String value)Specific routing valueIndexRequest.Builder<TDocument>tDocumentSerializer(JsonpSerializer<TDocument> value)Serializer for TDocument.IndexRequest.Builder<TDocument>timeout(java.util.function.Function<Time.Builder,ObjectBuilder<Time>> fn)Explicit operation timeoutIndexRequest.Builder<TDocument>timeout(Time value)Explicit operation timeoutIndexRequest.Builder<TDocument>version(java.lang.Long value)Explicit version number for concurrency controlIndexRequest.Builder<TDocument>versionType(VersionType value)Specific version typeIndexRequest.Builder<TDocument>waitForActiveShards(java.util.function.Function<WaitForActiveShards.Builder,ObjectBuilder<WaitForActiveShards>> fn)Sets the number of shard copies that must be active before proceeding with the index operation.IndexRequest.Builder<TDocument>waitForActiveShards(WaitForActiveShards value)Sets the number of shard copies that must be active before proceeding with the index operation.-
Methods inherited from class org.opensearch.client.util.ObjectBuilderBase
_checkSingleUse, _listAdd, _listAddAll, _mapPut, _mapPutAll
-
-
-
-
Method Detail
-
id
public final IndexRequest.Builder<TDocument> id(@Nullable java.lang.String value)
Document IDAPI name:
id
-
ifPrimaryTerm
public final IndexRequest.Builder<TDocument> ifPrimaryTerm(@Nullable java.lang.Long value)
only perform the index operation if the last operation that has changed the document has the specified primary termAPI name:
if_primary_term
-
ifSeqNo
public final IndexRequest.Builder<TDocument> ifSeqNo(@Nullable java.lang.Long value)
only perform the index operation if the last operation that has changed the document has the specified sequence numberAPI name:
if_seq_no
-
index
public final IndexRequest.Builder<TDocument> index(java.lang.String value)
Required - The name of the indexAPI name:
index
-
opType
public final IndexRequest.Builder<TDocument> opType(@Nullable OpType value)
Explicit operation type. Defaults toindexfor requests with an explicit document ID, and tocreatefor requests without an explicit document IDAPI name:
op_type
-
pipeline
public final IndexRequest.Builder<TDocument> pipeline(@Nullable java.lang.String value)
The pipeline id to preprocess incoming documents withAPI name:
pipeline
-
refresh
public final IndexRequest.Builder<TDocument> refresh(@Nullable Refresh value)
Iftruethen refresh the affected shards to make this operation visible to search, ifwait_forthen wait for a refresh to make this operation visible to search, iffalse(the default) then do nothing with refreshes.API name:
refresh
-
requireAlias
public final IndexRequest.Builder<TDocument> requireAlias(@Nullable java.lang.Boolean value)
When true, requires destination to be an alias. Default is falseAPI name:
require_alias
-
routing
public final IndexRequest.Builder<TDocument> routing(@Nullable java.lang.String value)
Specific routing valueAPI name:
routing
-
timeout
public final IndexRequest.Builder<TDocument> timeout(@Nullable Time value)
Explicit operation timeoutAPI name:
timeout
-
timeout
public final IndexRequest.Builder<TDocument> timeout(java.util.function.Function<Time.Builder,ObjectBuilder<Time>> fn)
Explicit operation timeoutAPI name:
timeout
-
version
public final IndexRequest.Builder<TDocument> version(@Nullable java.lang.Long value)
Explicit version number for concurrency controlAPI name:
version
-
versionType
public final IndexRequest.Builder<TDocument> versionType(@Nullable VersionType value)
Specific version typeAPI name:
version_type
-
waitForActiveShards
public final IndexRequest.Builder<TDocument> waitForActiveShards(@Nullable WaitForActiveShards value)
Sets the number of shard copies that must be active before proceeding with the index operation. Defaults to 1, meaning the primary shard only. Set toallfor all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)API name:
wait_for_active_shards
-
waitForActiveShards
public final IndexRequest.Builder<TDocument> waitForActiveShards(java.util.function.Function<WaitForActiveShards.Builder,ObjectBuilder<WaitForActiveShards>> fn)
Sets the number of shard copies that must be active before proceeding with the index operation. Defaults to 1, meaning the primary shard only. Set toallfor all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)API name:
wait_for_active_shards
-
document
public final IndexRequest.Builder<TDocument> document(TDocument value)
Required - Request body.API name:
_value_body
-
tDocumentSerializer
public final IndexRequest.Builder<TDocument> tDocumentSerializer(@Nullable JsonpSerializer<TDocument> value)
Serializer for TDocument. If not set, an attempt will be made to find a serializer from the JSON context.
-
build
public IndexRequest<TDocument> build()
Builds aIndexRequest.- Specified by:
buildin interfaceObjectBuilder<TDocument>- Throws:
java.lang.NullPointerException- if some of the required fields are null.
-
-