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