Added the API definition for `_settings`
This commit is contained in:
parent
8f40b2235d
commit
2cd85fa232
|
@ -1,19 +1,22 @@
|
||||||
{
|
{
|
||||||
"indices.settings": {
|
"indices.settings": {
|
||||||
"documentation": "http://elasticsearch.org/guide/reference/api/admin-indices-delete-index/",
|
"documentation": "http://www.elasticsearch.org/guide/reference/api/admin-indices-get-settings/",
|
||||||
"methods": ["GET", "PUT"],
|
"methods": ["GET", "PUT"],
|
||||||
"url": {
|
"url": {
|
||||||
"path": "/_settings",
|
"path": "/_settings",
|
||||||
"paths": ["/_settings", "/{index}/_settings"],
|
"paths": ["/_settings", "/{index}/_settings"],
|
||||||
"parts": {
|
"parts": {
|
||||||
"index": {
|
"index": {
|
||||||
|
"type" : "list",
|
||||||
|
"required" : true,
|
||||||
|
"description" : "A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"params": {
|
"params": {
|
||||||
"index": {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"body": null
|
"body": {
|
||||||
|
"description" : "The index settings to be updated (when using the PUT method)"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue