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/compute/models/brightbox/user.rb
2011-01-07 16:52:09 -08:00

39 lines
745 B
Ruby

require 'fog/core/model'
module Fog
module Brightbox
class Compute
class User < Fog::Model
identity :id
attribute :url
attribute :resource_type
attribute :name
attribute :email_address
attribute :email_verified
attribute :ssh_key
attribute :account_id, :aliases => "default_account", :squash => "id"
attribute :accounts
def save
requires :identity
options = {
:email_address => email_address,
:ssh_key => ssh_key,
:name => name
}
data = connection.update_user(identity, options)
merge_attributes(data)
true
end
end
end
end
end