Sha256: 9a752ba2cd90e8e3407da85e38308d39174404bd1e0264015aea63fc62ce568e

Contents?: true

Size: 716 Bytes

Versions: 1

Compression:

Stored size: 716 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module ElasticBeanstalk

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

          def initialize
            super("CreateApplicationVersionResult")
            tag 'ApplicationVersion', :object
            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/create_application_version.rb