rest-api-spec.api.indices.delete.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
{
"indices.delete":{
"documentation":{
"url":"https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-delete-index.html",
"description":"Deletes an index."
},
"stability":"stable",
"visibility":"public",
"headers":{
"accept": [ "application/json"]
},
"url":{
"paths":[
{
"path":"/{index}",
"methods":[
"DELETE"
],
"parts":{
"index":{
"type":"list",
"description":"A comma-separated list of indices to delete; use `_all` or `*` string to delete all indices"
}
}
}
]
},
"params":{
"timeout":{
"type":"time",
"description":"Explicit operation timeout"
},
"master_timeout":{
"type":"time",
"description":"Specify timeout for connection to master"
},
"ignore_unavailable":{
"type":"boolean",
"description":"Ignore unavailable indexes (default: false)"
},
"allow_no_indices":{
"type":"boolean",
"description":"Ignore if a wildcard expression resolves to no concrete indices (default: false)"
},
"expand_wildcards":{
"type":"enum",
"options":[
"open",
"closed",
"hidden",
"none",
"all"
],
"default":"open,closed",
"description":"Whether wildcard expressions should get expanded to open, closed, or hidden indices"
}
}
}
}