mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
No EOL
559 B
Ruby
27 lines
No EOL
559 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/aws/models/iam/user'
|
|
|
|
module Fog
|
|
module AWS
|
|
class IAM
|
|
|
|
class Users < Fog::Collection
|
|
|
|
model Fog::AWS::IAM::User
|
|
|
|
def all
|
|
data = connection.list_users.body['Users']
|
|
load(data) # data is an array of attribute hashes
|
|
end
|
|
|
|
def get(identity)
|
|
data = connection.get_user('UserName' => identity).body['User']
|
|
new(data) # data is an attribute hash
|
|
rescue Fog::AWS::IAM::NotFound
|
|
nil
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end |