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



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

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

#get(location_id) ⇒ Object



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

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