Sha256: 61b695138c5f07ec2eae4125073e6a00e9f9ea650c2d860cd7d03eb249241811
Contents?: true
Size: 636 Bytes
Versions: 8
Compression:
Stored size: 636 Bytes
Contents
module Elasticsearch module API module Cat module Actions # Help information for the Cat API # # @option arguments [Boolean] :help Return help information # # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/cat.html # def help(arguments={}) valid_params = [ :help ] method = 'GET' path = "_cat" 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
8 entries across 8 versions & 1 rubygems