1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/iam/delete_group_policy.rb
Josh Lane & Michelle Noorali 3c9198a789 add missing mocks
* mock for delete_group_policy request
* mock for delete_bucket_policy request
* mock for put_bucket_policy request
2015-01-26 16:15:08 -08:00

49 lines
1.6 KiB
Ruby

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