mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
517 B
Ruby
25 lines
517 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/hp/models/lb/virtual_ip'
|
|
|
|
module Fog
|
|
module HP
|
|
class LB
|
|
class VirtualIps < Fog::Collection
|
|
model Fog::HP::LB::VirtualIp
|
|
|
|
def all
|
|
data = service.list_virtual_ips.body['virtual_ips']
|
|
load(data)
|
|
end
|
|
|
|
def get(record_id)
|
|
record = service.get_virtual_ip_details(record_id).body['virtual_ip']
|
|
new(record)
|
|
rescue Fog::HP::LB::NotFound
|
|
nil
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|