1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
module Fog
module AWS
class IAM
class Real
require 'fog/aws/parsers/iam/basic'
# Remove a policy from a group
#
# ==== Parameters
# * group_name<~String>: name of the group
# * policy_name<~String>: name of policy document
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'RequestId'<~String> - Id of the request
#
# ==== See Also
# http://docs.amazonwebservices.com/IAM/latest/APIReference/API_DeleteGroupPolicy.html
#
def delete_group_policy(group_name, policy_name)
request(
'Action' => 'DeleteGroupPolicy',
'GroupName' => group_name,
'PolicyName' => policy_name,
:parser => Fog::Parsers::AWS::IAM::Basic.new
)
end
end
class Mock
def delete_group_policy(group_name, policy_name)
if !data[:groups].key? group_name
raise Fog::AWS::IAM::NotFound.new("The group with name #{group_name} cannot be found.")
elsif !data[:groups][group_name][:policies].key? policy_name
raise Fog::AWS::IAM::NotFound.new("The group policy with name #{policy_name} cannot be found.")
else
data[:groups][group_name][:policies].delete(policy_name)
Excon::Response.new.tap do |response|
response.body = { 'RequestId' => Fog::AWS::Mock.request_id }
response.status = 200
end
end
end
end
end
end
end
|