lib/elasticsearch/api/actions/cat/nodes.rb in elasticsearch-api-2.0.2 vs lib/elasticsearch/api/actions/cat/nodes.rb in elasticsearch-api-5.0.0.pre
- old
+ new
@@ -25,10 +25,11 @@
#
# client.cat.nodes format: 'json'
#
# @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
@@ -39,10 +40,11 @@
valid_params = [
:local,
:master_timeout,
:h,
:help,
- :v ]
+ :v,
+ :s ]
method = HTTP_GET
path = "_cat/nodes"
params = Utils.__validate_and_extract_params arguments, valid_params