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/compute/models/storm_on_demand/image.rb
2011-05-10 13:58:22 -07:00

20 lines
377 B
Ruby

require 'fog/core/model'
module Fog
module StormOnDemand
class Compute
class Image < Fog::Model
identity :id
attribute :accnt
attribute :name
attribute :source_hostname
attribute :source_subaccnt
attribute :template
attribute :template_description
attribute :time_taken
end
end
end
end