Sha256: a51acc961aff6d78d67f250fc61610390f9db7fd477a7186e6d71cf8c0ff529f

Contents?: true

Size: 844 Bytes

Versions: 53

Compression:

Stored size: 844 Bytes

Contents

module Fog
  module AWS
    class CloudFormation
      class Real
        require 'fog/aws/parsers/cloud_formation/basic'

        # Execute a change set.
        #
        # @param ChangeSetName [String] The name of the change set to delete.
        # @option options StackName [String] The Stack name or ID (ARN) that is associated with change set.
        #
        # @return [Excon::Response]
        #
        # @see http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html

        def execute_change_set(change_set_name, options = {})
          options['ChangeSetName'] = change_set_name
          request({
            'Action'    => 'ExecuteChangeSet',
            :parser     => Fog::Parsers::AWS::CloudFormation::Basic.new
          }.merge!(options))
        end
      end
    end
  end
end

Version data entries

53 entries across 51 versions & 2 rubygems

Version Path
fog-aws-3.30.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.29.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.28.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.27.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.26.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.25.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.24.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.23.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.22.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.21.1 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.21.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.20.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.19.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.18.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.17.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.16.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.15.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.14.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.13.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb
fog-aws-3.12.0 lib/fog/aws/requests/cloud_formation/execute_change_set.rb