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/locations.rb
2012-03-20 23:37:45 -04:00

27 lines
508 B
Ruby

require 'fog/core/collection'
require 'fog/ibm/models/compute/location'
module Fog
module Compute
class IBM
class Locations < Fog::Collection
model Fog::Compute::IBM::Location
def all
load(connection.get_locations.body['locations'])
end
def get(location_id)
begin
new(connection.get_location(location_id).body)
rescue Fog::Compute::IBM::NotFound
nil
end
end
end
end
end
end