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/detach_user_policy.rb
Josh Lane 0cc4279333 model managed policies
* list attached group/user policies
* fix policy paging
* default managed policy listing
2015-05-29 13:01:25 -07:00

58 lines
1.8 KiB
Ruby

module Fog
module AWS
class IAM
class Real
require 'fog/aws/parsers/iam/basic'
# Detaches a managed policy to a user
#
# ==== Parameters
# * user_name<~String>: name of the user
# * policy_arn<~String>: arn of the managed policy
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'RequestId'<~String> - Id of the request
#
# ==== See Also
# http://docs.aws.amazon.com/IAM/latest/APIReference/API_DetachUserPolicy.html
#
def detach_user_policy(user_name, policy_arn)
request(
'Action' => 'DetachUserPolicy',
'UserName' => user_name,
'PolicyArn' => policy_arn,
:parser => Fog::Parsers::AWS::IAM::Basic.new
)
end
end
class Mock
def detach_user_policy(user_name, policy_arn)
if policy_arn.nil?
raise Fog::AWS::IAM::ValidationError, "1 validation error detected: Value null at 'policyArn' failed to satisfy constraint: Member must not be null"
end
managed_policy = self.data[:managed_policies][policy_arn]
unless managed_policy
raise Fog::AWS::IAM::NotFound, "Policy #{policy_arn} does not exist."
end
unless self.data[:users].key?(user_name)
raise Fog::AWS::IAM::NotFound.new("The user with name #{user_name} cannot be found.")
end
user = self.data[:users][user_name]
user[:attached_policies].delete(policy_arn)
Excon::Response.new.tap { |response|
response.status = 200
response.body = { "RequestId" => Fog::AWS::Mock.request_id }
}
end
end
end
end
end