PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.addAlias(Alias alias) |
Adds an alias that will be added when the index template gets created.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.addMapping(String type,
Object... source) |
A specialized simplified mapping source method, takes the form of simple properties definition:
("field1", "type=string,store=true").
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.addMapping(String type,
String source,
XContentType xContentType) |
Adds mapping that will be added when the index template gets created.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.addMapping(String type,
Map<String,Object> source) |
Adds mapping that will be added when the index gets created.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.addMapping(String type,
XContentBuilder source) |
Adds mapping that will be added when the index template gets created.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.cause(String cause) |
The cause for this index template creation.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setAliases(String source) |
Sets the aliases that will be associated with the index when it gets created
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setAliases(Map<String,Object> source) |
Sets the aliases that will be associated with the index when it gets created
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setAliases(BytesReference source) |
Sets the aliases that will be associated with the index when it gets created
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setAliases(XContentBuilder source) |
Sets the aliases that will be associated with the index when it gets created
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setCreate(boolean create) |
Set to true to force only creation, not an update of an index template.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setOrder(int order) |
Sets the order of this template if more than one template matches.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setPatterns(List<String> indexPatterns) |
Sets the match expression that will be used to match on indices created.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setSettings(String source,
XContentType xContentType) |
The settings to crete the index template with (either json or yaml format)
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setSettings(Map<String,Object> source) |
The settings to crete the index template with (either json or yaml format)
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setSettings(Settings settings) |
The settings to created the index template with.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setSettings(Settings.Builder settings) |
The settings to created the index template with.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setSource(byte[] templateSource,
int offset,
int length,
XContentType xContentType) |
The template source definition.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setSource(byte[] templateSource,
XContentType xContentType) |
The template source definition.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setSource(Map<String,Object> templateSource) |
The template source definition.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setSource(BytesReference templateSource,
XContentType xContentType) |
The template source definition.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setSource(XContentBuilder templateBuilder) |
The template source definition.
|
PutIndexTemplateRequestBuilder |
PutIndexTemplateRequestBuilder.setVersion(Integer version) |
Sets the optional version of this template.
|