2013-05-24 12:02:42 +02:00
{
2013-06-07 18:54:21 +02:00
"indices.get_mapping" : {
2015-03-24 17:03:35 +01:00
"documentation" : "http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-get-mapping.html" ,
2013-05-24 12:02:42 +02:00
"methods" : [ "GET" ] ,
"url" : {
"path" : "/_mapping" ,
2014-01-14 22:31:42 +01:00
"paths" : [ "/_mapping" , "/{index}/_mapping" , "/_mapping/{type}" , "/{index}/_mapping/{type}" ] ,
2013-05-24 12:02:42 +02:00
"parts" : {
"index" : {
2013-05-27 16:23:41 +02:00
"type" : "list" ,
2013-09-09 17:49:05 +02:00
"description" : "A comma-separated list of index names"
2013-05-24 12:02:42 +02:00
} ,
"type" : {
2013-05-27 16:23:41 +02:00
"type" : "list" ,
"description" : "A comma-separated list of document types"
2013-05-24 12:02:42 +02:00
}
} ,
"params" : {
2014-01-05 23:32:44 +01: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 16:03:17 +01:00
"type" : "enum" ,
"options" : [ "open" , "closed" , "none" , "all" ] ,
2014-01-05 23:32:44 +01:00
"default" : "open" ,
"description" : "Whether to expand wildcard expression to concrete indices that are open, closed or both."
2014-01-16 15:29:22 +01:00
} ,
"local" : {
"type" : "boolean" ,
"description" : "Return local information, do not retrieve the state from master node (default: false)"
2014-01-05 23:32:44 +01:00
}
2013-05-24 12:02:42 +02:00
}
} ,
"body" : null
}
}