Class: Fog::Parsers::AWS::ElasticBeanstalk::UpdateApplicationVersion

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

Instance Method Summary collapse

Methods inherited from BaseParser

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

Constructor Details

#initializeUpdateApplicationVersion

Returns a new instance of UpdateApplicationVersion.



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

def initialize
  super("UpdateApplicationVersionResult")
  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