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/rackspace/requests/load_balancers/get_usage.rb

21 lines
501 B
Ruby
Raw Normal View History

2011-07-27 21:44:43 -04:00
module Fog
module Rackspace
class LoadBalancers
2011-07-27 21:44:43 -04:00
class Real
def get_usage(options = {})
if options.has_key? :start_time and options.has_key? :end_time
query = "?startTime=#{options[:start_time]}&endTime=#{options[:end_time]}"
else
query = ''
end
request(
:expects => 200,
:path => "loadbalancers/usage#{query}",
:method => 'GET'
)
end
end
end
end
end