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

29 lines
582 B
Ruby
Raw Normal View History

2012-01-10 17:20:56 -05:00
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
2012-12-22 18:26:06 -05:00
load(service.list_addresses.body['addresses'])
2012-01-10 17:20:56 -05:00
end
def get(address_id)
begin
2012-12-22 18:26:06 -05:00
address = service.list_addresses.body
2012-01-10 17:20:56 -05:00
new(address['addresses'].find{|address| address['id'] == address_id.to_s })
rescue Fog::Compute::IBM::NotFound
nil
end
end
end
end
end
end