Class: Fog::Parsers::AWS::ElasticBeanstalk::DescribeApplicationVersions

Inherits:
BaseParser
  • Object
show all
Defined in:
lib/fog/aws/parsers/beanstalk/describe_application_versions.rb

Instance Method Summary collapse

Methods inherited from BaseParser

#end_element, #get_parent, #reset, #set_value, #start_element, #tag

Constructor Details

#initializeDescribeApplicationVersions

Returns a new instance of DescribeApplicationVersions.



7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/fog/aws/parsers/beanstalk/describe_application_versions.rb', line 7

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