Sha256: 2a9198ccf1fa926c9743d42e9de5b31064d44e3e756124404dd26feff15eb530
Contents?: true
Size: 1.23 KB
Versions: 47
Compression:
Stored size: 1.23 KB
Contents
module Elasticsearch module API module Cat module Actions # Display custom node attributes # # @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 [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 http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-nodeattrs.html # def nodeattrs(arguments={}) valid_params = [ :local, :master_timeout, :h, :help, :v, :s ] method = 'GET' path = "_cat/nodeattrs" 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