Sha256: e96f5b6cd6924c224f7f37291033ba17569edf4846c273a7558a0d273e5a79f2
Contents?: true
Size: 1.33 KB
Versions: 47
Compression:
Stored size: 1.33 KB
Contents
module Elasticsearch module API module Cat module Actions # Shows all repositories registered in a cluster # # @example Return list of repositories # # client.cat.repositories # # @example Return only id for each repository # # client.cat.repositories h: 'id' # # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node # @option arguments [List] :h Comma-separated list of column names to display # @option arguments [Boolean] :help Return help information # @option arguments [Boolean] :v Verbose mode. Display column headers # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by # # @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-repositories.html # def repositories(arguments={}) valid_params = [ :master_timeout, :h, :help, :v, :s ] method = HTTP_GET path = "_cat/repositories" 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
47 entries across 47 versions & 6 rubygems