mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
582 B
Ruby
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
|