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