mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
377 B
Ruby
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
|