delete_index
Remove a specified index from an Elasticsearch cluster. Provide the index name to execute the deletion, ensuring efficient index management and cleanup.
Instructions
Delete an index.
Args:
index: Name of the index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"index": {
"title": "Index",
"type": "string"
}
},
"required": [
"index"
],
"type": "object"
}