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/brightbox/models/compute/user.rb
2013-01-07 20:53:27 +00:00

43 lines
834 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class Brightbox
class User < Fog::Model
identity :id
attribute :resource_type
attribute :url
attribute :name
attribute :email_address
attribute :ssh_key
# Boolean flags
attribute :email_verified
attribute :messaging_pref
# Links - to be replaced
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 = service.update_user(identity, options)
merge_attributes(data)
true
end
end
end
end
end