lib/fog/ibm/models/compute/locations.rb

Summary

Maintainability
A
35 mins
Test Coverage
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(service.list_locations.body['locations'])
        end

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