Sha256: 4c32ce8da18564bbe119aa5bae5a6ecd07d208795ef1ae55eb8176d43fd0ff13
Contents?: true
Size: 861 Bytes
Versions: 61
Compression:
Stored size: 861 Bytes
Contents
module Fog module Parsers module DNS module AWS class ListHostedZones < Fog::Parsers::Base def reset @hosted_zones = [] @zone = {} @response = {} end def end_element(name) case name when 'Id' @zone[name] = value.sub('/hostedzone/', '') when 'Name', 'CallerReference', 'Comment' @zone[name] = value when 'HostedZone' @hosted_zones << @zone @zone = {} when 'HostedZones' @response['HostedZones'] = @hosted_zones when 'MaxItems' @response[name] = value.to_i when 'IsTruncated', 'Marker', 'NextMarker' @response[name] = value end end end end end end end
Version data entries
61 entries across 59 versions & 6 rubygems