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/hp/requests/lb/get_load_balancer_node.rb

54 lines
1.6 KiB
Ruby
Raw Normal View History

2013-03-01 17:46:56 -06:00
module Fog
module HP
2013-03-05 10:25:30 -06:00
class LB
class Real
# 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)
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-03-05 10:25:30 -06:00
class Mock
def get_load_balancer_node(load_balancer_id, node_id)
response = Excon::Response.new
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
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
def find_node(load_balancer_id, node_id)
nodes = list_load_balancer_nodes(load_balancer_id).body['nodes']
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