mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
520 B
Ruby
21 lines
520 B
Ruby
module Fog
|
|
module Rackspace
|
|
class LoadBalancers
|
|
class Real
|
|
def set_connection_logging(load_balancer_id, value)
|
|
data = {
|
|
'connectionLogging' => {
|
|
'enabled' => value.to_s
|
|
}
|
|
}
|
|
request(
|
|
:body => Fog::JSON.encode(data),
|
|
:expects => [200, 202],
|
|
:path => "loadbalancers/#{load_balancer_id}/connectionlogging",
|
|
:method => 'PUT'
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|