Added the API definition for deleting an index template
This commit is contained in:
parent
988a38297e
commit
c322791ccb
|
@ -1,18 +1,21 @@
|
||||||
{
|
{
|
||||||
"indices.template.delete": {
|
"indices.template.delete": {
|
||||||
"documentation": "",
|
"documentation": "http://www.elasticsearch.org/guide/reference/api/admin-indices-templates/",
|
||||||
"methods": ["DELETE"],
|
"methods": ["DELETE"],
|
||||||
"url": {
|
"url": {
|
||||||
"path": "/_template/{name}",
|
"path": "/_template/{name}",
|
||||||
"paths": ["/_template/{name}"],
|
"paths": ["/_template/{name}"],
|
||||||
"parts": {
|
"parts": {
|
||||||
"name": {
|
"name": {
|
||||||
|
"type" : "string",
|
||||||
|
"required" : true,
|
||||||
|
"description" : "The name of the template"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"params": {
|
"params": {
|
||||||
"name": {
|
|
||||||
},
|
|
||||||
"timeout": {
|
"timeout": {
|
||||||
|
"type" : "time",
|
||||||
|
"description" : "Explicit operation timeout"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue