module Elasticsearch module API module Remote module Actions # Returns all of the configured remote cluster information # # @see http://www.elastic.co/guide/en/elasticsearch/reference/master/remote-info.html # def info(arguments={}) method = HTTP_GET path = "_remote/info" params = {} body = nil perform_request(method, path, params, body).body end end end end end