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/rackspace/models/orchestration/template.rb
2014-12-12 14:22:07 -05:00

13 lines
238 B
Ruby

module Fog
module Rackspace
class Orchestration
class Template < Fog::Model
%w{description heat_template_version parameters resources}.each do |a|
attribute a.to_sym
end
end
end
end
end