Sha256: aa3a99d95cce80119f6248ef55ac4dfbfbeae2ee0b02d1f45b011d8cb829e62f

Contents?: true

Size: 696 Bytes

Versions: 4

Compression:

Stored size: 696 Bytes

Contents

# Licensed to Elasticsearch B.V under one or more agreements.
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
# See the LICENSE file in the project root for more information

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
elasticsearch-api-6.8.3 lib/elasticsearch/api/actions/remote/info.rb
elasticsearch-api-6.8.2 lib/elasticsearch/api/actions/remote/info.rb
elasticsearch-api-7.4.0 lib/elasticsearch/api/actions/remote/info.rb
elasticsearch-api-7.3.0 lib/elasticsearch/api/actions/remote/info.rb