40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"indices.put_template": {
|
|
"documentation": "http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html",
|
|
"methods": ["PUT", "POST"],
|
|
"url": {
|
|
"path": "/_template/{name}",
|
|
"paths": ["/_template/{name}"],
|
|
"parts": {
|
|
"name": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"description" : "The name of the template"
|
|
}
|
|
},
|
|
"params": {
|
|
"order": {
|
|
"type" : "number",
|
|
"description" : "The order for this template when merging multiple matching ones (higher numbers are merged later, overriding the lower numbers)"
|
|
},
|
|
"timeout": {
|
|
"type" : "time",
|
|
"description" : "Explicit operation timeout"
|
|
},
|
|
"master_timeout": {
|
|
"type" : "time",
|
|
"description" : "Specify timeout for connection to master"
|
|
},
|
|
"flat_settings": {
|
|
"type": "boolean",
|
|
"description": "Return settings in flat format (default: false)"
|
|
}
|
|
}
|
|
},
|
|
"body": {
|
|
"description" : "The template definition",
|
|
"required" : true
|
|
}
|
|
}
|
|
}
|