Sha256: d72c8153889afdaf0548f311a6d7c9a7e75df51d15cc984229b6d0dd33fabc8f
Contents?: true
Size: 794 Bytes
Versions: 4
Compression:
Stored size: 794 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 XPack module API module Rollup module Actions # TODO: Description # # @option arguments [String] :id The ID of the index to check rollup capabilities on, or left blank for all jobs # def get_rollup_caps(arguments={}) method = Elasticsearch::API::HTTP_GET path = "_xpack/rollup/data/#{arguments[:id]}" params = {} body = nil perform_request(method, path, params, body).body end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems