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/remove_connection_throttling.rb

16 lines
347 B
Ruby
Raw Normal View History

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