lib/elasticsearch/api/actions/snapshot/delete.rb in elasticsearch-api-7.17.11 vs lib/elasticsearch/api/actions/snapshot/delete.rb in elasticsearch-api-8.0.0.pre1
- old
+ new
@@ -17,48 +17,48 @@
module Elasticsearch
module API
module Snapshot
module Actions
- # Deletes a snapshot.
+ # Deletes one or more snapshots.
#
# @option arguments [String] :repository A repository name
- # @option arguments [String] :snapshot A snapshot name
+ # @option arguments [List] :snapshot A comma-separated list of snapshot names
# @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
# @option arguments [Hash] :headers Custom HTTP headers
#
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.17/modules-snapshots.html
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html
#
def delete(arguments = {})
raise ArgumentError, "Required argument 'repository' missing" unless arguments[:repository]
raise ArgumentError, "Required argument 'snapshot' missing" unless arguments[:snapshot]
headers = arguments.delete(:headers) || {}
+ body = nil
+
arguments = arguments.clone
_repository = arguments.delete(:repository)
_snapshot = arguments.delete(:snapshot)
method = Elasticsearch::API::HTTP_DELETE
path = "_snapshot/#{Utils.__listify(_repository)}/#{Utils.__listify(_snapshot)}"
- params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
+ params = Utils.process_params(arguments)
- body = nil
if Array(arguments[:ignore]).include?(404)
- Utils.__rescue_from_not_found { perform_request(method, path, params, body, headers).body }
+ Utils.__rescue_from_not_found {
+ Elasticsearch::API::Response.new(
+ perform_request(method, path, params, body, headers)
+ )
+ }
else
- perform_request(method, path, params, body, headers).body
+ Elasticsearch::API::Response.new(
+ perform_request(method, path, params, body, headers)
+ )
end
end
-
- # Register this action with its valid params when the module is loaded.
- #
- # @since 6.2.0
- ParamsRegistry.register(:delete, [
- :master_timeout
- ].freeze)
end
end
end
end