Class: Fog::Identity::OpenStack::Tenants

Inherits:
Collection
  • Object
show all
Defined in:
lib/rackspace-fog/openstack/models/identity/tenants.rb

Instance Attribute Summary

Attributes inherited from Collection

#connection

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #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

#allObject



10
11
12
# File 'lib/rackspace-fog/openstack/models/identity/tenants.rb', line 10

def all
  load(connection.list_tenants.body['tenants'])
end

#destroy(id) ⇒ Object



20
21
22
23
# File 'lib/rackspace-fog/openstack/models/identity/tenants.rb', line 20

def destroy(id)
  tenant = self.find_by_id(id)
  tenant.destroy
end

#find_by_id(id) ⇒ Object



14
15
16
17
18
# File 'lib/rackspace-fog/openstack/models/identity/tenants.rb', line 14

def find_by_id(id)
  self.find {|tenant| tenant.id == id} ||
    Fog::Identity::OpenStack::Tenant.new(
      connection.get_tenant(id).body['tenant'])
end