mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
23 lines
685 B
Ruby
23 lines
685 B
Ruby
|
module Fog
|
||
|
module Rackspace
|
||
|
class LoadBalancer
|
||
|
class Real
|
||
|
def set_connection_throttling(load_balancer_id, max_connections, min_connections, max_connection_rate, rate_interval)
|
||
|
data = {
|
||
|
'maxConnections' => max_connections,
|
||
|
'minConnections' => min_connections,
|
||
|
'maxConnectionRate' => max_connection_rate,
|
||
|
'rateInterval' => rate_interval
|
||
|
}
|
||
|
request(
|
||
|
:body => data.to_json,
|
||
|
:expects => [200, 202],
|
||
|
:path => "loadbalancers/#{load_balancer_id}/connectionthrottle",
|
||
|
:method => 'PUT'
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|