Sha256: 63728dc02b63a447470767709d9d3a4275812d03fbbc866a19fc2b84e159eb9d
Contents?: true
Size: 1.13 KB
Versions: 68
Compression:
Stored size: 1.13 KB
Contents
module Elasticsearch module API module Snapshot module Actions # Explicitly perform the verification of a repository # # @option arguments [String] :repository A repository name (*Required*) # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node # @option arguments [Time] :timeout Explicit operation timeout # # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/modules-snapshots.html # def verify_repository(arguments={}) raise ArgumentError, "Required argument 'repository' missing" unless arguments[:repository] valid_params = [ :repository, :master_timeout, :timeout ] repository = arguments.delete(:repository) method = HTTP_POST path = Utils.__pathify( '_snapshot', Utils.__escape(repository), '_verify' ) params = Utils.__validate_and_extract_params arguments, valid_params body = nil perform_request(method, path, params, body).body end end end end end
Version data entries
68 entries across 68 versions & 6 rubygems