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/get_zone_stats.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
489 B
Ruby

module Fog
module Parsers
module Zerigo
module Compute
class GetZoneStats < Fog::Parsers::Base
def reset
@response = {}
end
def end_element(name)
case name
when 'id', 'queries'
@response[name] = @value.to_i
when 'domain', 'period-begin', 'period-end'
@response[name] = @value
end
end
end
end
end
end
end