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
|
# File 'lib/fog/aws/parsers/compute/run_instances.rb', line 23
def end_element(name)
case name
when 'amiLaunchIndex'
@instance[name] = value.to_i
when 'architecture', 'clientToken', 'dnsName', 'imageId',
'instanceId', 'instanceType', 'ipAddress', 'kernelId',
'keyName', 'privateDnsName', 'privateIpAddress', 'ramdiskId',
'reason', 'rootDeviceType'
@instance[name] = value
when 'availabilityZone', 'tenancy'
@instance['placement'][name] = value
when 'attachTime'
@block_device_mapping[name] = Time.parse(value)
when *@contexts
@context.pop
when 'code'
@instance['instanceState'][name] = value.to_i
when 'deleteOnTermination'
@block_device_mapping[name] = (value == 'true')
when 'deviceName', 'status', 'volumeId'
@block_device_mapping[name] = value
when 'groupId'
@response['groupSet'] << value
when 'groupName'
case @context.last
when 'groupSet'
@response['groupSet'] << value
when 'placement'
@instance['placement'][name] = value
end
when 'item'
case @context.last
when 'blockDeviceMapping'
@instance['blockDeviceMapping'] << @block_device_mapping
@block_device_mapping = {}
when nil
@response['instancesSet'] << @instance
@instance = { 'blockDeviceMapping' => [], 'instanceState' => {}, 'monitoring' => {}, 'placement' => {}, 'productCodes' => [] }
end
when 'launchTime'
@instance[name] = Time.parse(value)
when 'name'
@instance['instanceState'][name] = value
when 'ownerId', 'requestId', 'reservationId'
@response[name] = value
when 'product_code'
@instance['productCodes'] << value
when 'state'
@instance['monitoring'][name] = (value == 'true')
when 'subnetId'
@response[name] = value
when 'ebsOptimized'
@instance['ebsOptimized'] = (value == 'true')
end
end
|