Added, that `index` and `name` are required for `indices.put_alias`

This commit is contained in:
Karel Minarik 2013-06-20 12:52:46 +02:00
parent a276671f86
commit b1e8e21fb6
1 changed files with 2 additions and 0 deletions

View File

@ -8,10 +8,12 @@
"parts": { "parts": {
"index": { "index": {
"type" : "string", "type" : "string",
"required" : true,
"description" : "The name of the index with an alias" "description" : "The name of the index with an alias"
}, },
"name": { "name": {
"type" : "string", "type" : "string",
"required" : true,
"description" : "The name of the alias to be created or updated" "description" : "The name of the alias to be created or updated"
} }
}, },