Sha256: 495f2e9e513ce169ced53fa4334ab68b3a78b0746a2f4232389b4c4f9e5adf07
Contents?: true
Size: 1.37 KB
Versions: 3
Compression:
Stored size: 1.37 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 Security module Actions # Remove a role from the native realm # # @option arguments [String] :name Role name (*Required*) # @option arguments [Boolean] :refresh Refresh the index after performing the operation # # @see https://www.elastic.co/guide/en/x-pack/current/security-api-roles.html#security-api-delete-role # def delete_role(arguments={}) raise ArgumentError, "Required argument 'name' missing" unless arguments[:name] valid_params = [ :refresh ] method = Elasticsearch::API::HTTP_DELETE path = "_xpack/security/role/#{arguments[:name]}" params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, valid_params body = nil if Array(arguments[:ignore]).include?(404) Elasticsearch::API::Utils.__rescue_from_not_found { perform_request(method, path, params, body).body } else perform_request(method, path, params, body).body end end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems