2012-02-22 00:09:26 +08:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/openstack/models/compute/tenant'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class OpenStack
|
|
|
|
class Tenants < Fog::Collection
|
|
|
|
model Fog::Compute::OpenStack::Tenant
|
|
|
|
|
|
|
|
def all
|
|
|
|
load(connection.list_tenants.body['tenants'])
|
|
|
|
end
|
2012-03-06 14:43:02 +08:00
|
|
|
|
|
|
|
def usages(start_date = nil, end_date = nil, details = false)
|
|
|
|
connection.list_usages(start_date, end_date, details).body['tenant_usages']
|
|
|
|
end
|
2012-02-22 00:09:26 +08:00
|
|
|
end # class Tenants
|
|
|
|
end # class OpenStack
|
|
|
|
end # module Compute
|
|
|
|
end # module Fog
|