1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/compute/get_usage.rb

25 lines
484 B
Ruby
Raw Normal View History

2012-02-23 03:40:31 -05:00
module Fog
module Compute
class OpenStack
class Real
def get_usage(tenant_id, date_start, date_end)
# TODO: Handle nasty date formats
request(
:expects => [200, 203],
:method => 'GET',
:path => "os-simple-tenant-usage/#{tenant_id}?start=#{date_start.iso8601}&end=#{date_end.iso8601}"
)
end
end
class Mock
# TODO: Mocks to go here
end
end
end
end