1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/parsers/compute/describe_classic_link_instances.rb
2015-01-11 20:05:26 +00:00

60 lines
1.6 KiB
Ruby

module Fog
module Parsers
module Compute
module AWS
class DescribeClassicLinkInstances < Fog::Parsers::Base
def reset
@instance = { 'tagSet' => {}, 'groups' => [] }
@response = { 'instancesSet' => [] }
@tag = {}
@group = {}
end
def start_element(name, attrs = [])
super
case name
when 'groupSet'
@in_group_set = true
when 'tagSet'
@in_tag_set = true
end
end
def end_element(name)
if @in_tag_set
case name
when 'item'
@instance['tagSet'][@tag['key']] = @tag['value']
@tag = {}
when 'key', 'value'
@tag[name] = value
when 'tagSet'
@in_tag_set = false
end
elsif @in_group_set
case name
when 'item'
@instance['groups'] << @group
@group = {}
when 'groupId', 'groupName'
@group[name] = value
when 'groupSet'
@in_group_set = false
end
else
case name
when 'vpcId', 'instanceId'
@instance[name] = value
when 'item'
@response['instancesSet'] << @instance
@instance = { 'tagSet' => {}, 'groups' => [] }
when 'requestId', 'nextToken'
@response[name] = value
end
end
end
end
end
end
end
end