Java Code Examples for org.elasticsearch.action.support.IndicesOptions#strictSingleIndexNoExpandForbidClosed()
The following examples show how to use
org.elasticsearch.action.support.IndicesOptions#strictSingleIndexNoExpandForbidClosed() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NodeMappingRefreshAction.java From Elasticsearch with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 2
Source File: CreateIndexRequest.java From Elasticsearch with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 3
Source File: GetIndexedScriptRequest.java From Elasticsearch with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 4
Source File: DeleteIndexedScriptRequest.java From Elasticsearch with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 5
Source File: PutIndexedScriptRequest.java From Elasticsearch with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 6
Source File: ReplicationRequest.java From Elasticsearch with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 7
Source File: InstanceShardOperationRequest.java From Elasticsearch with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 8
Source File: IngestReplicaShardRequest.java From elasticsearch-helper with Apache License 2.0 | 4 votes |
public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 9
Source File: IngestLeaderShardRequest.java From elasticsearch-helper with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 10
Source File: NodeMappingRefreshAction.java From crate with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 11
Source File: CreateIndexRequest.java From crate with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }
Example 12
Source File: ReplicationRequest.java From crate with Apache License 2.0 | 4 votes |
@Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); }