Class: Fog::Rackspace::Identity::Tenants
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::Rackspace::Identity::Tenants
- Defined in:
- lib/fog/rackspace/models/identity/tenants.rb
Instance Attribute Summary
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 Method Details
#all ⇒ Object
11 12 13 |
# File 'lib/fog/rackspace/models/identity/tenants.rb', line 11 def all load(retrieve_tenants) end |
#get(id) ⇒ Object
15 16 17 18 |
# File 'lib/fog/rackspace/models/identity/tenants.rb', line 15 def get(id) data = retrieve_tenants.find{ |tenant| tenant['id'] == id } data && new(data) end |