mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
d2e06e96ca
pluralize service name use multi_json fix directory structure for consistency
20 lines
501 B
Ruby
20 lines
501 B
Ruby
module Fog
|
|
module Rackspace
|
|
class LoadBalancers
|
|
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
|