1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/models/iam/users.rb

27 lines
559 B
Ruby
Raw Normal View History

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