Class: Fog::Parsers::CDN::AWS::StreamingDistribution

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

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from Base

#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value

Constructor Details

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

Instance Method Details

#end_element(name) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/fog/aws/parsers/cdn/streaming_distribution.rb', line 21

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

#resetObject



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

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

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



12
13
14
15
16
17
18
19
# File 'lib/fog/aws/parsers/cdn/streaming_distribution.rb', line 12

def start_element(name, attrs = [])
  super
  case name
  when 'CustomOrigin', 'S3Origin'
    @origin = name
    @response['StreamingDistributionConfig'][@origin] = {}
  end
end