Sha256: 8b3abae5c54c2d046c7441c8b14e77ace241bbe8dd72a60edf27a3ef85e0a0cd

Contents?: true

Size: 591 Bytes

Versions: 5

Compression:

Stored size: 591 Bytes

Contents

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

5 entries across 5 versions & 1 rubygems

Version Path
elasticsearch-xpack-6.8.1 lib/elasticsearch/xpack/api/actions/rollup/get_rollup_caps.rb
elasticsearch-xpack-6.8.0 lib/elasticsearch/xpack/api/actions/rollup/get_rollup_caps.rb
elasticsearch-xpack-6.3.1 lib/elasticsearch/xpack/api/actions/rollup/get_rollup_caps.rb
elasticsearch-xpack-6.3.0 lib/elasticsearch/xpack/api/actions/rollup/get_rollup_caps.rb
elasticsearch-xpack-6.2.0 lib/elasticsearch/xpack/api/actions/rollup/get_rollup_caps.rb