1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
module Fog
module Parsers
module AWS
module Compute
class DescribeNetworkInterfaceAttribute < NetworkInterfaceParser
def reset
@response = { }
@in_description = false
@in_group_set = false
@in_source_dest_check = false
@in_attachment = false
end
def start_element(name, attrs = [])
super
case name
when 'description'
@in_description = true
when 'groupSet'
@in_group_set = true
@group = {}
unless @response.key?('groupSet')
@response['groupSet'] = {}
end
when 'sourceDestCheck'
@in_source_dest_check = true
when 'attachment'
@in_attachment = true
@attachment = {}
end
end
def end_element(name)
if @in_description
case name
when 'value'
@response['description'] = value
when 'description'
@in_description = false
end
elsif @in_group_set
case name
when 'item'
@response['groupSet'][@group['groupId']] = @group['groupName']
@group = {}
when 'groupId', 'groupName'
@group[name] = value
when 'groupSet'
@in_group_set = false
end
elsif @in_source_dest_check
case name
when 'value'
@response['sourceDestCheck'] = (value == 'true')
when 'sourceDestCheck'
@in_source_dest_check = false
end
elsif @in_attachment
case name
when 'attachmentId', 'instanceId', 'instanceOwnerId', 'deviceIndex', 'status', 'attachTime', 'deleteOnTermination'
@attachment[name] = value
when 'attachment'
@response['attachment'] = @attachment
@in_attachment = false
end
else
case name
when 'requestId', 'networkInterfaceId'
@response[name] = value
end
end
end
end
end
end
end
end
|