CreateIndexRequestBuilder |
CreateIndexRequestBuilder.addAlias(Alias alias) |
Adds an alias that will be associated with the index when it gets created
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.addMapping(String type,
Object... source) |
A specialized simplified mapping source method, takes the form of simple properties definition:
("field1", "type=string,store=true").
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.addMapping(String type,
String source,
XContentType xContentType) |
Adds mapping that will be added when the index gets created.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.addMapping(String type,
Map<String,Object> source) |
Adds mapping that will be added when the index gets created.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.addMapping(String type,
XContentBuilder source) |
Adds mapping that will be added when the index gets created.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setAliases(String source) |
Sets the aliases that will be associated with the index when it gets created
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setAliases(Map<String,?> source) |
Sets the aliases that will be associated with the index when it gets created
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setAliases(BytesReference source) |
Sets the aliases that will be associated with the index when it gets created
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setAliases(XContentBuilder source) |
Sets the aliases that will be associated with the index when it gets created
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setCause(String cause) |
The cause for this index creation.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setIndex(String index) |
Sets the name of the index to be created
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSettings(String source,
XContentType xContentType) |
The settings to create the index with (either json or yaml format)
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSettings(Map<String,?> source) |
The settings to create the index with (either json/yaml/properties format)
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSettings(Settings settings) |
The settings to create the index with.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSettings(Settings.Builder settings) |
The settings to create the index with.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSettings(XContentBuilder builder) |
Allows to set the settings using a json builder.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSource(byte[] source,
int offset,
int length,
XContentType xContentType) |
Sets the settings and mappings as a single source.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSource(byte[] source,
XContentType xContentType) |
Sets the settings and mappings as a single source.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSource(String source,
XContentType xContentType) |
Sets the settings and mappings as a single source.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSource(Map<String,?> source) |
Sets the settings and mappings as a single source.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSource(BytesReference source,
XContentType xContentType) |
Sets the settings and mappings as a single source.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setSource(XContentBuilder source) |
Sets the settings and mappings as a single source.
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setWaitForActiveShards(int waitForActiveShards) |
|
CreateIndexRequestBuilder |
CreateIndexRequestBuilder.setWaitForActiveShards(ActiveShardCount waitForActiveShards) |
Sets the number of shard copies that should be active for index creation to return.
|