2013-05-24 06:02:42 -04:00
{
2013-06-07 12:54:21 -04:00
"indices.get_mapping" : {
2014-01-22 08:40:31 -05:00
"documentation" : "http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/indices-get-mapping.html" ,
2013-05-24 06:02:42 -04:00
"methods" : [ "GET" ] ,
"url" : {
"path" : "/_mapping" ,
2014-01-14 16:31:42 -05:00
"paths" : [ "/_mapping" , "/{index}/_mapping" , "/_mapping/{type}" , "/{index}/_mapping/{type}" ] ,
2013-05-24 06:02:42 -04:00
"parts" : {
"index" : {
2013-05-27 10:23:41 -04:00
"type" : "list" ,
2013-09-09 11:49:05 -04:00
"description" : "A comma-separated list of index names"
2013-05-24 06:02:42 -04:00
} ,
"type" : {
2013-05-27 10:23:41 -04:00
"type" : "list" ,
"description" : "A comma-separated list of document types"
2013-05-24 06:02:42 -04:00
}
} ,
"params" : {
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" : {
2015-01-23 10:03:17 -05:00
"type" : "enum" ,
"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-16 09:29:22 -05:00
} ,
"local" : {
"type" : "boolean" ,
"description" : "Return local information, do not retrieve the state from master node (default: false)"
2014-01-05 17:32:44 -05:00
}
2013-05-24 06:02:42 -04:00
}
} ,
"body" : null
}
}