lib/elasticsearch/api/actions/ingest/simulate.rb in elasticsearch-api-8.0.1 vs lib/elasticsearch/api/actions/ingest/simulate.rb in elasticsearch-api-8.1.0
- old
+ new
@@ -24,18 +24,19 @@
# @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/master/simulate-pipeline-api.html
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.1/simulate-pipeline-api.html
#
def simulate(arguments = {})
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
- arguments = arguments.clone
headers = arguments.delete(:headers) || {}
body = arguments.delete(:body)
+
+ arguments = arguments.clone
_id = arguments.delete(:id)
method = Elasticsearch::API::HTTP_POST
path = if _id