lib/elasticsearch/api/actions/reindex.rb in elasticsearch-api-6.1.0 vs lib/elasticsearch/api/actions/reindex.rb in elasticsearch-api-6.2.0
- old
+ new
@@ -51,22 +51,26 @@
#
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-reindex.html
#
def reindex(arguments={})
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
- valid_params = [
- :refresh,
- :timeout,
- :consistency,
- :wait_for_completion,
- :requests_per_second,
- :slices ]
method = 'POST'
path = "_reindex"
- params = Utils.__validate_and_extract_params arguments, valid_params
+ params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
body = arguments[:body]
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(:reindex, [
+ :refresh,
+ :timeout,
+ :consistency,
+ :wait_for_completion,
+ :requests_per_second,
+ :slices ].freeze)
end
end
end