Class: Fog::Parsers::AWS::ElasticBeanstalk::CreateApplicationVersion
- Inherits:
-
BaseParser
- Object
- Nokogiri::XML::SAX::Document
- Base
- BaseParser
- Fog::Parsers::AWS::ElasticBeanstalk::CreateApplicationVersion
- Defined in:
- lib/fog/aws/parsers/beanstalk/create_application_version.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize ⇒ CreateApplicationVersion
constructor
A new instance of CreateApplicationVersion.
Methods inherited from BaseParser
#end_element, #get_parent, #reset, #set_value, #start_element, #tag
Methods inherited from Base
#attr_value, #characters, #reset, #start_element, #value
Constructor Details
#initialize ⇒ CreateApplicationVersion
Returns a new instance of CreateApplicationVersion.
9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/fog/aws/parsers/beanstalk/create_application_version.rb', line 9 def initialize super("CreateApplicationVersionResult") 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 |