Sha256: 8b185fd66a93788670ca023aa77ecad5b45a5cd41f458c977e9293f8d6b72985
Contents?: true
Size: 861 Bytes
Versions: 20
Compression:
Stored size: 861 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/openstack/identity/v2/models/tenant' module Fog module OpenStack class Identity class V2 class Tenants < Fog::OpenStack::Collection model Fog::OpenStack::Identity::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::OpenStack::Identity::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
20 entries across 20 versions & 3 rubygems