Sha256: 3304900999a20a399c2314c1ef7c646dd7998008c8db8c95fae8c6eaeacb3b41

Contents?: true

Size: 1.17 KB

Versions: 58

Compression:

Stored size: 1.17 KB

Contents

module Fog
  module AWS
    class CloudFormation
      class Real

        require 'fog/aws/parsers/cloud_formation/describe_stacks'

        # Describe stacks.
        #
        # @param options [Hash]
        # @option options StackName [String] Name of the stack to describe.
        #
        # @return [Excon::Response]
        #   * body [Hash]:
        #     * Stacks [Array] - Matching stacks
        #       * stack [Hash]:
        #         * StackName [String] -
        #         * StackId [String] -
        #         * CreationTime [String] -
        #         * StackStatus [String] -
        #         * DisableRollback [String] -
        #         * Outputs [Array] -
        #           * output [Hash]:
        #             * OutputKey [String] -
        #             * OutputValue [String] -
        #
        # @see http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_DescribeStacks.html
        
        def describe_stacks(options = {})
          request({
            'Action'    => 'DescribeStacks',
            :parser     => Fog::Parsers::AWS::CloudFormation::DescribeStacks.new
          }.merge!(options))
        end

      end
    end
  end
end

Version data entries

58 entries across 58 versions & 6 rubygems

Version Path
fog-maestrodev-1.18.0.20131205181604 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
gapinc-fog-1.12.1.2.1 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-1.18.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-1.17.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-1.16.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.15.0.20130927082724 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/aws/requests/cloud_formation/describe_stacks.rb