module Elasticsearch module API module Actions # Return simple information about the cluster (name, version). # # @see http://elasticsearch.org/guide/ # def info(arguments={}) method = HTTP_GET path = "" params = {} body = nil perform_request(method, path, params, body).body end # Register this action with its valid params when the module is loaded. # # @since 6.2.0 ParamsRegistry.register(:info, [ ].freeze) end end end