delete_alias
Remove an alias from a specified Elasticsearch index to streamline index management. Input the index name and alias to delete. Enhances cluster organization and efficiency.
Instructions
Delete an alias for a specific index.
Args:
index: Name of the index
name: Name of the alias
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"index": {
"title": "Index",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"index",
"name"
],
"type": "object"
}