Class: Fog::Parsers::AWS::Elasticache::EventListParser
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Base
- Fog::Parsers::AWS::Elasticache::EventListParser
show all
- Defined in:
- lib/fog/aws/parsers/elasticache/event_list.rb
Instance Attribute Summary
Attributes inherited from Base
#response
Instance Method Summary
collapse
Methods inherited from Base
#attr_value, #characters, #initialize, #value
Instance Method Details
#end_element(name) ⇒ Object
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# File 'lib/fog/aws/parsers/elasticache/event_list.rb', line 22
def end_element(name)
case name
when 'Date'
@event[name] = DateTime.parse(value.strip)
when 'Message', 'SourceIdentifier', 'SourceType'
@event[name] = value ? value.strip : name
when 'Event'
@response['Events'] << @event unless @event.empty?
when 'IsTruncated', 'Marker', 'NextMarker'
@response[name] = value
else
super
end
end
|
#reset ⇒ Object
9
10
11
12
|
# File 'lib/fog/aws/parsers/elasticache/event_list.rb', line 9
def reset
super
@response['Events'] = []
end
|
#start_element(name, attrs = []) ⇒ Object
14
15
16
17
18
19
20
|
# File 'lib/fog/aws/parsers/elasticache/event_list.rb', line 14
def start_element(name, attrs = [])
super
case name
when 'Event'; then @event = {}
end
end
|