1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/parsers/dns/delete_hosted_zone.rb
Athir Nuaimi eb523fb80a [aws|dns] 1st pass at Route 53 support. All functions added but not tested
have added each of the Route 53 functions
list_hosted_zones is working.  rest still need to be tested

[aws|linode|slicehost|zerigo|dns] added complete test cases for linode & slicehost DNS.  Also added initial support for AWS Route 53
2010-12-16 00:29:42 -05:00

25 lines
443 B
Ruby

module Fog
module Parsers
module AWS
module DNS
class DeleteHostedZone < Fog::Parsers::Base
def reset
@response = {}
@response['ChangeInfo'] = {}
end
def end_element(name)
case name
when 'Id', 'Status', 'SubmittedAt'
@response['ChangeInfo'][name] = @value
end
end
end
end
end
end
end