Class/Module Index [+]

Quicksearch

Fog::Parsers::DNS::AWS::ListHostedZones

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/dns/list_hosted_zones.rb, line 14
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
reset() click to toggle source
# File lib/fog/aws/parsers/dns/list_hosted_zones.rb, line 8
def reset
  @hosted_zones = []
  @zone = {}
  @response = {}
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.