lib/elasticsearch/api/actions/indices/get_field_mapping.rb in elasticsearch-api-6.1.0 vs lib/elasticsearch/api/actions/indices/get_field_mapping.rb in elasticsearch-api-6.2.0
- old
+ new
@@ -33,34 +33,34 @@
#
# @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-get-field-mapping.html
#
def get_field_mapping(arguments={})
arguments = arguments.clone
-
fields = arguments.delete(:field) || arguments.delete(:fields)
raise ArgumentError, "Required argument 'field' missing" unless fields
-
- valid_params = [
- :include_defaults,
- :ignore_indices,
- :ignore_unavailable,
- :allow_no_indices,
- :expand_wildcards
- ]
-
method = HTTP_GET
path = Utils.__pathify(
Utils.__listify(arguments[:index]),
'_mapping',
Utils.__listify(arguments[:type]),
'field',
Utils.__listify(fields)
)
- params = Utils.__validate_and_extract_params arguments, valid_params
+ params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
body = nil
perform_request(method, path, params, body).body
end
+
+ # Register this action with its valid params when the module is loaded.
+ #
+ # @since 6.2.0
+ ParamsRegistry.register(:get_field_mapping, [
+ :include_defaults,
+ :ignore_indices,
+ :ignore_unavailable,
+ :allow_no_indices,
+ :expand_wildcards ].freeze)
end
end
end
end