2010-11-17 15:04:49 -05:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class IAM
|
|
|
|
class Real
|
|
|
|
require 'fog/aws/parsers/iam/basic'
|
|
|
|
|
|
|
|
# Remove a policy from a user
|
2014-02-19 07:30:59 -05:00
|
|
|
#
|
2010-11-17 15:04:49 -05:00
|
|
|
# ==== Parameters
|
|
|
|
# * user_name<~String>: name of the user
|
|
|
|
# * 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_DeleteUserPolicy.html
|
|
|
|
#
|
|
|
|
def delete_user_policy(user_name, policy_name)
|
|
|
|
request(
|
|
|
|
'Action' => 'DeleteUserPolicy',
|
|
|
|
'PolicyName' => policy_name,
|
|
|
|
'UserName' => user_name,
|
|
|
|
:parser => Fog::Parsers::AWS::IAM::Basic.new
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2012-02-06 18:40:37 -05:00
|
|
|
|
|
|
|
class Mock
|
|
|
|
def delete_user_policy(user_name, policy_name)
|
2012-02-06 20:54:06 -05:00
|
|
|
if data[:users].has_key?(user_name) && data[:users][user_name][:policies].has_key?(policy_name)
|
2012-02-06 18:40:37 -05:00
|
|
|
data[:users][user_name][:policies].delete policy_name
|
2012-02-06 20:54:06 -05:00
|
|
|
Excon::Response.new.tap do |response|
|
|
|
|
response.body = { 'RequestId' => Fog::AWS::Mock.request_id }
|
|
|
|
response.status = 200
|
|
|
|
end
|
2012-02-06 18:40:37 -05:00
|
|
|
else
|
|
|
|
raise Fog::AWS::IAM::NotFound.new("The user policy with name #{policy_name} cannot be found.")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-11-17 15:04:49 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|