lib/elasticsearch/api/actions/indices/get_mapping.rb in elasticsearch-api-0.4.11 vs lib/elasticsearch/api/actions/indices/get_mapping.rb in elasticsearch-api-1.0.0.rc1
- old
+ new
@@ -26,22 +26,27 @@
# are open, closed or both. (options: open, closed)
# @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore
# `missing` ones (options: none, missing) @until 1.0
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
# unavailable (missing, closed, etc)
+ # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node
+ # (default: false)
#
- # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-get-mapping/
+ # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-get-mapping.html
#
def get_mapping(arguments={})
valid_params = [
:ignore_indices,
:ignore_unavailable,
:allow_no_indices,
- :expand_wildcards
+ :expand_wildcards,
+ :local
]
method = 'GET'
- path = Utils.__pathify Utils.__listify(arguments[:index]), Utils.__listify(arguments[:type]), '_mapping'
+ path = Utils.__pathify Utils.__listify(arguments[:index]),
+ '_mapping',
+ Utils.__listify(arguments[:type])
params = Utils.__validate_and_extract_params arguments, valid_params
body = nil
perform_request(method, path, params, body).body
end