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/storm_on_demand/models/compute/image.rb

20 lines
377 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class StormOnDemand
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