Class/Module Index [+]

Quicksearch

Fog::Identity::OpenStack::Tenants

Public Instance Methods

all() click to toggle source
# File lib/fog/openstack/models/identity/tenants.rb, line 10
def all
  load(service.list_tenants.body['tenants'])
end
destroy(id) click to toggle source
# File lib/fog/openstack/models/identity/tenants.rb, line 22
def destroy(id)
  tenant = self.find_by_id(id)
  tenant.destroy
end
find_by_id(id) click to toggle source
# File lib/fog/openstack/models/identity/tenants.rb, line 14
def find_by_id(id)
  cached_tenant = self.find {|tenant| tenant.id == id}
  return cached_tenant if cached_tenant
  tenant_hash = service.get_tenant(id).body['tenant']
  Fog::Identity::OpenStack::Tenant.new(
    tenant_hash.merge(:service => service))
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.