Uses of Class
org.elasticsearch.action.delete.DeleteRequestBuilder
-
Packages that use DeleteRequestBuilder Package Description org.elasticsearch.action.bulk org.elasticsearch.action.delete org.elasticsearch.client org.elasticsearch.client.support -
-
Uses of DeleteRequestBuilder in org.elasticsearch.action.bulk
Methods in org.elasticsearch.action.bulk with parameters of type DeleteRequestBuilder Modifier and Type Method Description BulkRequestBuilderBulkRequestBuilder. add(DeleteRequestBuilder request)Adds anDeleteRequestto the list of actions to execute. -
Uses of DeleteRequestBuilder in org.elasticsearch.action.delete
Methods in org.elasticsearch.action.delete that return DeleteRequestBuilder Modifier and Type Method Description DeleteRequestBuilderDeleteRequestBuilder. setId(String id)Sets the id of the document to delete.DeleteRequestBuilderDeleteRequestBuilder. setIfPrimaryTerm(long term)only perform this delete request if the document was last modification was assigned the given primary term.DeleteRequestBuilderDeleteRequestBuilder. setIfSeqNo(long seqNo)only perform this delete request if the document was last modification was assigned the given sequence number.DeleteRequestBuilderDeleteRequestBuilder. setRouting(String routing)Controls the shard routing of the delete request.DeleteRequestBuilderDeleteRequestBuilder. setType(String type)Sets the type of the document to delete.DeleteRequestBuilderDeleteRequestBuilder. setVersion(long version)Sets the version, which will cause the delete operation to only be performed if a matching version exists and no changes happened on the doc since then.DeleteRequestBuilderDeleteRequestBuilder. setVersionType(VersionType versionType)Sets the type of versioning to use. -
Uses of DeleteRequestBuilder in org.elasticsearch.client
Methods in org.elasticsearch.client that return DeleteRequestBuilder Modifier and Type Method Description DeleteRequestBuilderClient. prepareDelete()Deletes a document from the index based on the index, type and id.DeleteRequestBuilderClient. prepareDelete(String index, String type, String id)Deletes a document from the index based on the index, type and id. -
Uses of DeleteRequestBuilder in org.elasticsearch.client.support
Methods in org.elasticsearch.client.support that return DeleteRequestBuilder Modifier and Type Method Description DeleteRequestBuilderAbstractClient. prepareDelete()DeleteRequestBuilderAbstractClient. prepareDelete(String index, String type, String id)
-