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

33 lines
1.1 KiB
JSON
Raw Normal View History

{
"indices.put_warmer": {
"documentation": "http://www.elasticsearch.org/guide/reference/api/admin-indices-warmers/",
"methods": ["PUT"],
"url": {
"path": "/{index}/_warmer/{name}",
"paths": ["/{index}/_warmer/{name}", "/{index}/{type}/_warmer/{name}"],
"parts": {
"index": {
"type" : "list",
2013-06-09 15:17:29 -04:00
"required" : true,
"description" : "A comma-separated list of index names to register the warmer for; use `_all` or empty string to perform the operation on all indices"
},
"name": {
"type" : "string",
2013-06-09 15:17:29 -04:00
"required" : true,
"description" : "The name of the warmer"
},
"type": {
"type" : "list",
"description" : "A comma-separated list of document types to register the warmer for; leave empty to perform the operation on all types"
}
},
"params": {
}
},
"body": {
2013-06-08 09:34:13 -04:00
"description" : "The search request definition for the warmer (query, filters, facets, sorting, etc)",
"required" : true
}
}
}