lib/elasticsearch/api/actions/ingest/simulate.rb in elasticsearch-api-7.6.0 vs lib/elasticsearch/api/actions/ingest/simulate.rb in elasticsearch-api-7.7.0.pre
- old
+ new
@@ -8,18 +8,20 @@
module Actions
# Allows to simulate a pipeline with example documents.
#
# @option arguments [String] :id Pipeline ID
# @option arguments [Boolean] :verbose Verbose mode. Display data output for each processor in executed pipeline
-
+ # @option arguments [Hash] :headers Custom HTTP headers
# @option arguments [Hash] :body The simulate definition (*Required*)
#
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/simulate-pipeline-api.html
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/simulate-pipeline-api.html
#
def simulate(arguments = {})
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
+ headers = arguments.delete(:headers) || {}
+
arguments = arguments.clone
_id = arguments.delete(:id)
method = Elasticsearch::API::HTTP_GET
@@ -29,10 +31,10 @@
"_ingest/pipeline/_simulate"
end
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
body = arguments[:body]
- perform_request(method, path, params, body).body
+ perform_request(method, path, params, body, headers).body
end
# Register this action with its valid params when the module is loaded.
#
# @since 6.2.0