lib/elasticsearch/api/actions/cat/aliases.rb in elasticsearch-api-7.4.0 vs lib/elasticsearch/api/actions/cat/aliases.rb in elasticsearch-api-7.5.0.pre.pre
- old
+ new
@@ -4,73 +4,51 @@
module Elasticsearch
module API
module Cat
module Actions
-
- # Returns information about aliases, including associated routing values and filters.
+ # Shows information about currently configured aliases to indices including filter and routing infos.
#
- # @example Display all aliases in the cluster
- #
- # puts client.cat.aliases
- #
- # @example Display indices for the 'year-2013' alias
- #
- # puts client.cat.aliases name: 'year-2013'
- #
- # @example Display header names in the output
- #
- # puts client.cat.aliases v: true
- #
- # @example Return only the 'alias' and 'index' columns
- #
- # puts client.cat.aliases h: ['alias', 'index']
- #
- # @example Return only the 'alias' and 'index' columns, using short names
- #
- # puts client.cat.aliases h: 'a,i'
- #
- # @example Return the output sorted by the alias name
- #
- # puts client.cat.aliases s: 'alias'
- #
- # @example Return the information as Ruby objects
- #
- # client.cat.aliases format: 'json'
- #
# @option arguments [List] :name A comma-separated list of alias names to return
- # @option arguments [List] :h Comma-separated list of column names to display -- see the `help` argument
- # @option arguments [Boolean] :v Display column headers as part of the output
+ # @option arguments [String] :format a short version of the Accept header, e.g. json, yaml
+ # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false)
+ # @option arguments [List] :h Comma-separated list of column names to display
+ # @option arguments [Boolean] :help Return help information
# @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
- # @option arguments [String] :format The output format. Options: 'text', 'json'; default: 'text'
- # @option arguments [Boolean] :help Return information about headers
- # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node
- # (default: false)
- # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
+ # @option arguments [Boolean] :v Verbose mode. Display column headers
+
#
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-aliases.html
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/cat-alias.html
#
- def aliases(arguments={})
- name = arguments.delete(:name)
- method = HTTP_GET
- path = Utils.__pathify '_cat/aliases', Utils.__listify(name)
+ def aliases(arguments = {})
+ arguments = arguments.clone
+
+ _name = arguments.delete(:name)
+
+ method = Elasticsearch::API::HTTP_GET
+ path = if _name
+ "_cat/aliases/#{Utils.__listify(_name)}"
+ else
+ "_cat/aliases"
+end
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
params[:h] = Utils.__listify(params[:h]) if params[:h]
- body = nil
+
+ body = nil
perform_request(method, path, params, body).body
end
# Register this action with its valid params when the module is loaded.
#
- # @since 6.1.1
+ # @since 6.2.0
ParamsRegistry.register(:aliases, [
- :format,
- :local,
- :master_timeout,
- :h,
- :help,
- :s,
- :v ].freeze)
+ :format,
+ :local,
+ :h,
+ :help,
+ :s,
+ :v
+ ].freeze)
+end
end
- end
end
end