Class: Fog::Parsers::AWS::CDN::GetInvalidation

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/parsers/cdn/get_invalidation.rb

Instance Method Summary collapse

Instance Method Details

#end_element(name) ⇒ Object



14
15
16
17
18
19
20
21
22
23
# File 'lib/fog/aws/parsers/cdn/get_invalidation.rb', line 14

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

#resetObject



6
7
8
# File 'lib/fog/aws/parsers/cdn/get_invalidation.rb', line 6

def reset
  @response = { 'InvalidationBatch' => { 'Path' => [] } }
end

#start_element(name, attrs = []) ⇒ Object



10
11
12
# File 'lib/fog/aws/parsers/cdn/get_invalidation.rb', line 10

def start_element(name, attrs = [])
  super
end