class Fog::Parsers::AWS::CDN::Distribution

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/cdn/distribution.rb, line 19
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 'DNSName', 'OriginAccessIdentity', 'OriginProtocolPolicy'
    @response['DistributionConfig'][@origin][name] = 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 'HTTPPort', 'HTTPSPort'
    @response['DistributionConfig'][@origin][name] = value.to_i
  when 'InProgressInvalidationBatches'
    @response[name] = value.to_i
  when 'LastModifiedTime'
    @response[name] = Time.parse(value)
  when 'Protocol'
    @response['DistributionConfig']['RequireProtocols'] = value
  when 'Self'
    @response['DistributionConfig']['TrustedSigners'] << 'Self'
  end
end
reset() click to toggle source
# File lib/fog/aws/parsers/cdn/distribution.rb, line 6
def reset
  @response = { 'DistributionConfig' => { 'CNAME' => [], 'Logging' => {}, 'TrustedSigners' => [] } }
end
start_element(name, attrs = []) click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/cdn/distribution.rb, line 10
def start_element(name, attrs = [])
  super
  case name
  when 'CustomOrigin', 'S3Origin'
    @origin = name
    @response['DistributionConfig'][@origin] = {}
  end
end