rest-api-spec.api.searchable_snapshots.clear_cache.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-spec Show documentation
Show all versions of rest-api-spec Show documentation
Elasticsearch subproject :rest-api-spec
{
"searchable_snapshots.clear_cache": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/searchable-snapshots-apis.html",
"description" : "Clear the cache of searchable snapshots."
},
"stability": "experimental",
"visibility":"public",
"headers":{
"accept": [ "application/json"]
},
"url": {
"paths": [
{
"path": "/_searchable_snapshots/cache/clear",
"methods": [
"POST"
]
},
{
"path": "/{index}/_searchable_snapshots/cache/clear",
"methods": [
"POST"
],
"parts": {
"index": {
"type": "list",
"description": "A comma-separated list of index names"
}
}
}
]
},
"params": {
"ignore_unavailable": {
"type": "boolean",
"description": "Whether specified concrete indices should be ignored when unavailable (missing or closed)"
},
"allow_no_indices": {
"type": "boolean",
"description": "Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)"
},
"expand_wildcards": {
"type": "enum",
"options": [
"open",
"closed",
"none",
"all"
],
"default": "open",
"description": "Whether to expand wildcard expression to concrete indices that are open, closed or both."
},
"index": {
"type": "list",
"description": "A comma-separated list of index name to limit the operation"
}
}
}
}