1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/parsers/beanstalk/describe_application_versions.rb

26 lines
720 B
Ruby

module Fog
module Parsers
module AWS
module ElasticBeanstalk
require '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