Class: Fog::Parsers::AWS::ElasticBeanstalk::DescribeEvents
- Inherits:
-
BaseParser
- Object
- Nokogiri::XML::SAX::Document
- Base
- BaseParser
- Fog::Parsers::AWS::ElasticBeanstalk::DescribeEvents
- Defined in:
- lib/fog/aws/parsers/beanstalk/describe_events.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize ⇒ DescribeEvents
constructor
A new instance of DescribeEvents.
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 ⇒ DescribeEvents
Returns a new instance of DescribeEvents.
9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/fog/aws/parsers/beanstalk/describe_events.rb', line 9 def initialize super("DescribeEventsResult") tag 'Events', :object, :list tag 'ApplicationName', :string tag 'EnvironmentName', :string tag 'EventDate', :datetime tag 'Message', :string tag 'RequestId', :string tag 'Severity', :string tag 'TemplateName', :string tag 'VersionLabel', :string tag 'NextToken', :string end |