mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
35 lines
995 B
Ruby
35 lines
995 B
Ruby
|
module Fog
|
||
|
module AWS
|
||
|
class CloudFormation
|
||
|
class Real
|
||
|
|
||
|
require 'fog/aws/parsers/cloud_formation/get_template'
|
||
|
|
||
|
# Describe stacks
|
||
|
#
|
||
|
# ==== Parameters
|
||
|
# * options<~Hash>:
|
||
|
# * 'TemplateBody'<~String> - template structure
|
||
|
# * 'TemplateURL'<~String> - template url
|
||
|
#
|
||
|
# ==== Returns
|
||
|
# * response<~Excon::Response>:
|
||
|
# * body<~Hash>:
|
||
|
# * 'Description'<~String> - description found within the template
|
||
|
# * 'Parameters'<~String> - list of template parameter structures
|
||
|
#
|
||
|
# ==== See Also
|
||
|
# http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_ValidateTemplate.html
|
||
|
#
|
||
|
def validate_template(options = {})
|
||
|
request({
|
||
|
'Action' => 'GetTemplate',
|
||
|
:parser => Fog::Parsers::AWS::CloudFormation::GetTemplate.new
|
||
|
}.merge!(options))
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|