get_mapping

This commit is contained in:
Honza Král
2014-01-17 22:46:19 +01:00
parent d55ce368fc
commit 5fcb424225
+12 -2
View File
@@ -216,7 +216,8 @@ class IndicesClient(NamespacedClient):
params=params, body=body)
return data
@query_params()
@query_params('ignore_unavailable', 'allow_no_indices',
'expand_wildcards', 'local')
def get_mapping(self, index=None, doc_type=None, params=None):
"""
Retrieve mapping definition of index or index/type.
@@ -225,8 +226,17 @@ class IndicesClient(NamespacedClient):
:arg index: A comma-separated list of index names; use `_all` or empty
string for all indices
:arg doc_type: A comma-separated list of document types
:arg allow_no_indices: Whether to ignore if a wildcard indices
expression resolves into no concrete indices. (This includes `_all` string or
when no indices have been specified)
:arg expand_wildcards: Whether to expand wildcard expression to concrete indices
that are open, closed or both.
:arg ignore_unavailable: Whether specified concrete indices should be ignored
when unavailable (missing or closed)
:arg local: Return local information, do not retrieve the state from
master node (default: false)
"""
_, data = self.transport.perform_request('GET', _make_path(index, doc_type, '_mapping'),
_, data = self.transport.perform_request('GET', _make_path(index, '_mapping', doc_type),
params=params)
return data