Class: Fog::Rackspace::Identity::User
- Defined in:
- lib/fog/rackspace/models/identity/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
#credentials ⇒ Object
42 43 44 45 46 47 48 49 |
# File 'lib/fog/rackspace/models/identity/user.rb', line 42 def credentials @credentials ||= begin Fog::Rackspace::Identity::Credentials.new({ :connection => connection, :user => self }) end end |
#destroy ⇒ Object
27 28 29 30 31 |
# File 'lib/fog/rackspace/models/identity/user.rb', line 27 def destroy requires :identity connection.delete_user(identity) true end |
#roles ⇒ Object
33 34 35 36 37 38 39 40 |
# File 'lib/fog/rackspace/models/identity/user.rb', line 33 def roles @roles ||= begin Fog::Rackspace::Identity::Roles.new({ :connection => connection, :user => self }) end end |
#save ⇒ Object
16 17 18 19 20 21 22 23 24 25 |
# File 'lib/fog/rackspace/models/identity/user.rb', line 16 def save requires :username, :email, :enabled if identity.nil? data = connection.create_user(username, email, enabled, :password => password) else data = connection.update_user(identity, username, email, enabled, :password => password) end merge_attributes(data.body['user']) true end |