Class: Fog::Compute::Brightbox::User
- Defined in:
- lib/fog/brightbox/models/compute/user.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#save ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/fog/brightbox/models/compute/user.rb', line 25 def save requires :identity = { :email_address => email_address, :ssh_key => ssh_key, :name => name } data = connection.update_user(identity, ) merge_attributes(data) true end |