Sha256: a202bdc03ed5fe459d68acf19f10b016cba2300df72ec9c4db7cdcd233d5ea26

Contents?: true

Size: 1.07 KB

Versions: 98

Compression:

Stored size: 1.07 KB

Contents

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

        # List stack resources.
        #
        # @param options [Hash]
        # @option options StackName [String] Name of the stack to describe.
        #
        # @return [Excon::Response]
        #   * body [Hash]:
        #     * StackResourceSummaries [Array] - Matching stacks
        #       * resources [Hash]:
        #         * ResourceStatus [String] -
        #         * LogicalResourceId [String] -
        #         * PhysicalResourceId [String] -
        #         * ResourceType [String] -
        #         * LastUpdatedTimestamp [Time] -
        #
        #
        # @see http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStacks.html

        def list_stack_resources(options = {})
          request({
            'Action'    => 'ListStackResources',
            :parser     => Fog::Parsers::AWS::CloudFormation::ListStackResources.new
          }.merge!(options))
        end
      end
    end
  end
end

Version data entries

98 entries across 96 versions & 6 rubygems

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