lib/elasticsearch/api/actions/cat/aliases.rb in elasticsearch-api-2.0.2 vs lib/elasticsearch/api/actions/cat/aliases.rb in elasticsearch-api-5.0.0.pre

- old
+ new

@@ -23,17 +23,22 @@ # # @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 [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 @@ -44,10 +49,11 @@ valid_params = [ :local, :master_timeout, :h, :help, - :v ] + :v, + :s ] name = arguments.delete(:name) method = HTTP_GET