Sha256: 5378b472e575e0a42f29637e6fbb81a91be283b27f130866993320ccf61b8c2c
Contents?: true
Size: 696 Bytes
Versions: 118
Compression:
Stored size: 696 Bytes
Contents
module Fog module Rackspace class LoadBalancers 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 => Fog::JSON.encode(data), :expects => [200, 202], :path => "loadbalancers/#{load_balancer_id}/connectionthrottle", :method => 'PUT' ) end end end end end
Version data entries
118 entries across 116 versions & 17 rubygems