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/compute/parsers/aws/describe_availability_zones.rb

33 lines
808 B
Ruby
Raw Normal View History

module Fog
module Parsers
module AWS
2010-09-08 14:40:02 -07:00
module Compute
class DescribeAvailabilityZones < Fog::Parsers::Base
def reset
@availability_zone = { 'messageSet' => [] }
2009-08-01 01:15:44 -07:00
@response = { 'availabilityZoneInfo' => [] }
end
def end_element(name)
case name
when 'item'
2009-08-01 01:15:44 -07:00
@response['availabilityZoneInfo'] << @availability_zone
@availability_zone = { 'messageSet' => [] }
when 'message'
@availability_zone['messageSet'] << @value
2009-08-01 01:15:44 -07:00
when 'regionName', 'zoneName', 'zoneState'
@availability_zone[name] = @value
when 'requestId'
2009-08-01 01:15:44 -07:00
@response[name] = @value
end
end
end
end
end
end
2010-09-08 14:40:02 -07:00
end