Class: Fog::Parsers::AWS::CDN::GetDistributionList

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

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from Base

#characters, #initialize, #start_element

Constructor Details

This class inherits a constructor from Fog::Parsers::Base

Instance Method Details

#end_element(name) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/fog/aws/parsers/cdn/get_distribution_list.rb', line 13

def end_element(name)
  case name
  when 'DistributionSummary'
    @response['DistributionSummary'] << @distribution_summary
    @distribution_summary = { 'CNAME' => [], 'TrustedSigners' => [] }
  when 'Comment', 'DomainName', 'Id', 'Origin', 'Status'
    @distribution_summary[name] = @value
  when 'CNAME'
    @distribution_summary[name] << @value
  when 'Enabled'
    if @value == 'true'
      @distribution_summary[name] = true
    else
      @distribution_summary[name] = false
    end
  when 'LastModifiedTime'
    @distribution_summary[name] = Time.parse(@value)
  when 'IsTruncated'
    if @value == 'true'
      @response[name] = true
    else
      @response[name] = false
    end
  when 'Marker', 'NextMarker'
    @response[name] = @value
  when 'MaxItems'
    @response[name] = @value.to_i
  end
end

#resetObject



8
9
10
11
# File 'lib/fog/aws/parsers/cdn/get_distribution_list.rb', line 8

def reset
  @distribution_summary = { 'CNAME' => [], 'TrustedSigners' => [] }
  @response = { 'DistributionSummary' => [] }
end