2013-03-01 18:46:56 -05:00
|
|
|
module Fog
|
|
|
|
module HP
|
2013-03-05 11:25:30 -05:00
|
|
|
class LB
|
|
|
|
class Real
|
|
|
|
def get_virtual_ips(load_balancer_id)
|
|
|
|
response = request(
|
|
|
|
:expects => 200,
|
|
|
|
:method => 'GET',
|
|
|
|
:path => "loadbalancers/#{load_balancer_id}/virtualips"
|
|
|
|
)
|
|
|
|
response
|
2013-03-01 18:46:56 -05:00
|
|
|
end
|
2013-03-04 15:33:54 -05:00
|
|
|
|
2013-03-05 11:25:30 -05:00
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def get_virtual_ips(load_balancer_id)
|
|
|
|
response = Excon::Response.new
|
2013-03-04 15:33:54 -05:00
|
|
|
|
|
|
|
|
2013-03-05 11:25:30 -05:00
|
|
|
response
|
2013-03-01 18:46:56 -05:00
|
|
|
|
|
|
|
end
|
2013-03-05 11:25:30 -05:00
|
|
|
|
2013-03-01 18:46:56 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|