Class: Fog::Compute::IBM::Locations

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

Instance Method Summary collapse

Instance Method Details

#allObject



12
13
14
# File 'lib/fog/ibm/models/compute/locations.rb', line 12

def all
  load(service.list_locations.body['locations'])
end

#get(location_id) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/fog/ibm/models/compute/locations.rb', line 16

def get(location_id)
  begin
    new(service.get_location(location_id).body)
  rescue Fog::Compute::IBM::NotFound
    nil
  end
end