Class: Fog::Parsers::AWS::ElasticBeanstalk::UpdateApplication

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

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from BaseParser

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

Methods inherited from Base

#attr_value, #characters, #end_element_namespace, #reset, #start_element, #start_element_namespace, #value

Constructor Details

#initializeUpdateApplication

Returns a new instance of UpdateApplication.



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

def initialize
  super("UpdateApplicationResult")
  tag 'Application', :object
  tag 'Versions', :string, :list
  tag 'ConfigurationTemplates', :string, :list
  tag 'ApplicationName', :string
  tag 'Description', :string
  tag 'DateCreated', :datetime
  tag 'DateUpdated', :datetime
end