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/zerigo/parsers/compute/create_zone.rb
Athir Nuaimi e081fac0b5 added support for 4 more zerigo dns methods: count_zones, get_zone, get_zone_stats, create_zone
items added but not yet tested.  Will continue to add the rest of the methods and then do a big testing cycle
2010-12-12 09:51:52 -05:00

26 lines
620 B
Ruby

module Fog
module Parsers
module Zerigo
module Compute
class CreateZone < Fog::Parsers::Base
def reset
@response = {}
end
def end_element(name)
case name
when 'default-ttl', 'id', 'nx-ttl', 'hosts-count'
@response[name] = @value.to_i
when 'created-at', 'custom-nameservers', 'custom-ns', 'domain', 'hostmaster', 'notes', 'ns1', 'ns-type', 'slave-nameservers', 'tag-list', 'updated-at', 'hosts'
@response[name] = @value
end
end
end
end
end
end
end