Class: Fog::Parsers::AWS::CDN::Distribution

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/parsers/cdn/distribution.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



12
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
# File 'lib/fog/aws/parsers/cdn/distribution.rb', line 12

def end_element(name)
  case name
  when 'AwsAccountNumber'
    @response['DistributionConfig']['TrustedSigners'] << @value
  when 'Bucket', 'Prefix'
    @response['DistributionConfig']['Logging'][name] = @value
  when 'CNAME'
    @response['DistributionConfig']['CNAME'] << @value
  when 'DomainName', 'Id', 'Status'
    @response[name] = @value
  when 'CallerReference', 'Comment', 'DefaultRootObject', 'Origin', 'OriginAccessIdentity'
    @response['DistributionConfig'][name] << @value
  when 'Enabled'
    if @value == 'true'
      @response['DistributionConfig'][name] = true
    else
      @response['DistributionConfig'][name] = false
    end
  when 'LastModifiedTime'
    @response[name] = Time.parse(@value)
  when 'Protocol'
    @response['DistributionConfig']['RequireProtocols'] = @value
  when 'Self'
    @response['DistributionConfig']['TrustedSigners'] << 'Self'
  end
end

#resetObject



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

def reset
  @response = { 'DistributionConfig' => { 'CNAME' => [], 'Logging' => {}, 'TrustedSigners' => [] } }
end