lib/elasticsearch/api/actions/ingest/delete_pipeline.rb in elasticsearch-api-6.1.0 vs lib/elasticsearch/api/actions/ingest/delete_pipeline.rb in elasticsearch-api-6.2.0
- old
+ new
@@ -11,19 +11,23 @@
#
# @see https://www.elastic.co/guide/en/elasticsearch/plugins/master/ingest.html
#
def delete_pipeline(arguments={})
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
- valid_params = [
- :master_timeout,
- :timeout ]
method = 'DELETE'
path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id])
- 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(:delete_pipeline, [
+ :master_timeout,
+ :timeout ].freeze)
end
end
end
end