Added the API definition for deleting an index template

This commit is contained in:
Karel Minarik 2013-05-27 21:46:47 +02:00
parent 988a38297e
commit c322791ccb
1 changed files with 6 additions and 3 deletions

View File

@ -1,18 +1,21 @@
{
"indices.template.delete": {
"documentation": "",
"documentation": "http://www.elasticsearch.org/guide/reference/api/admin-indices-templates/",
"methods": ["DELETE"],
"url": {
"path": "/_template/{name}",
"paths": ["/_template/{name}"],
"parts": {
"name": {
"type" : "string",
"required" : true,
"description" : "The name of the template"
}
},
"params": {
"name": {
},
"timeout": {
"type" : "time",
"description" : "Explicit operation timeout"
}
}
},