2013-03-01 18:46:56 -05:00
|
|
|
module Fog
|
|
|
|
module HP
|
2013-03-05 11:25:30 -05:00
|
|
|
class LB
|
|
|
|
class Real
|
2013-03-06 12:35:09 -05:00
|
|
|
|
2013-03-05 11:25:30 -05:00
|
|
|
def delete_load_balancer_node(instance_id, node_id)
|
|
|
|
response = request(
|
2013-05-21 17:09:13 -04:00
|
|
|
:expects => [204,202],
|
2013-03-05 11:25:30 -05:00
|
|
|
:method => 'DELETE',
|
|
|
|
:path => "loadbalancers/#{instance_id}/nodes/#{node_id}"
|
|
|
|
)
|
|
|
|
response
|
2013-03-01 18:46:56 -05:00
|
|
|
end
|
2013-03-05 11:25:30 -05:00
|
|
|
|
|
|
|
end
|
|
|
|
class Mock
|
2013-03-06 12:35:09 -05:00
|
|
|
|
2013-03-05 11:25:30 -05:00
|
|
|
def delete_load_balancer_node(instance_id, node_id)
|
|
|
|
response = Excon::Response.new
|
2013-03-06 18:35:05 -05:00
|
|
|
response = Excon::Response.new
|
|
|
|
if load_b = get_load_balancer(instance_id).body
|
|
|
|
if node = find_node(load_b, node_id)
|
|
|
|
response.status = 202
|
|
|
|
else
|
|
|
|
raise Fog::HP::LB::NotFound
|
|
|
|
end
|
|
|
|
else
|
|
|
|
raise Fog::HP::LB::NotFound
|
|
|
|
end
|
2013-03-05 11:25:30 -05:00
|
|
|
response
|
2013-03-01 18:46:56 -05:00
|
|
|
end
|
2013-03-06 18:35:05 -05:00
|
|
|
|
|
|
|
def find_node(lb, node_id)
|
|
|
|
lb['nodes'].detect { |_| _['id'] == node_id }
|
|
|
|
end
|
2013-03-01 18:46:56 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-05-21 17:09:13 -04:00
|
|
|
end
|