mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
650 B
Ruby
24 lines
650 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module ElasticBeanstalk
|
|
|
|
require 'fog/aws/parsers/beanstalk/parser'
|
|
class DescribeApplications < Fog::Parsers::AWS::ElasticBeanstalk::BaseParser
|
|
|
|
def initialize
|
|
super("DescribeApplicationsResult")
|
|
tag 'Applications', :object, :list
|
|
tag 'Versions', :string, :list
|
|
tag 'ConfigurationTemplates', :string, :list
|
|
tag 'ApplicationName', :string
|
|
tag 'Description', :string
|
|
tag 'DateCreated', :datetime
|
|
tag 'DateUpdated', :datetime
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|