lib/elasticsearch/api/actions/ingest/delete_pipeline.rb in elasticsearch-api-2.0.2 vs lib/elasticsearch/api/actions/ingest/delete_pipeline.rb in elasticsearch-api-5.0.0.pre
- old
+ new
@@ -10,18 +10,14 @@
# @option arguments [Time] :timeout Explicit operation timeout
#
# @see https://www.elastic.co/guide/en/elasticsearch/plugins/master/ingest.html
#
def delete_pipeline(arguments={})
- Utils.__report_unsupported_method(__method__)
-
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
-
valid_params = [
:master_timeout,
:timeout ]
-
- method = HTTP_DELETE
+ method = 'DELETE'
path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id])
params = Utils.__validate_and_extract_params arguments, valid_params
body = nil
perform_request(method, path, params, body).body