CreateIndexRequest |
CreateIndexRequest.alias(Alias alias) |
Adds an alias that will be associated with the index when it gets created
|
CreateIndexRequest |
CreateIndexRequest.aliases(String source,
XContentType contentType) |
Sets the aliases that will be associated with the index when it gets created
|
CreateIndexRequest |
CreateIndexRequest.aliases(Collection<Alias> aliases) |
Adds aliases that will be associated with the index when it gets created
|
CreateIndexRequest |
CreateIndexRequest.aliases(Map<String,?> source) |
Sets the aliases that will be associated with the index when it gets created
|
CreateIndexRequest |
CreateIndexRequest.aliases(BytesReference source,
XContentType contentType) |
Sets the aliases that will be associated with the index when it gets created
|
CreateIndexRequest |
CreateIndexRequest.aliases(XContentBuilder source) |
Sets the aliases that will be associated with the index when it gets created
|
CreateIndexRequest |
CreateIndexRequest.mapping(String source,
XContentType xContentType) |
Adds mapping that will be added when the index gets created.
|
CreateIndexRequest |
CreateIndexRequest.mapping(Map<String,?> source) |
Adds mapping that will be added when the index gets created.
|
CreateIndexRequest |
CreateIndexRequest.mapping(BytesReference source,
XContentType xContentType) |
Adds mapping that will be added when the index gets created.
|
CreateIndexRequest |
CreateIndexRequest.mapping(XContentBuilder source) |
Adds mapping that will be added when the index gets created.
|
CreateIndexRequest |
CreateIndexRequest.settings(String source,
XContentType xContentType) |
The settings to create the index with (either json or yaml format)
|
CreateIndexRequest |
CreateIndexRequest.settings(Map<String,?> source) |
The settings to create the index with (either json/yaml/properties format)
|
CreateIndexRequest |
CreateIndexRequest.settings(Settings settings) |
The settings to create the index with.
|
CreateIndexRequest |
CreateIndexRequest.settings(Settings.Builder settings) |
The settings to create the index with.
|
CreateIndexRequest |
CreateIndexRequest.settings(XContentBuilder builder) |
Allows to set the settings using a json builder.
|
CreateIndexRequest |
CreateIndexRequest.source(String source,
XContentType xContentType) |
Sets the settings and mappings as a single source.
|
CreateIndexRequest |
CreateIndexRequest.source(Map<String,?> source) |
Sets the settings and mappings as a single source.
|
CreateIndexRequest |
CreateIndexRequest.source(BytesReference source,
XContentType xContentType) |
Sets the settings and mappings as a single source.
|
CreateIndexRequest |
CreateIndexRequest.source(XContentBuilder source) |
Sets the settings and mappings as a single source.
|
CreateIndexRequest |
CreateIndexRequest.waitForActiveShards(ActiveShardCount waitForActiveShards) |
Sets the number of shard copies that should be active for index creation to return.
|