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

28 lines
582 B
Ruby

require 'fog/core/collection'
require 'fog/ibm/models/compute/address'
module Fog
module Compute
class IBM
class Addresses < Fog::Collection
model Fog::Compute::IBM::Address
def all
load(service.list_addresses.body['addresses'])
end
def get(address_id)
begin
address = service.list_addresses.body
new(address['addresses'].find{|address| address['id'] == address_id.to_s })
rescue Fog::Compute::IBM::NotFound
nil
end
end
end
end
end
end