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/location.rb

16 lines
266 B
Ruby
Raw Normal View History

2012-01-17 11:19:21 -05:00
require 'fog/core/model'
module Fog
module Compute
class IBM
class Location < Fog::Model
identity :id
attribute :name
attribute :location
attribute :capabilities
attribute :description
end
end
end
end