Sha256: 4966d05d3f53819bac73826f6574d025c306487c23014277c8030ad85bb83f13

Contents?: true

Size: 1.25 KB

Versions: 56

Compression:

Stored size: 1.25 KB

Contents

module Fog
  module AWS
    class CloudFormation
      class Real

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

        # Describe stacks
        #
        # ==== Parameters
        # * options<~Hash>:
        #   * 'StackName'<~String>: name of the stack to describe
        #
        # ==== Returns
        # * response<~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 Also
        # 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

56 entries across 56 versions & 14 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-nirvanix-1.8.1 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-parser-fix-1.6.1 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-test-again-1.6.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-parser-fix-1.6.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-1.10.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-1.9.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.8.0.20130114204828 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.8.0.20130111070250 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.8.0.20130109172219 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-sgonyea-1.8.1 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-1.8.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-1.7.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-1.6.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-1.5.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
fog-1.4.0 lib/fog/aws/requests/cloud_formation/describe_stacks.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/cloud_formation/describe_stacks.rb
michiels-fog-1.3.1 lib/fog/aws/requests/cloud_formation/describe_stacks.rb