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