OpenSearch/rest-api-spec/api/indices.warmer.put.json

30 lines
1008 B
JSON
Raw Normal View History

{
"indices.warmer.put": {
"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",
"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",
"description" : "The name of the warmer (supports wildcards)"
},
"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": {
"description" : "The search request definition (query, filters, facets, sorting, etc)"
}
}
}