mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
No EOL
589 B
Ruby
27 lines
No EOL
589 B
Ruby
module Fog
|
|
module HP
|
|
class BlockStorage
|
|
class LB
|
|
class Real
|
|
def get_load_balancer_node(load_balancer_id, node_id)
|
|
response = request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:path => "loadbalancers/#{load_balancer_id}/nodes/#{node_id}"
|
|
)
|
|
response
|
|
|
|
end
|
|
end
|
|
class Mock
|
|
def get_load_balancer_node(load_balancer_id, node_id)
|
|
response = Excon::Response.new
|
|
|
|
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |