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

28 lines
726 B
Ruby
Raw Normal View History

2011-07-13 13:27:55 -07:00
module Fog
module Rackspace
class LoadBalancers
2011-07-13 13:27:55 -07:00
class Real
def create_node(load_balancer_id, address, port, condition, options = {})
data = {
'nodes' => [
{
'address' => address,
'port' => port,
'condition' => condition
}
]}
if options.has_key?(:weight)
data['nodes'][0]['weight'] = options[:weight]
end
request(
:body => MultiJson.encode(data),
2011-07-13 13:27:55 -07:00
:expects => [200, 202],
:method => 'POST',
:path => "loadbalancers/#{load_balancer_id}/nodes.json"
)
end
end
end
end
end