Class DeleteRequest.Builder
java.lang.Object
co.elastic.clients.elasticsearch._core.DeleteRequest.Builder
- All Implemented Interfaces:
ObjectBuilder<DeleteRequest>
- Enclosing class:
- DeleteRequest
public static class DeleteRequest.Builder extends java.lang.Object implements ObjectBuilder<DeleteRequest>
Builder for
DeleteRequest.-
Constructor Summary
Constructors Constructor Description Builder() -
Method Summary
Modifier and Type Method Description DeleteRequestbuild()Builds aDeleteRequest.DeleteRequest.Builderid(java.lang.String value)Required - The document IDDeleteRequest.BuilderifPrimaryTerm(java.lang.Long value)only perform the delete operation if the last operation that has changed the document has the specified primary termDeleteRequest.BuilderifSeqNo(java.lang.Integer value)only perform the delete operation if the last operation that has changed the document has the specified sequence numberDeleteRequest.Builderindex(java.lang.String value)Required - The name of the indexDeleteRequest.Builderrefresh(jakarta.json.JsonValue 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.DeleteRequest.Builderrouting(java.lang.String value)Specific routing valueDeleteRequest.Buildertimeout(java.lang.String value)Explicit operation timeoutDeleteRequest.Buildertype(java.lang.String value)The type of the documentDeleteRequest.Builderversion(java.lang.Long value)Explicit version number for concurrency controlDeleteRequest.BuilderversionType(VersionType value)Specific version typeDeleteRequest.BuilderwaitForActiveShards(jakarta.json.JsonValue value)Sets the number of shard copies that must be active before proceeding with the delete operation.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
id
Required - The document IDAPI name:
id -
index
Required - The name of the indexAPI name:
index -
type
The type of the documentAPI name:
type -
ifPrimaryTerm
only perform the delete operation if the last operation that has changed the document has the specified primary termAPI name:
if_primary_term -
ifSeqNo
only perform the delete operation if the last operation that has changed the document has the specified sequence numberAPI name:
if_seq_no -
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 -
routing
Specific routing valueAPI name:
routing -
timeout
Explicit operation timeoutAPI name:
timeout -
version
Explicit version number for concurrency controlAPI name:
version -
versionType
Specific version typeAPI name:
version_type -
waitForActiveShards
Sets the number of shard copies that must be active before proceeding with the delete 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 -
build
Builds aDeleteRequest.- Specified by:
buildin interfaceObjectBuilder<DeleteRequest>- Throws:
java.lang.NullPointerException- if some of the required fields are null.
-