CreateIndexRequest |
CreateIndexRequest.alias(Alias alias) |
Adds an alias that will be associated with the index when it gets created
|
CreateIndexRequest |
CreateIndexRequest.aliases(String source) |
Sets the 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) |
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.cause(String cause) |
The cause for this index creation.
|
CreateIndexRequest |
CreateIndexRequest.index(String index) |
|
CreateIndexRequest |
CreateIndexRequest.mapping(String type,
Object... source) |
A specialized simplified mapping source method, takes the form of simple properties definition:
("field1", "type=string,store=true").
|
CreateIndexRequest |
CreateIndexRequest.mapping(String type,
String source,
XContentType xContentType) |
Adds mapping that will be added when the index gets created.
|
CreateIndexRequest |
CreateIndexRequest.mapping(String type,
Map<String,?> source) |
Adds mapping that will be added when the index gets created.
|
CreateIndexRequest |
CreateIndexRequest.mapping(String type,
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(byte[] source,
int offset,
int length,
XContentType xContentType) |
Sets the settings and mappings as a single source.
|
CreateIndexRequest |
CreateIndexRequest.source(byte[] source,
XContentType xContentType) |
Sets the settings and mappings as a single source.
|
CreateIndexRequest |
CreateIndexRequest.source(String source,
XContentType xContentType) |
Sets the settings and mappings as a single source.
|
CreateIndexRequest |
CreateIndexRequest.source(Map<String,?> source,
DeprecationHandler deprecationHandler) |
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(int waitForActiveShards) |
|
CreateIndexRequest |
CreateIndexRequest.waitForActiveShards(ActiveShardCount waitForActiveShards) |
Sets the number of shard copies that should be active for index creation to return.
|