Sha256: d74e1cee0ac93afcde2b6f2e7ea3f7193db666257de0e9e4721ea306ea05f4cc
Contents?: true
Size: 1.84 KB
Versions: 2
Compression:
Stored size: 1.84 KB
Contents
# Licensed to Elasticsearch B.V under one or more agreements. # Elasticsearch B.V licenses this file to you under the Apache 2.0 License. # See the LICENSE file in the project root for more information module Elasticsearch module API module Snapshot module Actions # Get information about snapshot repositories or a specific repository # # @example Get all repositories # # client.snapshot.get_repository # # @example Get a specific repository # # client.snapshot.get_repository repository: 'my-backups' # # @option arguments [List] :repository A comma-separated list of repository names # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false) # # @see http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-snapshots.html # def get_repository(arguments={}) repository = arguments.delete(:repository) method = HTTP_GET path = Utils.__pathify( '_snapshot', Utils.__escape(repository) ) params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__) body = nil if Array(arguments[:ignore]).include?(404) Utils.__rescue_from_not_found { perform_request(method, path, params, body).body } else perform_request(method, path, params, body).body end end # Register this action with its valid params when the module is loaded. # # @since 6.2.0 ParamsRegistry.register(:get_repository, [ :master_timeout, :local ].freeze) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
elasticsearch-api-6.8.3 | lib/elasticsearch/api/actions/snapshot/get_repository.rb |
elasticsearch-api-6.8.2 | lib/elasticsearch/api/actions/snapshot/get_repository.rb |