Class: Fog::Compute::IBM::Addresses

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/ibm/models/compute/addresses.rb

Instance Method Summary collapse

Instance Method Details

#allObject



10
11
12
# File 'lib/fog/ibm/models/compute/addresses.rb', line 10

def all
  load(service.list_addresses.body['addresses'])
end

#get(address_id) ⇒ Object



14
15
16
17
18
19
20
21
# File 'lib/fog/ibm/models/compute/addresses.rb', line 14

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