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
347 B
Ruby
15 lines
347 B
Ruby
module Fog
|
|
module Rackspace
|
|
class LoadBalancers
|
|
class Real
|
|
def remove_connection_throttling(load_balancer_id)
|
|
request(
|
|
:expects => [200, 202],
|
|
:path => "loadbalancers/#{load_balancer_id}/connectionthrottle",
|
|
:method => 'DELETE'
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|