2013-05-24 06:02:42 -04:00
{
"indices.open" : {
2015-03-24 12:03:35 -04:00
"documentation" : "http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-open-close.html" ,
2013-05-24 06:02:42 -04:00
"methods" : [ "POST" ] ,
"url" : {
"path" : "/{index}/_open" ,
2014-01-17 16:53:41 -05:00
"paths" : [ "/{index}/_open" ] ,
2013-05-24 06:02:42 -04:00
"parts" : {
"index" : {
2013-05-27 10:51:38 -04:00
"type" : "string" ,
2013-06-07 14:41:02 -04:00
"required" : true ,
2013-05-28 04:41:37 -04:00
"description" : "The name of the index"
2013-05-24 06:02:42 -04:00
}
} ,
"params" : {
"timeout" : {
2013-05-27 10:51:38 -04:00
"type" : "time" ,
"description" : "Explicit operation timeout"
2013-07-22 18:06:25 -04:00
} ,
"master_timeout" : {
"type" : "time" ,
"description" : "Specify timeout for connection to master"
2014-01-05 17:32:44 -05:00
} ,
"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" ,
2015-01-23 10:03:17 -05:00
"options" : [ "open" , "closed" , "none" , "all" ] ,
2014-01-05 17:32:44 -05:00
"default" : "closed" ,
"description" : "Whether to expand wildcard expression to concrete indices that are open, closed or both."
2013-05-24 06:02:42 -04:00
}
}
} ,
"body" : null
}
}