Sha256: d3d93497b47f0fc78230bad9d0eccb558149def60aefe67619028f5e9b853a45

Contents?: true

Size: 730 Bytes

Versions: 1

Compression:

Stored size: 730 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module ElasticBeanstalk

        require 'rackspace-fog/aws/parsers/beanstalk/parser'
        class DescribeApplicationVersions < Fog::Parsers::AWS::ElasticBeanstalk::BaseParser

          def initialize
            super("DescribeApplicationVersionsResult")
            tag 'ApplicationVersions', :object, :list
            tag 'ApplicationName', :string
            tag 'DateCreated', :datetime
            tag 'DateUpdated', :datetime
            tag 'Description', :string
            tag 'SourceBundle', :object
            tag 'S3Bucket', :string
            tag 'S3Key', :string
            tag 'VersionLabel', :string
          end

        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/parsers/beanstalk/describe_application_versions.rb