Sha256: cf515e8aee7bcab92fbf782f217c3901ab37b8fd729308cd8f8e9564d2786cf2
Contents?: true
Size: 639 Bytes
Versions: 69
Compression:
Stored size: 639 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 = HTTP_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
69 entries across 69 versions & 6 rubygems