Class: Fog::Brightbox::Compute::User

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/compute/models/brightbox/user.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #reload, #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, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#saveObject



21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/fog/compute/models/brightbox/user.rb', line 21

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