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

Inherits:
OpenStack::Collection show all
Defined in:
lib/fog/openstack/models/identity_v2/tenants.rb

Instance Attribute Summary

Attributes inherited from OpenStack::Collection

#response

Instance Method Summary collapse

Methods inherited from OpenStack::Collection

#get, #load_response, #summary

Instance Method Details

#all(options = {}) ⇒ Object



11
12
13
# File 'lib/fog/openstack/models/identity_v2/tenants.rb', line 11

def all(options = {})
  load_response(service.list_tenants(options), 'tenants')
end

#destroy(id) ⇒ Object



23
24
25
26
# File 'lib/fog/openstack/models/identity_v2/tenants.rb', line 23

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

#find_by_id(id) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/fog/openstack/models/identity_v2/tenants.rb', line 15

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::V2::Tenant.new(
      tenant_hash.merge(:service => service))
end