Sha256: 738ace2143f786480ff95108cf9ed83d59d365278203492788b86ed4f4908ce9
Contents?: true
Size: 861 Bytes
Versions: 25
Compression:
Stored size: 861 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/identity/openstack/v2/models/tenant' module Fog module Identity class OpenStack class V2 class Tenants < Fog::OpenStack::Collection model Fog::Identity::OpenStack::V2::Tenant def all(options = {}) load_response(service.list_tenants(options), 'tenants') end 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::Identity::OpenStack::V2::Tenant.new( tenant_hash.merge(:service => service) ) end def destroy(id) tenant = find_by_id(id) tenant.destroy end end end end end end
Version data entries
25 entries across 23 versions & 3 rubygems