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

25 lines
638 B
Ruby
Raw Normal View History

2011-07-08 16:39:22 -04:00
module Fog
module Rackspace
class LoadBalancers
2011-07-08 16:39:22 -04:00
class Real
def update_load_balancer(load_balancer_id, options = {})
data = {
'loadBalancer' => {
'name' => options[:name],
'port' => options[:port],
'protocol' => options[:protocol],
'algorithm' => options[:algorithm]
}
}
request(
2012-04-25 10:31:28 -04:00
:body => Fog::JSON.encode(data),
2011-07-08 16:39:22 -04:00
:expects => 202,
:method => 'PUT',
:path => "loadbalancers/#{load_balancer_id}.json"
)
end
end
end
end
end