fog--fog/lib/fog/brightbox/requests/compute/remove_nodes_load_balancer.rb

28 lines
651 B
Ruby

module Fog
module Brightbox
class Compute
class Real
def remove_nodes_load_balancer(identifier, options = {})
return nil if identifier.nil? || identifier == ""
request(
:expects => [202],
:method => 'POST',
:path => "/1.0/load_balancers/#{identifier}/remove_nodes",
:headers => {"Content-Type" => "application/json"},
:body => options.to_json
)
end
end
class Mock
def remove_nodes_load_balancer(identifier, options = {})
Fog::Mock.not_implemented
end
end
end
end
end