Sha256: 5878a1237cbbefb7a58ef898601b00e5168d19ddea3c392168eb324a65b2753e

Contents?: true

Size: 955 Bytes

Versions: 55

Compression:

Stored size: 955 Bytes

Contents

module Fog
  module AWS
    class CloudFormation
      class Real

        require 'fog/aws/parsers/cloud_formation/validate_template'

        # Describe stacks.
        #
        # @param [Hash] options
        # @option options [String] TemplateBody template structure
        # @option options [String] TemplateURL template url
        #
        # @return [Excon::Response]
        #   * body [Hash]:
        #     * Description [String] - description found within the template
        #     * Parameters [String] - list of template parameter structures
        #
        # @see http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_ValidateTemplate.html
        #
        def validate_template(options = {})
          request({
            'Action'    => 'ValidateTemplate',
            :parser     => Fog::Parsers::AWS::CloudFormation::ValidateTemplate.new
          }.merge!(options))
        end

      end
    end
  end
end

Version data entries

55 entries across 55 versions & 3 rubygems

Version Path
fog-1.22.0 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-1.21.0 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-1.20.0 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-1.19.0 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/aws/requests/cloud_formation/validate_template.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/aws/requests/cloud_formation/validate_template.rb