Class: Fog::Parsers::CDN::AWS::GetInvalidation
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::CDN::AWS::GetInvalidation
show all
- Defined in:
- lib/fog/aws/parsers/cdn/get_invalidation.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
16
17
18
19
20
21
22
23
24
25
|
# File 'lib/fog/aws/parsers/cdn/get_invalidation.rb', line 16
def end_element(name)
case name
when 'Path'
@response['InvalidationBatch'][name] << value
when 'Id', 'Status', 'CreateTime'
@response[name] = value
when 'CallerReference'
@response['InvalidationBatch'][name] = value
end
end
|
#reset ⇒ Object
8
9
10
|
# File 'lib/fog/aws/parsers/cdn/get_invalidation.rb', line 8
def reset
@response = { 'InvalidationBatch' => { 'Path' => [] } }
end
|
#start_element(name, attrs = []) ⇒ Object
12
13
14
|
# File 'lib/fog/aws/parsers/cdn/get_invalidation.rb', line 12
def start_element(name, attrs = [])
super
end
|