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/user.rb
2013-04-25 22:37:14 +02:00

41 lines
859 B
Ruby

require 'fog/core/model'
module Fog
module AWS
class IAM
class User < Fog::Model
identity :id, :aliases => 'UserName'
attribute :path, :aliases => 'Path'
attribute :arn, :aliases => 'Arn'
attribute :user_id, :aliases => 'UserId'
attribute :created_at, :aliases => 'CreateDate', :type => :time
def save
requires :id
data = service.create_user(id, path || '/').body['User']
merge_attributes(data)
true
end
def destroy
requires :id
service.delete_user(id)
true
end
def policies
requires :id
service.policies(:username => id)
end
def access_keys
requires :id
service.access_keys(:username => id)
end
end
end
end
end