Class DeleteRequest

java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch._core.DeleteRequest
All Implemented Interfaces:
ElasticsearchCommonRequest

public final class DeleteRequest
extends RequestBase
  • Nested Class Summary

    Nested Classes
    Modifier and Type Class Description
    static class  DeleteRequest.Builder
    Builder for DeleteRequest.

    Nested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBase

    RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>>
  • Field Summary

    Fields
    Modifier and Type Field Description
    static Endpoint<DeleteRequest,​DeleteResponse,​ElasticsearchError> ENDPOINT
    Endpoint "delete".
  • Constructor Summary

    Constructors
    Constructor Description
    DeleteRequest​(DeleteRequest.Builder builder)  
    DeleteRequest​(java.util.function.Function<DeleteRequest.Builder,​DeleteRequest.Builder> fn)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String id()
    Required - The document ID
    java.lang.Long ifPrimaryTerm()
    only perform the delete operation if the last operation that has changed the document has the specified primary term
    java.lang.Integer ifSeqNo()
    only perform the delete operation if the last operation that has changed the document has the specified sequence number
    java.lang.String index()
    Required - The name of the index
    jakarta.json.JsonValue refresh()
    If true then refresh the affected shards to make this operation visible to search, if wait_for then wait for a refresh to make this operation visible to search, if false (the default) then do nothing with refreshes.
    java.lang.String routing()
    Specific routing value
    java.lang.String timeout()
    Explicit operation timeout
    java.lang.String type()
    The type of the document
    java.lang.Long version()
    Explicit version number for concurrency control
    VersionType versionType()
    Specific version type
    jakarta.json.JsonValue waitForActiveShards()
    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
  • Field Details

  • Constructor Details

  • Method Details

    • id

      public java.lang.String id()
      Required - The document ID

      API name: id

    • index

      public java.lang.String index()
      Required - The name of the index

      API name: index

    • type

      @Nullable public java.lang.String type()
      The type of the document

      API name: type

    • ifPrimaryTerm

      @Nullable public java.lang.Long ifPrimaryTerm()
      only perform the delete operation if the last operation that has changed the document has the specified primary term

      API name: if_primary_term

    • ifSeqNo

      @Nullable public java.lang.Integer ifSeqNo()
      only perform the delete operation if the last operation that has changed the document has the specified sequence number

      API name: if_seq_no

    • refresh

      @Nullable public jakarta.json.JsonValue refresh()
      If true then refresh the affected shards to make this operation visible to search, if wait_for then wait for a refresh to make this operation visible to search, if false (the default) then do nothing with refreshes.

      API name: refresh

    • routing

      @Nullable public java.lang.String routing()
      Specific routing value

      API name: routing

    • timeout

      @Nullable public java.lang.String timeout()
      Explicit operation timeout

      API name: timeout

    • version

      @Nullable public java.lang.Long version()
      Explicit version number for concurrency control

      API name: version

    • versionType

      @Nullable public VersionType versionType()
      Specific version type

      API name: version_type

    • waitForActiveShards

      @Nullable public jakarta.json.JsonValue 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 to all for 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