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