Class: Fog::Parsers::AWS::Elasticache::Base
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::AWS::Elasticache::Base
- Defined in:
- lib/fog/aws/parsers/elasticache/base.rb
Overview
Base parser for ResponseMetadata, RequestId
Direct Known Subclasses
CacheClusterParser, EngineDefaultsParser, EventListParser, ParameterGroupParser
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#attr_value, #characters, #initialize, #value
Constructor Details
This class inherits a constructor from Fog::Parsers::Base
Instance Method Details
#end_element(name) ⇒ Object
18 19 20 21 22 23 24 25 |
# File 'lib/fog/aws/parsers/elasticache/base.rb', line 18 def end_element(name) case name when 'RequestId' @response['ResponseMetadata'][name] = value else super end end |
#reset ⇒ Object
9 10 11 12 |
# File 'lib/fog/aws/parsers/elasticache/base.rb', line 9 def reset super @response = { 'ResponseMetadata' => {} } end |
#start_element(name, attrs = []) ⇒ Object
14 15 16 |
# File 'lib/fog/aws/parsers/elasticache/base.rb', line 14 def start_element(name, attrs = []) super end |