Sha256: 2ef6b8c9969bcfcbb2c3133d2f9c0f047c8466354ded39ffb68277668b862790

Contents?: true

Size: 1.52 KB

Versions: 53

Compression:

Stored size: 1.52 KB

Contents

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

        # Describe change_set.
        #
        # * ChangeSetName [String] The name of the change set to describe.
        # @param options [Hash]
        # @option options StackName [String] Name of the stack for the change set.
        #
        # @return [Excon::Response]
        #   * body [Hash]:
        #         * ChangeSetId [String] -
        #         * ChangeSetName [String] -
        #         * Description [String] -
        #         * CreationTime [Time] -
        #         * ExecutionStatus [String] -
        #         * StackId [String] -
        #         * StackName [String] -
        #         * Status [String] -
        #         * StackReason [String] -
        #         * NotificationARNs [Array] -
        #           * NotificationARN [String] -
        #         * Parameters [Array] -
        #           * parameter [Hash]:
        #             * ParameterKey [String] -
        #             * ParameterValue [String] -
        #
        # @see http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_DescribeChangeSet.html

        def describe_change_set(change_set_name, options = {})
          options['ChangeSetName'] = change_set_name
          request({
            'Action'    => 'DescribeChangeSet',
            :parser     => Fog::Parsers::AWS::CloudFormation::DescribeChangeSet.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/describe_change_set.rb
fog-aws-3.29.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.28.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.27.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.26.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.25.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.24.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.23.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.22.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.21.1 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.21.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.20.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.19.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.18.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.17.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.16.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.15.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.14.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.13.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb
fog-aws-3.12.0 lib/fog/aws/requests/cloud_formation/describe_change_set.rb