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_login_profile.rb
Josh Lane da3d63cb21 IAM::User#password
* manipulate login profiles through the user model
8 mock login profile actions
2015-05-21 12:42:26 -07:00

54 lines
1.4 KiB
Ruby

module Fog
module AWS
class IAM
class Real
require 'fog/aws/parsers/iam/basic'
# Deletes a user's login profile
#
# http://docs.amazonwebservices.com/IAM/latest/APIReference/API_DeleteLoginProfile.html
# ==== Parameters
# * user_name<~String> - Name of user whose login profile you want to delete
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'RequestId'<~String> - Id of the request
#
#
def delete_login_profile(user_name)
request({
'Action' => 'DeleteLoginProfile',
'UserName' => user_name,
:parser => Fog::Parsers::AWS::IAM::Basic.new
})
end
end
class Mock
def delete_login_profile(user_name)
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]
unless user[:login_profile]
raise Fog::AWS::IAM::NotFound, "Cannot find Login Profile for User #{user_name}"
end
user.delete(:login_profile)
response = Excon::Response.new
response.status = 200
response.body = {
"RequestId" => Fog::AWS::Mock.request_id
}
response
end
end
end
end
end