Sha256: 55b1197b019ee12175082ab10bee291ceed96c51e1829f0b0ee323b208987d9f
Contents?: true
Size: 1 KB
Versions: 3
Compression:
Stored size: 1 KB
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 License module Actions # TODO: Description # # @option arguments [Boolean] :acknowledge whether the user has acknowledged acknowledge messages (default: false) # # @see https://www.elastic.co/guide/en/x-pack/current/license-management.html # def post_start_basic(arguments={}) valid_params = [ :acknowledge ] method = Elasticsearch::API::HTTP_POST path = "_xpack/license/start_basic" 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
3 entries across 3 versions & 1 rubygems