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
15 lines
330 B
Ruby
15 lines
330 B
Ruby
module Fog
|
|
module Rackspace
|
|
class LoadBalancers
|
|
class Real
|
|
def get_connection_logging(load_balancer_id)
|
|
request(
|
|
:expects => 200,
|
|
:path => "loadbalancers/#{load_balancer_id}/connectionlogging",
|
|
:method => 'GET'
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|