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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
module Fog
module Parsers
module AWS
module Compute
class DescribeInstanceAttribute < Fog::Parsers::Base
def reset
@response = { }
@in_instanceType = false
@in_kernelId = false
@in_ramdiskId = false
@in_userData = false
@in_disableApiTermination = false
@in_instanceInitiatedShutdownBehavior = false
@in_rootDeviceName = false
@in_blockDeviceMapping = false
@in_productCodes = false
@in_ebsOptimized = false
@in_sriovNetSupport = false
@in_sourceDestCheck = false
@in_groupSet = false
end
def start_element(name, attrs = [])
super
case name
when 'instanceType'
@in_instanceType = true
when 'kernel'
@in_kernel = true
when 'ramdisk'
@in_ramdisk = true
when 'userData'
@in_userData = true
when 'disableApiTermination'
@in_disableApiTermination = true
when 'instanceInitiatedShutdownBehavior'
@in_instanceInitiatedShutdownBehavior = true
when 'rootDeviceName'
@in_rootDeviceName = true
when 'blockDeviceMapping'
@in_blockDeviceMapping = true
@block_device_mapping = {}
unless @response.key?('blockDeviceMapping')
@response['blockDeviceMapping'] = []
end
when 'productCodes'
@in_productCodes = true
unless @response.key?('productCodes')
@response['productCodes'] = []
end
when 'ebsOptimized'
@in_ebsOptimized = true
when 'sriovNetSupport'
@in_sriovNetSupport = true
when 'sourceDestCheck'
@in_sourceDestCheck = true
when 'groupSet'
@in_groupSet = true
@group = {}
unless @response.key?('groupSet')
@response['groupSet'] = []
end
end
end
def end_element(name)
if @in_instanceType
case name
when 'value'
@response['instanceType'] = value
when 'instanceType'
@in_instanceType = false
end
elsif @in_kernel
case name
when 'value'
@response['kernelId'] = value
when 'kernel'
@in_kernelId = false
end
elsif @in_ramdisk
case name
when 'value'
@response['ramdiskId'] = value
when 'ramdisk'
@in_ramdiskId = false
end
elsif @in_userData
case name
when 'value'
@response['userData'] = value
when 'userData'
@in_userData = false
end
elsif @in_disableApiTermination
case name
when 'value'
@response['disableApiTermination'] = (value == 'true')
when 'disableApiTermination'
@in_disableApiTermination = false
end
elsif @in_instanceInitiatedShutdownBehavior
case name
when 'value'
@response['instanceInitiatedShutdownBehavior'] = value
when 'instanceInitiatedShutdownBehavior'
@in_instanceInitiatedShutdownBehavior = false
end
elsif @in_rootDeviceName
case name
when 'value'
@response['rootDeviceName'] = value
when 'rootDeviceName'
@in_rootDeviceName = false
end
elsif @in_blockDeviceMapping
case name
when 'item'
@response["blockDeviceMapping"] << @block_device_mapping
@block_device_mapping = {}
when 'volumeId', 'status', 'deviceName'
@block_device_mapping[name] = value
when 'attachTime'
@block_device_mapping['attachTime'] = Time.parse(value)
when 'deleteOnTermination'
@block_device_mapping['deleteOnTermination'] = (value == 'true')
when 'blockDeviceMapping'
@in_blockDeviceMapping = false
end
elsif @in_productCodes
@response['productCodes'] << value
case name
when 'productCodes'
@in_productCodes = false
end
elsif @in_ebsOptimized
case name
when 'value'
@response['ebsOptimized'] = (value == 'true')
when 'ebsOptimized'
@in_ebsOptimized = false
end
elsif @in_sriovNetSupport
case name
when 'value'
@response["sriovNetSupport"] = value
when "sriovNetSupport"
@in_sriovNetSupport = false
end
elsif @in_sourceDestCheck
case name
when 'value'
@response['sourceDestCheck'] = (value == 'true')
when 'sourceDestCheck'
@in_sourceDestCheck = false
end
elsif @in_groupSet
case name
when 'item'
@response['groupSet'] << @group
@group = {}
when 'groupId'
@group["groupId"] = value
when 'groupSet'
@in_groupSet = false
end
else
case name
when 'requestId', 'instanceId'
@response[name] = value
end
end
end
end
end
end
end
end
|