Class: Fog::Rackspace::Identity::Roles
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::Rackspace::Identity::Roles
- Defined in:
- lib/fog/rackspace/models/identity/roles.rb
Instance Attribute Summary collapse
-
#user ⇒ Object
Returns the value of attribute user.
Attributes inherited from Collection
Instance Method Summary collapse
Methods inherited from Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
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::Collection
Instance Attribute Details
#user ⇒ Object
Returns the value of attribute user.
11 12 13 |
# File 'lib/fog/rackspace/models/identity/roles.rb', line 11 def user @user end |
Instance Method Details
#all ⇒ Object
13 14 15 16 |
# File 'lib/fog/rackspace/models/identity/roles.rb', line 13 def all requires :user load(retrieve_roles) end |
#get(id) ⇒ Object
18 19 20 21 22 |
# File 'lib/fog/rackspace/models/identity/roles.rb', line 18 def get(id) requires :user data = retrieve_roles.find{ |role| role['id'] == id } data && new(data) end |