2013-03-01 17:46:56 -06:00
|
|
|
module Fog
|
|
|
|
module HP
|
2013-03-05 10:25:30 -06:00
|
|
|
class LB
|
|
|
|
class Real
|
2013-10-09 18:49:44 -04:00
|
|
|
|
|
|
|
# Get details for an existing load balancer node
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * 'load_balancer_id'<~String> - UUId of the load balancer to get
|
|
|
|
# * 'node_id'<~String> - UUId of node to get
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'id'<~String> - UUId for the node
|
|
|
|
# * 'address'<~String> - Address for the node
|
|
|
|
# * 'port'<~String> - Port for the node
|
|
|
|
# * 'condition'<~String> - Condition for the node e.g. 'ENABLED'
|
|
|
|
# * 'status'<~String> - Status for the node e.g. 'ONLINE'
|
2013-03-05 10:25:30 -06:00
|
|
|
def get_load_balancer_node(load_balancer_id, node_id)
|
2013-10-09 18:49:44 -04:00
|
|
|
request(
|
2013-03-05 10:25:30 -06:00
|
|
|
:expects => 200,
|
|
|
|
:method => 'GET',
|
|
|
|
:path => "loadbalancers/#{load_balancer_id}/nodes/#{node_id}"
|
|
|
|
)
|
2013-03-01 17:46:56 -06:00
|
|
|
end
|
2013-03-05 10:25:30 -06:00
|
|
|
end
|
2013-10-09 18:49:44 -04:00
|
|
|
|
2013-03-05 10:25:30 -06:00
|
|
|
class Mock
|
|
|
|
def get_load_balancer_node(load_balancer_id, node_id)
|
|
|
|
response = Excon::Response.new
|
2013-10-09 18:49:44 -04:00
|
|
|
if get_load_balancer(load_balancer_id)
|
|
|
|
if node = find_node(load_balancer_id, node_id)
|
2013-03-06 17:17:45 -06:00
|
|
|
response.status = 200
|
|
|
|
response.body = node
|
2013-10-09 18:49:44 -04:00
|
|
|
response
|
2013-03-06 17:17:45 -06:00
|
|
|
else
|
|
|
|
raise Fog::HP::LB::NotFound
|
|
|
|
end
|
|
|
|
else
|
|
|
|
raise Fog::HP::LB::NotFound
|
|
|
|
end
|
2013-03-04 14:33:54 -06:00
|
|
|
|
2013-03-01 17:46:56 -06:00
|
|
|
end
|
2013-03-06 17:17:45 -06:00
|
|
|
|
2013-10-09 18:49:44 -04:00
|
|
|
def find_node(load_balancer_id, node_id)
|
|
|
|
nodes = list_load_balancer_nodes(load_balancer_id).body['nodes']
|
2013-10-15 17:35:30 -04:00
|
|
|
nodes.detect {|n| n['id'] == node_id}
|
2013-03-06 17:17:45 -06:00
|
|
|
end
|
|
|
|
|
2013-03-01 17:46:56 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|