OpenSearch/rest-api-spec/api/indices.put_template.json

36 lines
1006 B
JSON

{
"indices.put_template": {
"documentation": "http://www.elasticsearch.org/guide/reference/api/admin-indices-templates/",
"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"
}
}
},
"body": {
"description" : "The template definition",
"required" : true
}
}
}