Deletes an index template.
resp = client.indices.delete_index_template( name="my-index-template", ) print(resp)
response = client.indices.delete_index_template( name: 'my-index-template' ) puts response
const response = await client.indices.deleteIndexTemplate({ name: "my-index-template", }); console.log(response);
DELETE /_index_template/my-index-template
DELETE /_index_template/<index-template>
The provided <index-template> may contain multiple template names separated by a comma. If multiple template names are specified then there is no wildcard support and the provided names should match completely with existing templates.
-
If the Elasticsearch security features are enabled, you must have the
manage_index_templates
ormanage
cluster privilege to use this API.
Use the delete index template API to delete one or more index templates. Index templates define settings, mappings, and aliases that can be applied automatically to new indices.
-
<index-template>
-
(Required, string)
Comma-separated list of index template names used to limit the request. Wildcard
(
*
) expressions are supported.
-
master_timeout
-
(Optional, time units)
Period to wait for the master node. If the master node is not available before
the timeout expires, the request fails and returns an error. Defaults to
30s
. Can also be set to-1
to indicate that the request should never timeout.