mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
23 lines
703 B
Ruby
23 lines
703 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module ElasticBeanstalk
|
|
require '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
|