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/models/compute/addresses.rb
2013-01-07 21:01:13 +00:00

29 lines
546 B
Ruby

require 'fog/core/collection'
require 'fog/hp/models/compute/address'
module Fog
module Compute
class HP
class Addresses < Fog::Collection
model Fog::Compute::HP::Address
def all
data = service.list_addresses.body['floating_ips']
load(data)
end
def get(address_id)
if address = service.get_address(address_id).body['floating_ip']
new(address)
end
rescue Fog::Compute::HP::NotFound
nil
end
end
end
end
end