Package | Description |
---|---|
org.elasticsearch.action.admin.indices.delete |
Delete index action.
|
org.elasticsearch.client |
The client module allowing to easily perform actions/operations.
|
org.elasticsearch.client.support |
Modifier and Type | Method and Description |
---|---|
DeleteIndexRequest |
DeleteIndexRequest.indices(String... indices) |
DeleteIndexRequest |
DeleteIndexRequest.indicesOptions(IndicesOptions indicesOptions) |
protected DeleteIndexRequest |
TransportDeleteIndexAction.newRequest() |
DeleteIndexRequest |
DeleteIndexRequest.timeout(String timeout)
Timeout to wait for the index deletion to be acknowledged by current cluster nodes.
|
DeleteIndexRequest |
DeleteIndexRequest.timeout(TimeValue timeout)
Timeout to wait for the index deletion to be acknowledged by current cluster nodes.
|
Modifier and Type | Method and Description |
---|---|
protected ClusterBlockException |
TransportDeleteIndexAction.checkBlock(DeleteIndexRequest request,
ClusterState state) |
protected void |
TransportDeleteIndexAction.doExecute(DeleteIndexRequest request,
ActionListener<DeleteIndexResponse> listener) |
protected void |
TransportDeleteIndexAction.masterOperation(DeleteIndexRequest request,
ClusterState state,
ActionListener<DeleteIndexResponse> listener) |
Modifier and Type | Method and Description |
---|---|
static DeleteIndexRequest |
Requests.deleteIndexRequest(String index)
Creates a delete index request.
|
Modifier and Type | Method and Description |
---|---|
ActionFuture<DeleteIndexResponse> |
IndicesAdminClient.delete(DeleteIndexRequest request)
Deletes an index based on the index name.
|
void |
IndicesAdminClient.delete(DeleteIndexRequest request,
ActionListener<DeleteIndexResponse> listener)
Deletes an index based on the index name.
|
Modifier and Type | Method and Description |
---|---|
ActionFuture<DeleteIndexResponse> |
AbstractIndicesAdminClient.delete(DeleteIndexRequest request) |
void |
AbstractIndicesAdminClient.delete(DeleteIndexRequest request,
ActionListener<DeleteIndexResponse> listener) |
Copyright © 2009–2015. All rights reserved.