2013-05-24 06:02:42 -04:00
{
2013-06-07 13:44:28 -04:00
"indices.put_settings" : {
2014-01-22 08:40:31 -05:00
"documentation" : "http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/indices-update-settings.html" ,
2013-06-07 13:44:28 -04:00
"methods" : [ "PUT" ] ,
2013-05-24 06:02:42 -04:00
"url" : {
"path" : "/_settings" ,
"paths" : [ "/_settings" , "/{index}/_settings" ] ,
"parts" : {
"index" : {
2013-05-27 11:08:45 -04:00
"type" : "list" ,
"description" : "A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices"
2013-05-24 06:02:42 -04:00
}
} ,
"params" : {
2013-07-22 18:06:25 -04:00
"master_timeout" : {
2014-01-05 17:32:44 -05:00
"type" : "time" ,
"description" : "Specify timeout for connection to master"
} ,
"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" : "open" ,
"description" : "Whether to expand wildcard expression to concrete indices that are open, closed or both."
2014-01-06 11:50:57 -05:00
} ,
"flat_settings" : {
"type" : "boolean" ,
"description" : "Return settings in flat format (default: false)"
}
2013-05-24 06:02:42 -04:00
}
} ,
2013-05-27 11:08:45 -04:00
"body" : {
2014-01-05 17:32:44 -05:00
"description" : "The index settings to be updated" ,
"required" : true
2013-05-27 11:08:45 -04:00
}
2013-05-24 06:02:42 -04:00
}
}