lib/elasticsearch/api/actions/indices/segments.rb in elasticsearch-api-6.1.0 vs lib/elasticsearch/api/actions/indices/segments.rb in elasticsearch-api-6.2.0
- old
+ new
@@ -22,25 +22,27 @@
# @option arguments [Boolean] :verbose Whether to include detailed memory usage by Lucene (default: false)
#
# @see http://elasticsearch.org/guide/reference/api/admin-indices-segments/
#
def segments(arguments={})
- valid_params = [
- :ignore_indices,
- :ignore_unavailable,
- :allow_no_indices,
- :expand_wildcards,
- :verbose
- ]
-
method = HTTP_GET
path = Utils.__pathify Utils.__listify(arguments[:index]), '_segments'
- 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(:segments, [
+ :ignore_indices,
+ :ignore_unavailable,
+ :allow_no_indices,
+ :expand_wildcards,
+ :verbose ].freeze)
end
end
end
end