Sha256: 3534fd80efef9abcac98455360c37231755fa69624dd40b3a33ab422d99c34e2

Contents?: true

Size: 1.23 KB

Versions: 114

Compression:

Stored size: 1.23 KB

Contents

module Fog
  module Parsers
    module AWS
      module CloudFormation

        class ValidateTemplate < Fog::Parsers::Base

          def reset
            @parameter = {}
            @response = { 'Parameters' => [] }
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'Parameters'
              @in_parameters = true
            end
          end

          def end_element(name)
            case name
            when 'DefaultValue', 'ParameterKey'
              @parameter[name] = value
            when 'Description'
              if @in_parameters
                @parameter[name] = value
              else
                @response[name] = value
              end
            when 'RequestId'
              @response[name] = value
            when 'member'
              @response['Parameters'] << @parameter
              @parameter = {}
            when 'NoEcho'
              case value
              when 'false'
                @parameter[name] = false
              when 'true'
                @parameter[name] = true
              end
            when 'Parameters'
              @in_parameters = false
            end
          end

        end
      end
    end
  end
end

Version data entries

114 entries across 114 versions & 19 rubygems

Version Path
michiels-fog-1.3.1 lib/fog/aws/parsers/cloud_formation/validate_template.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/aws/parsers/cloud_formation/validate_template.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_formation/validate_template.rb
fog-1.3.1 lib/fog/aws/parsers/cloud_formation/validate_template.rb
fog-1.3.0 lib/fog/aws/parsers/cloud_formation/validate_template.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_formation/validate_template.rb
fog-1.2.0 lib/fog/aws/parsers/cloud_formation/validate_template.rb
ktheory-fog-1.1.2 lib/fog/aws/parsers/cloud_formation/validate_template.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_formation/validate_template.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_formation/validate_template.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_formation/validate_template.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_formation/validate_template.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_formation/validate_template.rb
fog-1.1.2 lib/fog/aws/parsers/cloud_formation/validate_template.rb
fog_tractical-1.1.4 lib/fog/aws/parsers/cloud_formation/validate_template.rb
fog_tractical-1.1.3 lib/fog/aws/parsers/cloud_formation/validate_template.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_formation/validate_template.rb
fog-1.1.1 lib/fog/aws/parsers/cloud_formation/validate_template.rb
fog-1.1.0 lib/fog/aws/parsers/cloud_formation/validate_template.rb
brightbox-cli-0.15.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_formation/validate_template.rb