class Fog::OpenStack::Identity::V2::Tenants

Public Instance Methods

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