Sha256: e001e32cf4f11679cc8b29cbf8cc2f01035f45cfb33b5ae2c6e1cdf0dac0d898

Contents?: true

Size: 532 Bytes

Versions: 5

Compression:

Stored size: 532 Bytes

Contents

module Elasticsearch
  module API
    module Cluster
      module Actions

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

          perform_request(method, path, params, body).body
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
elasticsearch-api-6.2.0 lib/elasticsearch/api/actions/cluster/remote_info.rb
elasticsearch-api-6.1.0 lib/elasticsearch/api/actions/cluster/remote_info.rb
elasticsearch-api-6.0.3 lib/elasticsearch/api/actions/cluster/remote_info.rb
elasticsearch-api-6.0.2 lib/elasticsearch/api/actions/cluster/remote_info.rb
elasticsearch-api-6.0.1 lib/elasticsearch/api/actions/cluster/remote_info.rb