mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
55 lines
1.8 KiB
Ruby
55 lines
1.8 KiB
Ruby
module Fog
|
|
module AWS
|
|
class IAM
|
|
class Real
|
|
require 'fog/aws/parsers/iam/get_user'
|
|
|
|
# Get User
|
|
#
|
|
# ==== Parameters
|
|
# * username<String>
|
|
# * options<~Hash>:
|
|
# * 'UserName'<~String>: Name of the User. Defaults to current user
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * 'User'<~Hash> - User
|
|
# * Arn<~String> -
|
|
# * UserId<~String> -
|
|
# * UserName<~String> -
|
|
# * Path<~String> -
|
|
#
|
|
# ==== See Also
|
|
# http://docs.amazonwebservices.com/IAM/latest/APIReference/API_Getuser.html
|
|
#
|
|
def get_user(username, options = {})
|
|
request({
|
|
'Action' => 'GetUser',
|
|
'UserName' => username,
|
|
:parser => Fog::Parsers::AWS::IAM::GetUser.new
|
|
}.merge!(options))
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def get_user(user, options = {})
|
|
raise Fog::AWS::IAM::NotFound.new(
|
|
"The user with name #{user} cannot be found."
|
|
) unless self.data[:users].key?(user)
|
|
Excon::Response.new.tap do |response|
|
|
response.body = {'User' => {
|
|
'UserId' => data[:users][user][:user_id],
|
|
'Path' => data[:users][user][:path],
|
|
'UserName' => user,
|
|
'Arn' => (data[:users][user][:arn]).strip,
|
|
'CreateDate' => data[:users][user][:created_at]
|
|
},
|
|
'RequestId' => Fog::AWS::Mock.request_id }
|
|
response.status = 200
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|