Sha256: fe0d349205f51064d111866df5f2b9198cf96fd9403642856d7031230d34fbd8
Contents?: true
Size: 818 Bytes
Versions: 14
Compression:
Stored size: 818 Bytes
Contents
module Fog module Rackspace class LoadBalancers class Real def create_node(load_balancer_id, address, port, condition, options = {}) data = { 'nodes' => [ { 'address' => address, 'port' => port, 'condition' => condition } ]} if options.key?(:weight) data['nodes'][0]['weight'] = options[:weight] end if options.key? :type data['node']['type'] = options[:type] end request( :body => Fog::JSON.encode(data), :expects => [200, 202], :method => 'POST', :path => "loadbalancers/#{load_balancer_id}/nodes.json" ) end end end end end
Version data entries
14 entries across 14 versions & 3 rubygems