Class IndexRequest<TDocument>
- java.lang.Object
-
- org.opensearch.client.opensearch._types.RequestBase
-
- org.opensearch.client.opensearch.core.IndexRequest<TDocument>
-
- All Implemented Interfaces:
JsonpSerializable
public class IndexRequest<TDocument> extends RequestBase implements JsonpSerializable
Creates or updates a document in an index.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIndexRequest.Builder<TDocument>Builder forIndexRequest.-
Nested classes/interfaces inherited from class org.opensearch.client.opensearch._types.RequestBase
RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>>
-
-
Field Summary
Fields Modifier and Type Field Description static Endpoint<IndexRequest<?>,IndexResponse,ErrorResponse>_ENDPOINTEndpoint "index".
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <TDocument>
JsonpDeserializer<IndexRequest<TDocument>>createIndexRequestDeserializer(JsonpDeserializer<TDocument> tDocumentDeserializer)TDocumentdocument()Required - Request body.java.lang.Stringid()Document IDjava.lang.LongifPrimaryTerm()only perform the index operation if the last operation that has changed the document has the specified primary termjava.lang.LongifSeqNo()only perform the index operation if the last operation that has changed the document has the specified sequence numberjava.lang.Stringindex()Required - The name of the indexstatic <TDocument>
IndexRequest<TDocument>of(java.util.function.Function<IndexRequest.Builder<TDocument>,ObjectBuilder<IndexRequest<TDocument>>> fn)OpTypeopType()Explicit operation type.java.lang.Stringpipeline()The pipeline id to preprocess incoming documents withRefreshrefresh()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.java.lang.BooleanrequireAlias()When true, requires destination to be an alias.java.lang.Stringrouting()Specific routing valuevoidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)Serialize this value to JSON.Timetimeout()Explicit operation timeoutjava.lang.Longversion()Explicit version number for concurrency controlVersionTypeversionType()Specific version typeWaitForActiveShardswaitForActiveShards()Sets the number of shard copies that must be active before proceeding with the index operation.
-
-
-
Field Detail
-
_ENDPOINT
public static final Endpoint<IndexRequest<?>,IndexResponse,ErrorResponse> _ENDPOINT
Endpoint "index".
-
-
Method Detail
-
of
public static <TDocument> IndexRequest<TDocument> of(java.util.function.Function<IndexRequest.Builder<TDocument>,ObjectBuilder<IndexRequest<TDocument>>> fn)
-
id
@Nullable public final java.lang.String id()
Document IDAPI name:
id
-
ifPrimaryTerm
@Nullable public final java.lang.Long ifPrimaryTerm()
only perform the index operation if the last operation that has changed the document has the specified primary termAPI name:
if_primary_term
-
ifSeqNo
@Nullable public final java.lang.Long ifSeqNo()
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 java.lang.String index()
Required - The name of the indexAPI name:
index
-
opType
@Nullable public final OpType opType()
Explicit operation type. Defaults toindexfor requests with an explicit document ID, and tocreatefor requests without an explicit document IDAPI name:
op_type
-
pipeline
@Nullable public final java.lang.String pipeline()
The pipeline id to preprocess incoming documents withAPI name:
pipeline
-
refresh
@Nullable public final Refresh refresh()
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
@Nullable public final java.lang.Boolean requireAlias()
When true, requires destination to be an alias. Default is falseAPI name:
require_alias
-
routing
@Nullable public final java.lang.String routing()
Specific routing valueAPI name:
routing
-
timeout
@Nullable public final Time timeout()
Explicit operation timeoutAPI name:
timeout
-
version
@Nullable public final java.lang.Long version()
Explicit version number for concurrency controlAPI name:
version
-
versionType
@Nullable public final VersionType versionType()
Specific version typeAPI name:
version_type
-
waitForActiveShards
@Nullable public final WaitForActiveShards waitForActiveShards()
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 TDocument document()
Required - Request body.API name:
_value_body
-
serialize
public void serialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)Serialize this value to JSON.- Specified by:
serializein interfaceJsonpSerializable
-
createIndexRequestDeserializer
public static <TDocument> JsonpDeserializer<IndexRequest<TDocument>> createIndexRequestDeserializer(JsonpDeserializer<TDocument> tDocumentDeserializer)
-
-