fog/fog-openstack

View on GitHub
lib/fog/openstack/compute/models/tenants.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'fog/openstack/models/collection'
require 'fog/openstack/compute/models/tenant'

module Fog
  module OpenStack
    class Compute
      class Tenants < Fog::OpenStack::Collection
        model Fog::OpenStack::Compute::Tenant

        def all
          load_response(service.list_tenants, 'tenants')
        end

        def usages(start_date = nil, end_date = nil, details = false)
          service.list_usages(start_date, end_date, details).body['tenant_usages']
        end

        def get(id)
          find { |tenant| tenant.id == id }
        end
      end
    end
  end
end