Sha256: 7178303de9fc17ff6cee5bdaa243e08420894136c3e9e03c883a444daa470b38

Contents?: true

Size: 1.56 KB

Versions: 7

Compression:

Stored size: 1.56 KB

Contents

module Elasticsearch
  module XPack
    module API
      module Migration
        module Actions

          # Returns the information about indices that require some changes before the cluster can be upgraded to the next major version
          #
          # @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
          # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
          # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
          # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
          #
          # @see https://www.elastic.co/guide/en/elasticsearch/reference/current/migration-api-assistance.html
          #
          def get_assistance(arguments={})
            valid_params = [
              :allow_no_indices,
              :expand_wildcards,
              :ignore_unavailable ]

            method = Elasticsearch::API::HTTP_GET
            path   = "_xpack/migration/assistance"
            params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, valid_params
            body   = nil

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
elasticsearch-xpack-6.8.1 lib/elasticsearch/xpack/api/actions/migration/get_assistance.rb
elasticsearch-xpack-6.8.0 lib/elasticsearch/xpack/api/actions/migration/get_assistance.rb
elasticsearch-xpack-6.3.1 lib/elasticsearch/xpack/api/actions/migration/get_assistance.rb
elasticsearch-xpack-6.3.0 lib/elasticsearch/xpack/api/actions/migration/get_assistance.rb
elasticsearch-xpack-6.2.0 lib/elasticsearch/xpack/api/actions/migration/get_assistance.rb
elasticsearch-xpack-6.1.0 lib/elasticsearch/xpack/api/actions/migration/get_assistance.rb
elasticsearch-xpack-6.0.0 lib/elasticsearch/xpack/api/actions/migration/get_assistance.rb