Uses of Class
org.elasticsearch.action.delete.DeleteRequest
-
Packages that use DeleteRequest Package Description org.elasticsearch.action.bulk org.elasticsearch.action.delete org.elasticsearch.client org.elasticsearch.client.support -
-
Uses of DeleteRequest in org.elasticsearch.action.bulk
Methods in org.elasticsearch.action.bulk with parameters of type DeleteRequest Modifier and Type Method Description BulkRequestBulkRequest. add(DeleteRequest request)Adds anDeleteRequestto the list of actions to execute.BulkRequestBuilderBulkRequestBuilder. add(DeleteRequest request)Adds anDeleteRequestto the list of actions to execute. -
Uses of DeleteRequest in org.elasticsearch.action.delete
Methods in org.elasticsearch.action.delete that return DeleteRequest Modifier and Type Method Description DeleteRequestDeleteRequest. defaultTypeIfNull(String defaultType)Deprecated.Types are in the process of being removed.DeleteRequestDeleteRequest. id(String id)Sets the id of the document to delete.DeleteRequestDeleteRequest. routing(String routing)Controls the shard routing of the request.DeleteRequestDeleteRequest. setIfPrimaryTerm(long term)only perform this delete request if the document was last modification was assigned the given primary term.DeleteRequestDeleteRequest. setIfSeqNo(long seqNo)only perform this delete request if the document was last modification was assigned the given sequence number.DeleteRequestDeleteRequest. type(String type)Deprecated.Types are in the process of being removed.DeleteRequestDeleteRequest. version(long version)DeleteRequestDeleteRequest. versionType(VersionType versionType) -
Uses of DeleteRequest in org.elasticsearch.client
Methods in org.elasticsearch.client that return DeleteRequest Modifier and Type Method Description static DeleteRequestRequests. deleteRequest(String index)Creates a delete request against a specific index.Methods in org.elasticsearch.client with parameters of type DeleteRequest Modifier and Type Method Description ActionFuture<DeleteResponse>Client. delete(DeleteRequest request)Deletes a document from the index based on the index, type and id.voidClient. delete(DeleteRequest request, ActionListener<DeleteResponse> listener)Deletes a document from the index based on the index, type and id.DeleteResponseRestHighLevelClient. delete(DeleteRequest deleteRequest, RequestOptions options)Deletes a document by id using the Delete API.CancellableRestHighLevelClient. deleteAsync(DeleteRequest deleteRequest, RequestOptions options, ActionListener<DeleteResponse> listener)Asynchronously deletes a document by id using the Delete API. -
Uses of DeleteRequest in org.elasticsearch.client.support
Methods in org.elasticsearch.client.support with parameters of type DeleteRequest Modifier and Type Method Description ActionFuture<DeleteResponse>AbstractClient. delete(DeleteRequest request)voidAbstractClient. delete(DeleteRequest request, ActionListener<DeleteResponse> listener)
-