nirvdrum-amazon-ec2 0.7.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. data/.gitignore +9 -0
  2. data/.yardopts +1 -0
  3. data/ChangeLog +304 -0
  4. data/LICENSE +66 -0
  5. data/README.rdoc +359 -0
  6. data/README_dev.rdoc +10 -0
  7. data/Rakefile +70 -0
  8. data/VERSION +1 -0
  9. data/amazon-ec2.gemspec +142 -0
  10. data/bin/ec2-gem-example.rb +137 -0
  11. data/bin/ec2-gem-profile.rb +10 -0
  12. data/bin/ec2sh +62 -0
  13. data/bin/setup.rb +29 -0
  14. data/deps.rip +1 -0
  15. data/lib/AWS.rb +321 -0
  16. data/lib/AWS/Autoscaling.rb +70 -0
  17. data/lib/AWS/Autoscaling/autoscaling.rb +273 -0
  18. data/lib/AWS/Cloudwatch.rb +32 -0
  19. data/lib/AWS/Cloudwatch/monitoring.rb +80 -0
  20. data/lib/AWS/EC2.rb +33 -0
  21. data/lib/AWS/EC2/availability_zones.rb +29 -0
  22. data/lib/AWS/EC2/console.rb +25 -0
  23. data/lib/AWS/EC2/devpay.rb +18 -0
  24. data/lib/AWS/EC2/elastic_ips.rb +86 -0
  25. data/lib/AWS/EC2/image_attributes.rb +133 -0
  26. data/lib/AWS/EC2/images.rb +117 -0
  27. data/lib/AWS/EC2/instances.rb +234 -0
  28. data/lib/AWS/EC2/keypairs.rb +47 -0
  29. data/lib/AWS/EC2/products.rb +21 -0
  30. data/lib/AWS/EC2/security_groups.rb +164 -0
  31. data/lib/AWS/EC2/snapshots.rb +102 -0
  32. data/lib/AWS/EC2/spot_instance_requests.rb +105 -0
  33. data/lib/AWS/EC2/volumes.rb +100 -0
  34. data/lib/AWS/ELB.rb +71 -0
  35. data/lib/AWS/ELB/load_balancers.rb +178 -0
  36. data/lib/AWS/RDS.rb +73 -0
  37. data/lib/AWS/RDS/rds.rb +522 -0
  38. data/lib/AWS/exceptions.rb +200 -0
  39. data/lib/AWS/responses.rb +21 -0
  40. data/perftools/ec2prof +0 -0
  41. data/perftools/ec2prof-results.dot +132 -0
  42. data/perftools/ec2prof-results.txt +100 -0
  43. data/perftools/ec2prof.symbols +102 -0
  44. data/test/test_Autoscaling_groups.rb +337 -0
  45. data/test/test_EC2.rb +68 -0
  46. data/test/test_EC2_availability_zones.rb +49 -0
  47. data/test/test_EC2_console.rb +54 -0
  48. data/test/test_EC2_elastic_ips.rb +144 -0
  49. data/test/test_EC2_image_attributes.rb +238 -0
  50. data/test/test_EC2_images.rb +229 -0
  51. data/test/test_EC2_instances.rb +611 -0
  52. data/test/test_EC2_keypairs.rb +123 -0
  53. data/test/test_EC2_products.rb +48 -0
  54. data/test/test_EC2_responses.rb +53 -0
  55. data/test/test_EC2_s3_xmlsimple.rb +80 -0
  56. data/test/test_EC2_security_groups.rb +205 -0
  57. data/test/test_EC2_snapshots.rb +83 -0
  58. data/test/test_EC2_spot_instance_requests.rb +178 -0
  59. data/test/test_EC2_volumes.rb +142 -0
  60. data/test/test_ELB_load_balancers.rb +239 -0
  61. data/test/test_RDS.rb +354 -0
  62. data/test/test_helper.rb +23 -0
  63. data/wsdl/2007-08-29.ec2.wsdl +1269 -0
  64. data/wsdl/2008-02-01.ec2.wsdl +1614 -0
  65. data/wsdl/2008-05-05.ec2.wsdl +2052 -0
  66. data/wsdl/2008-12-01.ec2.wsdl +2354 -0
  67. data/wsdl/2009-10-31.ec2.wsdl +4261 -0
  68. data/wsdl/2009-11-30.ec2.wsdl +4668 -0
  69. metadata +199 -0
@@ -0,0 +1,2052 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
3
+ xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://ec2.amazonaws.com/doc/2008-05-05/"
4
+ targetNamespace="http://ec2.amazonaws.com/doc/2008-05-05/">
5
+
6
+ <types>
7
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
8
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9
+ xmlns:tns="http://ec2.amazonaws.com/doc/2008-05-05/"
10
+ targetNamespace="http://ec2.amazonaws.com/doc/2008-05-05/"
11
+ elementFormDefault="qualified">
12
+
13
+ <xs:annotation>
14
+ <xs:documentation xml:lang="en">
15
+
16
+ </xs:documentation>
17
+ </xs:annotation>
18
+
19
+ <!-- RegisterImage request definitions -->
20
+
21
+ <xs:element name="RegisterImage" type="tns:RegisterImageType"/>
22
+
23
+ <xs:complexType name="RegisterImageType">
24
+ <xs:sequence>
25
+ <xs:element name="imageLocation" type="xs:string"/>
26
+ </xs:sequence>
27
+ </xs:complexType>
28
+
29
+ <!-- RegisterImage response definitions -->
30
+
31
+ <xs:element name="RegisterImageResponse" type="tns:RegisterImageResponseType"/>
32
+ <xs:complexType name="RegisterImageResponseType">
33
+ <xs:sequence>
34
+ <xs:element name="imageId" type="xs:string"/>
35
+ </xs:sequence>
36
+ </xs:complexType>
37
+
38
+ <!-- DeregisterImage request definitions -->
39
+
40
+ <xs:element name="DeregisterImage" type="tns:DeregisterImageType"/>
41
+
42
+ <xs:complexType name="DeregisterImageType">
43
+ <xs:sequence>
44
+ <xs:element name="imageId" type="xs:string"/>
45
+ </xs:sequence>
46
+ </xs:complexType>
47
+
48
+ <!-- DeregisterImage response definitions -->
49
+
50
+ <xs:element name="DeregisterImageResponse" type="tns:DeregisterImageResponseType"/>
51
+
52
+ <xs:complexType name="DeregisterImageResponseType">
53
+ <xs:sequence>
54
+ <xs:element name="return" type="xs:boolean"/>
55
+ </xs:sequence>
56
+ </xs:complexType>
57
+
58
+ <!-- CreateKeyPair request definitions -->
59
+
60
+ <xs:element name="CreateKeyPair" type="tns:CreateKeyPairType"/>
61
+
62
+ <xs:complexType name="CreateKeyPairType">
63
+ <xs:sequence>
64
+ <xs:element name="keyName" type="xs:string"/>
65
+ </xs:sequence>
66
+ </xs:complexType>
67
+
68
+ <!-- CreateKeyPair response definitions -->
69
+
70
+ <xs:element name="CreateKeyPairResponse" type="tns:CreateKeyPairResponseType"/>
71
+
72
+ <xs:complexType name="CreateKeyPairResponseType">
73
+ <xs:sequence>
74
+ <xs:element name="keyName" type="xs:string"/>
75
+ <xs:element name="keyFingerprint" type="xs:string"/>
76
+ <xs:element name="keyMaterial" type="xs:string"/>
77
+ </xs:sequence>
78
+ </xs:complexType>
79
+
80
+ <!-- DeleteKeyPair request definitions -->
81
+
82
+ <xs:element name="DeleteKeyPair" type="tns:DeleteKeyPairType" />
83
+
84
+ <xs:complexType name="DeleteKeyPairType">
85
+ <xs:sequence>
86
+ <xs:element name="keyName" type="xs:string"/>
87
+ </xs:sequence>
88
+ </xs:complexType>
89
+
90
+ <!-- DeleteKeyPair response definitions -->
91
+
92
+ <xs:element name="DeleteKeyPairResponse" type="tns:DeleteKeyPairResponseType"/>
93
+
94
+ <xs:complexType name="DeleteKeyPairResponseType">
95
+ <xs:sequence>
96
+ <xs:element name="return" type="xs:boolean"/>
97
+ </xs:sequence>
98
+ </xs:complexType>
99
+
100
+ <!-- DescribeKeyPairs Request definitions -->
101
+
102
+ <xs:element name="DescribeKeyPairs" type="tns:DescribeKeyPairsType"/>
103
+
104
+ <xs:complexType name="DescribeKeyPairsType">
105
+ <xs:sequence>
106
+ <xs:element name="keySet" type="tns:DescribeKeyPairsInfoType"/>
107
+ </xs:sequence>
108
+ </xs:complexType>
109
+
110
+ <xs:complexType name="DescribeKeyPairsInfoType">
111
+ <xs:sequence>
112
+ <xs:element name="item" type="tns:DescribeKeyPairsItemType" minOccurs="0" maxOccurs="unbounded"/>
113
+ </xs:sequence>
114
+ </xs:complexType>
115
+
116
+ <xs:complexType name="DescribeKeyPairsItemType">
117
+ <xs:sequence>
118
+ <xs:element name="keyName" type="xs:string"/>
119
+ </xs:sequence>
120
+ </xs:complexType>
121
+
122
+ <!-- DescribeKeyPairs Response definitions -->
123
+
124
+ <xs:element name="DescribeKeyPairsResponse" type="tns:DescribeKeyPairsResponseType"/>
125
+
126
+ <xs:complexType name="DescribeKeyPairsResponseType">
127
+ <xs:sequence>
128
+ <xs:element name="keySet" type="tns:DescribeKeyPairsResponseInfoType"/>
129
+ </xs:sequence>
130
+ </xs:complexType>
131
+
132
+ <xs:complexType name="DescribeKeyPairsResponseInfoType">
133
+ <xs:sequence>
134
+ <xs:element name="item" type="tns:DescribeKeyPairsResponseItemType" minOccurs="0" maxOccurs="unbounded"/>
135
+ </xs:sequence>
136
+ </xs:complexType>
137
+
138
+ <xs:complexType name="DescribeKeyPairsResponseItemType">
139
+ <xs:sequence>
140
+ <xs:element name="keyName" type="xs:string" />
141
+ <xs:element name="keyFingerprint" type="xs:string" />
142
+ </xs:sequence>
143
+ </xs:complexType>
144
+
145
+ <!-- RunInstances request definitions -->
146
+
147
+ <xs:element name="RunInstances" type="tns:RunInstancesType"/>
148
+
149
+ <xs:complexType name="RunInstancesType">
150
+ <xs:sequence>
151
+ <xs:element name="imageId" type="xs:string"/>
152
+ <xs:element name="minCount" type="xs:int"/>
153
+ <xs:element name="maxCount" type="xs:int"/>
154
+ <xs:element name="keyName" type="xs:string" minOccurs="0" />
155
+ <xs:element name="groupSet" type="tns:GroupSetType"/>
156
+ <xs:element name="additionalInfo" type="xs:string" minOccurs="0"/>
157
+ <xs:element name="userData" type="tns:UserDataType" minOccurs="0" maxOccurs="1"/>
158
+ <xs:element name="addressingType" type="xs:string" minOccurs="0" maxOccurs="1"/>
159
+ <xs:element name="instanceType" type="xs:string" />
160
+ <xs:element name="placement" type="tns:PlacementRequestType" minOccurs="0" maxOccurs="1" />
161
+ <xs:element name="kernelId" type="xs:string" minOccurs="0" maxOccurs="1"/>
162
+ <xs:element name="ramdiskId" type="xs:string" minOccurs="0" maxOccurs="1"/>
163
+ <xs:element name="blockDeviceMapping" type="tns:BlockDeviceMappingType" minOccurs="0" maxOccurs="1" />
164
+ </xs:sequence>
165
+ </xs:complexType>
166
+
167
+ <xs:complexType name="GroupSetType">
168
+ <xs:sequence>
169
+ <xs:element name="item" type="tns:GroupItemType" minOccurs="0" maxOccurs="unbounded"/>
170
+ </xs:sequence>
171
+ </xs:complexType>
172
+
173
+ <xs:complexType name="GroupItemType">
174
+ <xs:sequence>
175
+ <xs:element name="groupId" type="xs:string"/>
176
+ </xs:sequence>
177
+ </xs:complexType>
178
+
179
+ <xs:complexType name="UserDataType" mixed="true">
180
+ <xs:sequence>
181
+ <xs:element name="data" type="xs:string"/>
182
+ </xs:sequence>
183
+ <xs:attribute name="version" type="xs:string" use="required" fixed="1.0"/>
184
+ <xs:attribute name="encoding" type="xs:string" use="required" fixed="base64"/>
185
+ </xs:complexType>
186
+
187
+ <xs:complexType name="BlockDeviceMappingType">
188
+ <xs:sequence>
189
+ <xs:element name="item" type="tns:BlockDeviceMappingItemType" minOccurs="0" maxOccurs="unbounded" />
190
+ </xs:sequence>
191
+ </xs:complexType>
192
+
193
+ <xs:complexType name="BlockDeviceMappingItemType">
194
+ <xs:sequence>
195
+ <xs:element name="virtualName" type="xs:string"/>
196
+ <xs:element name="deviceName" type="xs:string"/>
197
+ </xs:sequence>
198
+ </xs:complexType>
199
+
200
+ <xs:complexType name="PlacementRequestType">
201
+ <xs:sequence>
202
+ <xs:element name="availabilityZone" type="xs:string" minOccurs="0" maxOccurs="1" />
203
+ </xs:sequence>
204
+ </xs:complexType>
205
+
206
+ <!-- RunInstances response definitions -->
207
+
208
+ <xs:element name="RunInstancesResponse" type="tns:ReservationInfoType"/>
209
+
210
+ <xs:complexType name="ReservationInfoType">
211
+ <xs:sequence>
212
+ <xs:element name="reservationId" type="xs:string"/>
213
+ <xs:element name="ownerId" type="xs:string"/>
214
+ <xs:element name="groupSet" type="tns:GroupSetType"/>
215
+ <xs:element name="instancesSet" type="tns:RunningInstancesSetType"/>
216
+ </xs:sequence>
217
+ </xs:complexType>
218
+
219
+ <xs:complexType name="RunningInstancesSetType">
220
+ <xs:sequence>
221
+ <xs:element name="item" type="tns:RunningInstancesItemType" minOccurs="1" maxOccurs="unbounded"/>
222
+ </xs:sequence>
223
+ </xs:complexType>
224
+
225
+ <xs:complexType name="RunningInstancesItemType">
226
+ <xs:sequence>
227
+ <xs:element name="instanceId" type="xs:string"/>
228
+ <xs:element name="imageId" type="xs:string"/>
229
+ <xs:element name="instanceState" type="tns:InstanceStateType"/>
230
+ <xs:element name="privateDnsName" type="xs:string"/>
231
+ <xs:element name="dnsName" type="xs:string"/>
232
+ <xs:element name="reason" type="xs:string" minOccurs="0"/>
233
+ <xs:element name="keyName" type="xs:string" minOccurs="0"/>
234
+ <xs:element name="amiLaunchIndex" type="xs:string" minOccurs="0" maxOccurs="1"/>
235
+ <xs:element name="productCodes" type="tns:ProductCodesSetType" minOccurs="0" maxOccurs="1" />
236
+ <xs:element name="instanceType" type="xs:string"/>
237
+ <xs:element name="launchTime" type="xs:dateTime" />
238
+ <xs:element name="placement" type="tns:PlacementResponseType" />
239
+ <xs:element name="kernelId" type="xs:string" minOccurs="0"/>
240
+ <xs:element name="ramdiskId" type="xs:string" minOccurs="0"/>
241
+ </xs:sequence>
242
+ </xs:complexType>
243
+
244
+ <xs:complexType name="PlacementResponseType">
245
+ <xs:sequence>
246
+ <xs:element name="availabilityZone" type="xs:string" />
247
+ </xs:sequence>
248
+ </xs:complexType>
249
+
250
+ <!-- GetConsoleOutput request definitions -->
251
+
252
+ <xs:element name="GetConsoleOutput" type="tns:GetConsoleOutputType"/>
253
+
254
+ <xs:complexType name="GetConsoleOutputType">
255
+ <xs:sequence>
256
+ <xs:element name="instanceId" type="xs:string"/>
257
+ </xs:sequence>
258
+ </xs:complexType>
259
+
260
+ <!-- GetConsoleOutput response definitions -->
261
+
262
+ <xs:element name="GetConsoleOutputResponse" type="tns:GetConsoleOutputResponseType"/>
263
+
264
+ <xs:complexType name="GetConsoleOutputResponseType">
265
+ <xs:sequence>
266
+ <xs:element name="instanceId" type="xs:string" />
267
+ <xs:element name="timestamp" type="xs:dateTime" />
268
+ <xs:element name="output" type="xs:string" />
269
+ </xs:sequence>
270
+ </xs:complexType>
271
+
272
+ <!-- TerminateInstances request definitions -->
273
+
274
+ <xs:element name="TerminateInstances" type="tns:TerminateInstancesType"/>
275
+
276
+ <xs:complexType name="TerminateInstancesType">
277
+ <xs:sequence>
278
+ <xs:element name="instancesSet" type="tns:TerminateInstancesInfoType"/>
279
+ </xs:sequence>
280
+ </xs:complexType>
281
+
282
+ <xs:complexType name="TerminateInstancesInfoType">
283
+ <xs:sequence>
284
+ <xs:element name="item" type="tns:TerminateInstancesItemType" minOccurs="1" maxOccurs="unbounded"/>
285
+ </xs:sequence>
286
+ </xs:complexType>
287
+
288
+ <xs:complexType name="TerminateInstancesItemType">
289
+ <xs:sequence>
290
+ <xs:element name="instanceId" type="xs:string"/>
291
+ </xs:sequence>
292
+ </xs:complexType>
293
+
294
+ <!-- TerminateInstances response definitions -->
295
+
296
+ <xs:element name="TerminateInstancesResponse" type="tns:TerminateInstancesResponseType"/>
297
+
298
+ <xs:complexType name="TerminateInstancesResponseType">
299
+ <xs:sequence>
300
+ <xs:element name="instancesSet" type="tns:TerminateInstancesResponseInfoType"/>
301
+ </xs:sequence>
302
+ </xs:complexType>
303
+
304
+ <xs:complexType name="TerminateInstancesResponseInfoType">
305
+ <xs:sequence>
306
+ <xs:element name="item" type="tns:TerminateInstancesResponseItemType" minOccurs="0" maxOccurs="unbounded"/>
307
+ </xs:sequence>
308
+ </xs:complexType>
309
+
310
+ <xs:complexType name="TerminateInstancesResponseItemType">
311
+ <xs:sequence>
312
+ <xs:element name="instanceId" type="xs:string" />
313
+ <xs:element name="shutdownState" type="tns:InstanceStateType" />
314
+ <xs:element name="previousState" type="tns:InstanceStateType" />
315
+ </xs:sequence>
316
+ </xs:complexType>
317
+
318
+ <!-- RebootInstances request definitions -->
319
+ <xs:element name="RebootInstances" type="tns:RebootInstancesType"/>
320
+
321
+ <xs:complexType name="RebootInstancesType">
322
+ <xs:sequence>
323
+ <xs:element name="instancesSet" type="tns:RebootInstancesInfoType"/>
324
+ </xs:sequence>
325
+ </xs:complexType>
326
+
327
+ <xs:complexType name="RebootInstancesInfoType">
328
+ <xs:sequence>
329
+ <xs:element name="item" type="tns:RebootInstancesItemType" minOccurs="1" maxOccurs="unbounded"/>
330
+ </xs:sequence>
331
+ </xs:complexType>
332
+
333
+ <xs:complexType name="RebootInstancesItemType">
334
+ <xs:sequence>
335
+ <xs:element name="instanceId" type="xs:string"/>
336
+ </xs:sequence>
337
+ </xs:complexType>
338
+
339
+ <!-- RebootInstances response definitions -->
340
+
341
+ <xs:element name="RebootInstancesResponse" type="tns:RebootInstancesResponseType"/>
342
+
343
+ <xs:complexType name="RebootInstancesResponseType">
344
+ <xs:sequence>
345
+ <xs:element name="return" type="xs:boolean"/>
346
+ </xs:sequence>
347
+ </xs:complexType>
348
+
349
+ <!-- DescribeInstances Request definitions -->
350
+
351
+ <xs:element name="DescribeInstances" type="tns:DescribeInstancesType"/>
352
+
353
+ <xs:complexType name="DescribeInstancesType">
354
+ <xs:sequence>
355
+ <xs:element name="instancesSet" type="tns:DescribeInstancesInfoType"/>
356
+ </xs:sequence>
357
+ </xs:complexType>
358
+
359
+ <xs:complexType name="DescribeInstancesInfoType">
360
+ <xs:sequence>
361
+ <xs:element name="item" type="tns:DescribeInstancesItemType" minOccurs="0" maxOccurs="unbounded"/>
362
+ </xs:sequence>
363
+ </xs:complexType>
364
+
365
+ <xs:complexType name="DescribeInstancesItemType">
366
+ <xs:sequence>
367
+ <xs:element name="instanceId" type="xs:string" />
368
+ </xs:sequence>
369
+ </xs:complexType>
370
+
371
+ <!-- DescribeInstances Response definitions -->
372
+
373
+ <xs:element name="DescribeInstancesResponse" type="tns:DescribeInstancesResponseType"/>
374
+
375
+ <xs:complexType name="DescribeInstancesResponseType">
376
+ <xs:sequence>
377
+ <xs:element name="reservationSet" type="tns:ReservationSetType"/>
378
+ </xs:sequence>
379
+ </xs:complexType>
380
+
381
+ <xs:complexType name="ReservationSetType">
382
+ <xs:sequence>
383
+ <xs:element name="item" type="tns:ReservationInfoType" minOccurs="0" maxOccurs="unbounded"/>
384
+ </xs:sequence>
385
+ </xs:complexType>
386
+
387
+ <!-- DescribeImages Request definitions -->
388
+
389
+ <xs:element name="DescribeImages" type="tns:DescribeImagesType"/>
390
+
391
+ <xs:complexType name="DescribeImagesType">
392
+ <xs:sequence>
393
+ <xs:element name="executableBySet" type="tns:DescribeImagesExecutableBySetType" minOccurs="0"/>
394
+ <xs:element name="imagesSet" type="tns:DescribeImagesInfoType"/>
395
+ <xs:element name="ownersSet" type="tns:DescribeImagesOwnersType" minOccurs="0"/>
396
+ </xs:sequence>
397
+ </xs:complexType>
398
+
399
+ <xs:complexType name="DescribeImagesInfoType">
400
+ <xs:sequence>
401
+ <xs:element name="item" type="tns:DescribeImagesItemType" minOccurs="0" maxOccurs="unbounded"/>
402
+ </xs:sequence>
403
+ </xs:complexType>
404
+
405
+ <xs:complexType name="DescribeImagesItemType">
406
+ <xs:sequence>
407
+ <xs:element name="imageId" type="xs:string"/>
408
+ </xs:sequence>
409
+ </xs:complexType>
410
+
411
+ <xs:complexType name="DescribeImagesOwnersType">
412
+ <xs:sequence>
413
+ <xs:element name="item" type="tns:DescribeImagesOwnerType" minOccurs="0" maxOccurs="unbounded"/>
414
+ </xs:sequence>
415
+ </xs:complexType>
416
+
417
+ <xs:complexType name="DescribeImagesOwnerType">
418
+ <xs:sequence>
419
+ <xs:element name="owner" type="xs:string"/>
420
+ </xs:sequence>
421
+ </xs:complexType>
422
+
423
+ <xs:complexType name="DescribeImagesExecutableBySetType" >
424
+ <xs:sequence>
425
+ <xs:element name="item" type="tns:DescribeImagesExecutableByType" minOccurs="0" maxOccurs="unbounded"/>
426
+ </xs:sequence>
427
+ </xs:complexType>
428
+
429
+ <xs:complexType name="DescribeImagesExecutableByType" >
430
+ <xs:sequence>
431
+ <xs:element name="user" type="xs:string" />
432
+ </xs:sequence>
433
+ </xs:complexType>
434
+
435
+ <!-- DescribeImages Response definitions -->
436
+
437
+ <xs:element name="DescribeImagesResponse" type="tns:DescribeImagesResponseType"/>
438
+
439
+ <xs:complexType name="DescribeImagesResponseType">
440
+ <xs:sequence>
441
+ <xs:element name="imagesSet" type="tns:DescribeImagesResponseInfoType"/>
442
+ </xs:sequence>
443
+ </xs:complexType>
444
+
445
+ <xs:complexType name="DescribeImagesResponseInfoType">
446
+ <xs:sequence>
447
+ <xs:element name="item" type="tns:DescribeImagesResponseItemType" minOccurs="0" maxOccurs="unbounded"/>
448
+ </xs:sequence>
449
+ </xs:complexType>
450
+
451
+ <xs:complexType name="DescribeImagesResponseItemType">
452
+ <xs:sequence>
453
+ <xs:element name="imageId" type="xs:string" />
454
+ <xs:element name="imageLocation" type="xs:string" />
455
+ <xs:element name="imageState" type="xs:string" />
456
+ <xs:element name="imageOwnerId" type="xs:string" />
457
+ <xs:element name="isPublic" type="xs:boolean" />
458
+ <xs:element name="productCodes" type="tns:ProductCodesSetType" minOccurs="0" />
459
+ <xs:element name="architecture" type="xs:string" minOccurs="0"/>
460
+ <xs:element name="imageType" type="xs:string" minOccurs="0"/>
461
+ <xs:element name="kernelId" type="xs:string" minOccurs="0"/>
462
+ <xs:element name="ramdiskId" type="xs:string" minOccurs="0"/>
463
+ </xs:sequence>
464
+ </xs:complexType>
465
+
466
+ <!-- CreateSecurityGroup Request definitions -->
467
+
468
+ <xs:element name="CreateSecurityGroup"
469
+ type="tns:CreateSecurityGroupType"/>
470
+
471
+ <xs:complexType name="CreateSecurityGroupType">
472
+ <xs:sequence>
473
+ <xs:element name="groupName" type="xs:string"/>
474
+ <xs:element name="groupDescription" type="xs:string"/>
475
+ </xs:sequence>
476
+ </xs:complexType>
477
+
478
+ <!-- CreateSecurityGroup Response definitions -->
479
+
480
+ <xs:element name="CreateSecurityGroupResponse"
481
+ type="tns:CreateSecurityGroupResponseType"/>
482
+
483
+ <xs:complexType name="CreateSecurityGroupResponseType">
484
+ <xs:sequence>
485
+ <xs:element name="return" type="xs:boolean"/>
486
+ </xs:sequence>
487
+ </xs:complexType>
488
+
489
+ <!-- DeleteSecurityGroup Request definitions -->
490
+
491
+ <xs:element name="DeleteSecurityGroup"
492
+ type="tns:DeleteSecurityGroupType"/>
493
+
494
+ <xs:complexType name="DeleteSecurityGroupType">
495
+ <xs:sequence>
496
+ <xs:element name="groupName" type="xs:string"/>
497
+ </xs:sequence>
498
+ </xs:complexType>
499
+
500
+ <!-- DeleteSecurityGroup Response definitions -->
501
+
502
+ <xs:element name="DeleteSecurityGroupResponse"
503
+ type="tns:DeleteSecurityGroupResponseType"/>
504
+
505
+ <xs:complexType name="DeleteSecurityGroupResponseType">
506
+ <xs:sequence>
507
+ <xs:element name="return" type="xs:boolean"/>
508
+ </xs:sequence>
509
+ </xs:complexType>
510
+
511
+ <!-- DescribeSecurityGroups Request definitions -->
512
+
513
+ <xs:element name="DescribeSecurityGroups"
514
+ type="tns:DescribeSecurityGroupsType"/>
515
+
516
+ <xs:complexType name="DescribeSecurityGroupsType">
517
+ <xs:sequence>
518
+ <xs:element name="securityGroupSet" type="tns:DescribeSecurityGroupsSetType"/>
519
+ </xs:sequence>
520
+ </xs:complexType>
521
+
522
+ <xs:complexType name="DescribeSecurityGroupsSetType">
523
+ <xs:sequence>
524
+ <xs:element name="item" type="tns:DescribeSecurityGroupsSetItemType"
525
+ minOccurs="0" maxOccurs="unbounded"/>
526
+ </xs:sequence>
527
+ </xs:complexType>
528
+
529
+ <xs:complexType name="DescribeSecurityGroupsSetItemType">
530
+ <xs:sequence>
531
+ <xs:element name="groupName" type="xs:string"/>
532
+ </xs:sequence>
533
+ </xs:complexType>
534
+
535
+ <!-- DescribeSecurityGroups Response definitions -->
536
+
537
+ <xs:element name="DescribeSecurityGroupsResponse"
538
+ type="tns:DescribeSecurityGroupsResponseType"/>
539
+
540
+ <xs:complexType name="DescribeSecurityGroupsResponseType">
541
+ <xs:sequence>
542
+ <xs:element name="securityGroupInfo" type="tns:SecurityGroupSetType"/>
543
+ </xs:sequence>
544
+ </xs:complexType>
545
+
546
+ <xs:complexType name="IpPermissionSetType">
547
+ <xs:sequence>
548
+ <xs:element name="item" type="tns:IpPermissionType"
549
+ minOccurs="0" maxOccurs="unbounded"/>
550
+ </xs:sequence>
551
+ </xs:complexType>
552
+
553
+ <xs:complexType name="IpPermissionType">
554
+ <xs:sequence>
555
+ <xs:element name="ipProtocol" type="xs:string"/>
556
+ <xs:element name="fromPort" type="xs:int"/>
557
+ <xs:element name="toPort" type="xs:int"/>
558
+ <xs:element name="groups" type="tns:UserIdGroupPairSetType"/>
559
+ <xs:element name="ipRanges" type="tns:IpRangeSetType"/>
560
+ </xs:sequence>
561
+ </xs:complexType>
562
+
563
+ <xs:complexType name="IpRangeSetType">
564
+ <xs:sequence>
565
+ <xs:element name="item" type="tns:IpRangeItemType"
566
+ minOccurs="0" maxOccurs="unbounded"/>
567
+ </xs:sequence>
568
+ </xs:complexType>
569
+
570
+ <xs:complexType name="IpRangeItemType">
571
+ <xs:sequence>
572
+ <xs:element name="cidrIp" type="xs:string"/>
573
+ </xs:sequence>
574
+ </xs:complexType>
575
+
576
+ <xs:complexType name="UserIdGroupPairSetType">
577
+ <xs:sequence>
578
+ <xs:element name="item" type="tns:UserIdGroupPairType"
579
+ minOccurs="0" maxOccurs="unbounded"/>
580
+ </xs:sequence>
581
+ </xs:complexType>
582
+
583
+ <xs:complexType name="UserIdGroupPairType">
584
+ <xs:sequence>
585
+ <xs:element name="userId" type="xs:string"/>
586
+ <xs:element name="groupName" type="xs:string"/>
587
+ </xs:sequence>
588
+ </xs:complexType>
589
+
590
+ <xs:complexType name="SecurityGroupSetType">
591
+ <xs:sequence>
592
+ <xs:element name="item" type="tns:SecurityGroupItemType"
593
+ minOccurs="0" maxOccurs="unbounded"/>
594
+ </xs:sequence>
595
+ </xs:complexType>
596
+
597
+ <xs:complexType name="SecurityGroupItemType">
598
+ <xs:sequence>
599
+ <xs:element name="ownerId" type="xs:string"/>
600
+ <xs:element name="groupName" type="xs:string"/>
601
+ <xs:element name="groupDescription" type="xs:string"/>
602
+ <xs:element name="ipPermissions" type="tns:IpPermissionSetType"/>
603
+ </xs:sequence>
604
+ </xs:complexType>
605
+
606
+ <!-- AuthorizeSecurityGroupIngress Request definitions -->
607
+
608
+ <xs:annotation>
609
+ <xs:documentation xml:lang="en">
610
+ This API call should be treated as under development. The current API specification supports a richer
611
+ set of semantics than we intend to retain in future releases, and the details for this call are still under
612
+ review. Semantically, clients can depend on fine grained CIDR based access control (as currently exposed) but
613
+ for group based access control clients should only depend on the ability to control access for an entire
614
+ (user,group) tuple. Fine grained group based access control at the protocol and port or icmp code:type level
615
+ are not guaranteed to be supported in future releases of this API.
616
+ </xs:documentation>
617
+ </xs:annotation>
618
+
619
+ <xs:element name="AuthorizeSecurityGroupIngress"
620
+ type="tns:AuthorizeSecurityGroupIngressType"/>
621
+
622
+ <xs:complexType name="AuthorizeSecurityGroupIngressType">
623
+ <xs:sequence>
624
+ <xs:element name="userId" type="xs:string"/>
625
+ <xs:element name="groupName" type="xs:string"/>
626
+ <xs:element name="ipPermissions" type="tns:IpPermissionSetType"/>
627
+ </xs:sequence>
628
+ </xs:complexType>
629
+
630
+ <!-- AuthorizeSecurityGroupIngress Response definitions -->
631
+
632
+ <xs:element name="AuthorizeSecurityGroupIngressResponse"
633
+ type="tns:AuthorizeSecurityGroupIngressResponseType"/>
634
+
635
+ <xs:complexType name="AuthorizeSecurityGroupIngressResponseType">
636
+ <xs:sequence>
637
+ <xs:element name="return" type="xs:boolean"/>
638
+ </xs:sequence>
639
+ </xs:complexType>
640
+
641
+ <!-- RevokeSecurityGroupIngress Request definitions -->
642
+
643
+ <xs:annotation>
644
+ <xs:documentation xml:lang="en">
645
+ This API call should be treated as under development. The current API specification supports a richer
646
+ set of semantics than we intend to retain in future releases, and the details for this call are still under
647
+ review. Semantically, clients can depend on fine grained CIDR based access control (as currently exposed) but
648
+ for group based access control clients should only depend on the ability to control access for an entire
649
+ (user,group) tuple. Fine grained group based access control at the protocol and port or icmp code:type level
650
+ are not guaranteed to be supported in future releases of this API.
651
+ </xs:documentation>
652
+ </xs:annotation>
653
+
654
+ <xs:element name="RevokeSecurityGroupIngress"
655
+ type="tns:RevokeSecurityGroupIngressType"/>
656
+
657
+ <xs:complexType name="RevokeSecurityGroupIngressType">
658
+ <xs:sequence>
659
+ <xs:element name="userId" type="xs:string"/>
660
+ <xs:element name="groupName" type="xs:string"/>
661
+ <xs:element name="ipPermissions" type="tns:IpPermissionSetType"/>
662
+ </xs:sequence>
663
+ </xs:complexType>
664
+
665
+ <!-- RevokeSecurityGroupIngress Response definitions -->
666
+
667
+ <xs:element name="RevokeSecurityGroupIngressResponse"
668
+ type="tns:RevokeSecurityGroupIngressResponseType"/>
669
+
670
+ <xs:complexType name="RevokeSecurityGroupIngressResponseType">
671
+ <xs:sequence>
672
+ <xs:element name="return" type="xs:boolean"/>
673
+ </xs:sequence>
674
+ </xs:complexType>
675
+
676
+ <!-- Instance state type definition -->
677
+
678
+ <xs:complexType name="InstanceStateType">
679
+ <xs:sequence>
680
+ <xs:element name="code" type="xs:int"/>
681
+ <xs:element name="name" type="xs:string"/>
682
+ </xs:sequence>
683
+ </xs:complexType>
684
+
685
+ <!-- ModifyImageAttribute Definitions -->
686
+
687
+ <xs:element name="ModifyImageAttribute"
688
+ type="tns:ModifyImageAttributeType"/>
689
+
690
+ <xs:complexType name="ModifyImageAttributeType">
691
+ <xs:sequence>
692
+ <xs:element name="imageId" type="xs:string"/>
693
+ <xs:choice>
694
+ <xs:element name="launchPermission" type="tns:LaunchPermissionOperationType"/>
695
+ <xs:element name="productCodes" type="tns:ProductCodeListType" />
696
+ </xs:choice>
697
+ </xs:sequence>
698
+ </xs:complexType>
699
+
700
+ <xs:complexType name="LaunchPermissionOperationType">
701
+ <xs:choice>
702
+ <xs:element name="add" type="tns:LaunchPermissionListType"/>
703
+ <xs:element name="remove" type="tns:LaunchPermissionListType"/>
704
+ </xs:choice>
705
+ </xs:complexType>
706
+
707
+ <xs:complexType name="LaunchPermissionListType">
708
+ <xs:sequence>
709
+ <xs:element name="item" type="tns:LaunchPermissionItemType" minOccurs="0" maxOccurs="unbounded"/>
710
+ </xs:sequence>
711
+ </xs:complexType>
712
+
713
+ <xs:complexType name="LaunchPermissionItemType">
714
+ <xs:choice>
715
+ <xs:element name="userId" type="xs:string"/>
716
+ <xs:element name="group" type="xs:string" />
717
+ </xs:choice>
718
+ </xs:complexType>
719
+
720
+ <xs:complexType name="ProductCodeListType">
721
+ <xs:sequence>
722
+ <xs:element name="item" type="tns:ProductCodeItemType" minOccurs="0" maxOccurs="unbounded"/>
723
+ </xs:sequence>
724
+ </xs:complexType>
725
+
726
+ <xs:complexType name="ProductCodeItemType">
727
+ <xs:choice>
728
+ <xs:element name="productCode" type="xs:string"/>
729
+ </xs:choice>
730
+ </xs:complexType>
731
+
732
+ <!-- ModifyImageAttributeResponse Definitions -->
733
+
734
+ <xs:element name="ModifyImageAttributeResponse"
735
+ type="tns:ModifyImageAttributeResponseType" />
736
+
737
+ <xs:complexType name="ModifyImageAttributeResponseType">
738
+ <xs:sequence>
739
+ <xs:element name="return" type="xs:boolean"/>
740
+ </xs:sequence>
741
+ </xs:complexType>
742
+
743
+ <!-- ResetImageAttribute Definitions -->
744
+
745
+ <xs:element name="ResetImageAttribute"
746
+ type="tns:ResetImageAttributeType" />
747
+
748
+ <xs:complexType name="ResetImageAttributeType" >
749
+ <xs:sequence>
750
+ <xs:element name="imageId" type="xs:string"/>
751
+ <xs:group ref="tns:ResetImageAttributesGroup"/>
752
+ </xs:sequence>
753
+ </xs:complexType>
754
+
755
+ <xs:group name="ResetImageAttributesGroup" >
756
+ <xs:choice>
757
+ <xs:element name="launchPermission" type="tns:EmptyElementType"/>
758
+ </xs:choice>
759
+ </xs:group>
760
+
761
+ <xs:complexType name="EmptyElementType">
762
+ </xs:complexType>
763
+
764
+ <!-- ResetImageAttributeResponse Definitions -->
765
+
766
+ <xs:element name="ResetImageAttributeResponse"
767
+ type="tns:ResetImageAttributeResponseType" />
768
+
769
+ <xs:complexType name="ResetImageAttributeResponseType">
770
+ <xs:sequence>
771
+ <xs:element name="return" type="xs:boolean" />
772
+ </xs:sequence>
773
+ </xs:complexType>
774
+
775
+ <!-- DescribeImageAttribute Definitions -->
776
+
777
+ <xs:element name="DescribeImageAttribute"
778
+ type="tns:DescribeImageAttributeType" />
779
+
780
+ <xs:complexType name="DescribeImageAttributeType">
781
+ <xs:sequence>
782
+ <xs:element name="imageId" type="xs:string" />
783
+ <xs:group ref="tns:DescribeImageAttributesGroup" />
784
+ </xs:sequence>
785
+ </xs:complexType>
786
+
787
+ <xs:group name="DescribeImageAttributesGroup" >
788
+ <xs:choice>
789
+ <xs:element name="launchPermission" type="tns:EmptyElementType"/>
790
+ <xs:element name="productCodes" type="tns:EmptyElementType" />
791
+ <xs:element name="kernel" type="tns:EmptyElementType" />
792
+ <xs:element name="ramdisk" type="tns:EmptyElementType" />
793
+ <xs:element name="blockDeviceMapping" type="tns:EmptyElementType" />
794
+ </xs:choice>
795
+ </xs:group>
796
+
797
+ <!-- DescribeImageAttributeResponse Definitions -->
798
+
799
+ <xs:element name="DescribeImageAttributeResponse"
800
+ type="tns:DescribeImageAttributeResponseType" />
801
+
802
+ <xs:complexType name="DescribeImageAttributeResponseType">
803
+ <xs:sequence>
804
+ <xs:element name="imageId" type="xs:string" />
805
+ <xs:choice>
806
+ <xs:element name="launchPermission" type="tns:LaunchPermissionListType"/>
807
+ <xs:element name="productCodes" type="tns:ProductCodeListType" />
808
+ <xs:element name="kernel" type="tns:NullableAttributeValueType" />
809
+ <xs:element name="ramdisk" type="tns:NullableAttributeValueType" />
810
+ <xs:element name="blockDeviceMapping" type="tns:BlockDeviceMappingType"/>
811
+ </xs:choice>
812
+ </xs:sequence>
813
+ </xs:complexType>
814
+
815
+ <xs:complexType name="NullableAttributeValueType">
816
+ <xs:sequence>
817
+ <xs:element name="value" type="xs:string" minOccurs="0"/>
818
+ </xs:sequence>
819
+ </xs:complexType>
820
+
821
+ <xs:complexType name="AttributeValueType">
822
+ <xs:sequence>
823
+ <xs:element name="value" type="xs:string"/>
824
+ </xs:sequence>
825
+ </xs:complexType>
826
+
827
+ <!-- ConfirmProductInstance Definitions -->
828
+
829
+ <xs:element name="ConfirmProductInstance"
830
+ type="tns:ConfirmProductInstanceType" />
831
+
832
+ <xs:complexType name="ConfirmProductInstanceType" >
833
+ <xs:sequence>
834
+ <xs:element name="productCode" type="xs:string" />
835
+ <xs:element name="instanceId" type="xs:string"/>
836
+ </xs:sequence>
837
+ </xs:complexType>
838
+
839
+ <xs:complexType name="ProductCodesSetType" >
840
+ <xs:sequence>
841
+ <xs:element name="item" type="tns:ProductCodesSetItemType" minOccurs="0" maxOccurs="unbounded" />
842
+ </xs:sequence>
843
+ </xs:complexType>
844
+
845
+ <xs:complexType name="ProductCodesSetItemType" >
846
+ <xs:sequence>
847
+ <xs:element name="productCode" type="xs:string" />
848
+ </xs:sequence>
849
+ </xs:complexType>
850
+
851
+ <!-- ConfirmProductInstanceResponse Definitions -->
852
+
853
+ <xs:element name="ConfirmProductInstanceResponse"
854
+ type="tns:ConfirmProductInstanceResponseType" />
855
+
856
+ <xs:complexType name="ConfirmProductInstanceResponseType">
857
+ <xs:sequence>
858
+ <xs:element name="return" type="xs:boolean" />
859
+ <xs:element name="ownerId" type="xs:string" minOccurs="0" />
860
+ </xs:sequence>
861
+ </xs:complexType>
862
+
863
+ <!-- DescribeAvailabilityZones Definitions -->
864
+
865
+ <xs:element name="DescribeAvailabilityZones"
866
+ type="tns:DescribeAvailabilityZonesType" />
867
+
868
+ <xs:complexType name="DescribeAvailabilityZonesType">
869
+ <xs:sequence>
870
+ <xs:element name="availabilityZoneSet" type="tns:DescribeAvailabilityZonesSetType"/>
871
+ </xs:sequence>
872
+ </xs:complexType>
873
+
874
+ <xs:complexType name="DescribeAvailabilityZonesSetType">
875
+ <xs:sequence>
876
+ <xs:element name="item" type="tns:DescribeAvailabilityZonesSetItemType" minOccurs="0" maxOccurs="unbounded"/>
877
+ </xs:sequence>
878
+ </xs:complexType>
879
+
880
+ <xs:complexType name="DescribeAvailabilityZonesSetItemType">
881
+ <xs:sequence>
882
+ <xs:element name="zoneName" type="xs:string"/>
883
+ </xs:sequence>
884
+ </xs:complexType>
885
+
886
+ <!-- DescribeAvailabilityZones Response definitions -->
887
+
888
+ <xs:element name="DescribeAvailabilityZonesResponse"
889
+ type="tns:DescribeAvailabilityZonesResponseType"/>
890
+
891
+ <xs:complexType name="DescribeAvailabilityZonesResponseType">
892
+ <xs:sequence>
893
+ <xs:element name="availabilityZoneInfo" type="tns:AvailabilityZoneSetType"/>
894
+ </xs:sequence>
895
+ </xs:complexType>
896
+
897
+ <xs:complexType name="AvailabilityZoneSetType">
898
+ <xs:sequence>
899
+ <xs:element name="item" type="tns:AvailabilityZoneItemType" minOccurs="0" maxOccurs="unbounded"/>
900
+ </xs:sequence>
901
+ </xs:complexType>
902
+
903
+ <xs:complexType name="AvailabilityZoneItemType">
904
+ <xs:sequence>
905
+ <xs:element name="zoneName" type="xs:string"/>
906
+ <xs:element name="zoneState" type="xs:string"/>
907
+ </xs:sequence>
908
+ </xs:complexType>
909
+
910
+ <!-- AllocateAddress definitions -->
911
+
912
+ <xs:element name='AllocateAddress' type='tns:AllocateAddressType'/>
913
+ <xs:complexType name='AllocateAddressType'/>
914
+
915
+ <!-- AllocateAddressResponse definitions -->
916
+
917
+ <xs:element name='AllocateAddressResponse' type='tns:AllocateAddressResponseType'/>
918
+ <xs:complexType name='AllocateAddressResponseType'>
919
+ <xs:sequence>
920
+ <xs:element name='publicIp' type='xs:string'/>
921
+ </xs:sequence>
922
+ </xs:complexType>
923
+
924
+ <!-- ReleaseAddress definitions -->
925
+
926
+ <xs:element name='ReleaseAddress' type='tns:ReleaseAddressType'/>
927
+ <xs:complexType name='ReleaseAddressType'>
928
+ <xs:sequence>
929
+ <xs:element name='publicIp' type='xs:string'/>
930
+ </xs:sequence>
931
+ </xs:complexType>
932
+
933
+ <!-- ReleaseAddressResponse definitions -->
934
+
935
+ <xs:element name='ReleaseAddressResponse' type='tns:ReleaseAddressResponseType'/>
936
+ <xs:complexType name='ReleaseAddressResponseType'>
937
+ <xs:sequence>
938
+ <xs:element name='return' type='xs:boolean'/>
939
+ </xs:sequence>
940
+ </xs:complexType>
941
+
942
+ <!-- DescribeAddresses definitions -->
943
+
944
+ <xs:element name='DescribeAddresses' type='tns:DescribeAddressesType'/>
945
+ <xs:complexType name='DescribeAddressesType'>
946
+ <xs:sequence>
947
+ <xs:element name='publicIpsSet' type='tns:DescribeAddressesInfoType'/>
948
+ </xs:sequence>
949
+ </xs:complexType>
950
+
951
+ <xs:complexType name='DescribeAddressesInfoType'>
952
+ <xs:sequence>
953
+ <xs:element name='item' maxOccurs='unbounded' minOccurs='0' type='tns:DescribeAddressesItemType'/>
954
+ </xs:sequence>
955
+
956
+ </xs:complexType>
957
+
958
+ <xs:complexType name='DescribeAddressesItemType'>
959
+ <xs:sequence>
960
+ <xs:element name='publicIp' type='xs:string'/>
961
+ </xs:sequence>
962
+ </xs:complexType>
963
+
964
+ <!-- DescribeAddressesResponse definitions -->
965
+
966
+ <xs:element name='DescribeAddressesResponse' type='tns:DescribeAddressesResponseType'/>
967
+ <xs:complexType name='DescribeAddressesResponseType'>
968
+ <xs:sequence>
969
+ <xs:element name='addressesSet' type='tns:DescribeAddressesResponseInfoType'/>
970
+ </xs:sequence>
971
+ </xs:complexType>
972
+
973
+ <xs:complexType name='DescribeAddressesResponseInfoType'>
974
+ <xs:sequence>
975
+ <xs:element name='item' maxOccurs='unbounded' minOccurs='0' type='tns:DescribeAddressesResponseItemType'/>
976
+ </xs:sequence>
977
+ </xs:complexType>
978
+
979
+ <xs:complexType name='DescribeAddressesResponseItemType'>
980
+ <xs:sequence>
981
+ <xs:element name='publicIp' type='xs:string'/>
982
+ <xs:element name='instanceId' minOccurs='0' type='xs:string'/>
983
+ </xs:sequence>
984
+ </xs:complexType>
985
+
986
+ <!-- AssociateAddress definitions -->
987
+
988
+ <xs:element name='AssociateAddress' type='tns:AssociateAddressType'/>
989
+ <xs:complexType name='AssociateAddressType'>
990
+ <xs:sequence>
991
+ <xs:element name='publicIp' type='xs:string'/>
992
+ <xs:element name='instanceId' type='xs:string'/>
993
+ </xs:sequence>
994
+ </xs:complexType>
995
+
996
+ <!-- AssociateAddressResponse definitions -->
997
+
998
+ <xs:element name='AssociateAddressResponse' type='tns:AssociateAddressResponseType'/>
999
+ <xs:complexType name='AssociateAddressResponseType'>
1000
+ <xs:sequence>
1001
+ <xs:element name='return' type='xs:boolean'/>
1002
+ </xs:sequence>
1003
+ </xs:complexType>
1004
+
1005
+ <!-- DisassociateAddress definitions -->
1006
+
1007
+ <xs:element name='DisassociateAddress' type='tns:DisassociateAddressType'/>
1008
+ <xs:complexType name='DisassociateAddressType'>
1009
+ <xs:sequence>
1010
+ <xs:element name='publicIp' type='xs:string'/>
1011
+ </xs:sequence>
1012
+ </xs:complexType>
1013
+
1014
+ <!-- DisassociateAddressResponse definitions -->
1015
+
1016
+ <xs:element name='DisassociateAddressResponse' type='tns:DisassociateAddressResponseType'/>
1017
+ <xs:complexType name='DisassociateAddressResponseType'>
1018
+ <xs:sequence>
1019
+ <xs:element name='return' type='xs:boolean'/>
1020
+ </xs:sequence>
1021
+ </xs:complexType>
1022
+
1023
+ <!-- CreateVolume request definitions -->
1024
+
1025
+ <xs:element name="CreateVolume" type="tns:CreateVolumeType"/>
1026
+
1027
+ <xs:complexType name="CreateVolumeType">
1028
+ <xs:sequence>
1029
+ <xs:element name="size" type="xs:string" minOccurs="0"/>
1030
+ <xs:element name="snapshotId" type="xs:string" minOccurs="0"/>
1031
+ <xs:element name="availabilityZone" type="xs:string"/>
1032
+ </xs:sequence>
1033
+ </xs:complexType>
1034
+
1035
+ <!-- CreateVolume response definitions -->
1036
+
1037
+ <xs:element name="CreateVolumeResponse" type="tns:CreateVolumeResponseType"/>
1038
+
1039
+ <xs:complexType name="CreateVolumeResponseType">
1040
+ <xs:sequence>
1041
+ <xs:element name="volumeId" type="xs:string"/>
1042
+ <xs:element name="size" type="xs:string"/>
1043
+ <xs:element name="snapshotId" type="xs:string"/>
1044
+ <xs:element name="availabilityZone" type="xs:string"/>
1045
+ <xs:element name="status" type="xs:string"/>
1046
+ <xs:element name="createTime" type="xs:dateTime"/>
1047
+ </xs:sequence>
1048
+ </xs:complexType>
1049
+
1050
+ <!-- DeleteVolume request definitions -->
1051
+
1052
+ <xs:element name="DeleteVolume" type="tns:DeleteVolumeType"/>
1053
+
1054
+ <xs:complexType name="DeleteVolumeType">
1055
+ <xs:sequence>
1056
+ <xs:element name="volumeId" type="xs:string"/>
1057
+ </xs:sequence>
1058
+ </xs:complexType>
1059
+
1060
+ <!-- DeleteVolume response definitions -->
1061
+
1062
+ <xs:element name="DeleteVolumeResponse" type="tns:DeleteVolumeResponseType"/>
1063
+
1064
+ <xs:complexType name="DeleteVolumeResponseType">
1065
+ <xs:sequence>
1066
+ <xs:element name="return" type="xs:boolean"/>
1067
+ </xs:sequence>
1068
+ </xs:complexType>
1069
+
1070
+ <!-- DescribeVolumes request definitions -->
1071
+
1072
+ <xs:element name="DescribeVolumes"
1073
+ type="tns:DescribeVolumesType" />
1074
+
1075
+ <xs:complexType name="DescribeVolumesType">
1076
+ <xs:sequence>
1077
+ <xs:element name="volumeSet" type="tns:DescribeVolumesSetType"/>
1078
+ </xs:sequence>
1079
+ </xs:complexType>
1080
+
1081
+ <xs:complexType name="DescribeVolumesSetType">
1082
+ <xs:sequence>
1083
+ <xs:element name="item" type="tns:DescribeVolumesSetItemType" minOccurs="0" maxOccurs="unbounded"/>
1084
+ </xs:sequence>
1085
+ </xs:complexType>
1086
+
1087
+ <xs:complexType name="DescribeVolumesSetItemType">
1088
+ <xs:sequence>
1089
+ <xs:element name="volumeId" type="xs:string"/>
1090
+ </xs:sequence>
1091
+ </xs:complexType>
1092
+
1093
+ <!-- DescribeVolumes response definitions -->
1094
+
1095
+ <xs:element name="DescribeVolumesResponse"
1096
+ type="tns:DescribeVolumesResponseType"/>
1097
+
1098
+ <xs:complexType name="DescribeVolumesResponseType">
1099
+ <xs:sequence>
1100
+ <xs:element name="volumeSet" type="tns:DescribeVolumesSetResponseType"/>
1101
+ </xs:sequence>
1102
+ </xs:complexType>
1103
+
1104
+ <xs:complexType name="DescribeVolumesSetResponseType">
1105
+ <xs:sequence>
1106
+ <xs:element name="item" type="tns:DescribeVolumesSetItemResponseType" minOccurs="0" maxOccurs="unbounded"/>
1107
+ </xs:sequence>
1108
+ </xs:complexType>
1109
+
1110
+ <xs:complexType name="DescribeVolumesSetItemResponseType">
1111
+ <xs:sequence>
1112
+ <xs:element name="volumeId" type="xs:string"/>
1113
+ <xs:element name="size" type="xs:string"/>
1114
+ <xs:element name="snapshotId" type="xs:string"/>
1115
+ <xs:element name="availabilityZone" type="xs:string"/>
1116
+ <xs:element name="status" type="xs:string"/>
1117
+ <xs:element name="createTime" type="xs:dateTime"/>
1118
+ <xs:element name="attachmentSet" type="tns:AttachmentSetResponseType"/>
1119
+ </xs:sequence>
1120
+ </xs:complexType>
1121
+
1122
+ <xs:complexType name="AttachmentSetResponseType">
1123
+ <xs:sequence>
1124
+ <xs:element name="item" type="tns:AttachmentSetItemResponseType" minOccurs="0" maxOccurs="unbounded"/>
1125
+ </xs:sequence>
1126
+ </xs:complexType>
1127
+
1128
+ <xs:complexType name="AttachmentSetItemResponseType">
1129
+ <xs:sequence>
1130
+ <xs:element name="volumeId" type="xs:string"/>
1131
+ <xs:element name="instanceId" type="xs:string"/>
1132
+ <xs:element name="device" type="xs:string"/>
1133
+ <xs:element name="status" type="xs:string"/>
1134
+ <xs:element name="attachTime" type="xs:dateTime"/>
1135
+ </xs:sequence>
1136
+ </xs:complexType>
1137
+
1138
+ <!-- AttachVolume request definitions -->
1139
+
1140
+ <xs:element name="AttachVolume" type="tns:AttachVolumeType"/>
1141
+
1142
+ <xs:complexType name="AttachVolumeType">
1143
+ <xs:sequence>
1144
+ <xs:element name="volumeId" type="xs:string"/>
1145
+ <xs:element name="instanceId" type="xs:string"/>
1146
+ <xs:element name="device" type="xs:string"/>
1147
+ </xs:sequence>
1148
+ </xs:complexType>
1149
+
1150
+ <!-- AttachVolume response definitions -->
1151
+
1152
+ <xs:element name="AttachVolumeResponse" type="tns:AttachVolumeResponseType"/>
1153
+
1154
+ <xs:complexType name="AttachVolumeResponseType">
1155
+ <xs:sequence>
1156
+ <xs:element name="volumeId" type="xs:string"/>
1157
+ <xs:element name="instanceId" type="xs:string"/>
1158
+ <xs:element name="device" type="xs:string"/>
1159
+ <xs:element name="status" type="xs:string"/>
1160
+ <xs:element name="attachTime" type="xs:dateTime"/>
1161
+ </xs:sequence>
1162
+ </xs:complexType>
1163
+
1164
+ <!-- DetachVolume request definitions -->
1165
+
1166
+ <xs:element name="DetachVolume" type="tns:DetachVolumeType"/>
1167
+
1168
+ <xs:complexType name="DetachVolumeType">
1169
+ <xs:sequence>
1170
+ <xs:element name="volumeId" type="xs:string"/>
1171
+ <xs:element name="instanceId" type="xs:string" minOccurs="0" maxOccurs="1"/>
1172
+ <xs:element name="device" type="xs:string" minOccurs="0" maxOccurs="1"/>
1173
+ <xs:element name="force" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
1174
+ </xs:sequence>
1175
+ </xs:complexType>
1176
+
1177
+ <!-- DetachVolume response definitions -->
1178
+
1179
+ <xs:element name="DetachVolumeResponse" type="tns:DetachVolumeResponseType"/>
1180
+
1181
+ <xs:complexType name="DetachVolumeResponseType">
1182
+ <xs:sequence>
1183
+ <xs:element name="volumeId" type="xs:string"/>
1184
+ <xs:element name="instanceId" type="xs:string"/>
1185
+ <xs:element name="device" type="xs:string"/>
1186
+ <xs:element name="status" type="xs:string"/>
1187
+ <xs:element name="attachTime" type="xs:dateTime"/>
1188
+ </xs:sequence>
1189
+ </xs:complexType>
1190
+
1191
+ <!-- CreateSnapshot request definitions -->
1192
+
1193
+ <xs:element name="CreateSnapshot" type="tns:CreateSnapshotType"/>
1194
+
1195
+ <xs:complexType name="CreateSnapshotType">
1196
+ <xs:sequence>
1197
+ <xs:element name="volumeId" type="xs:string"/>
1198
+ </xs:sequence>
1199
+ </xs:complexType>
1200
+
1201
+ <!-- CreateSnapshot response definitions -->
1202
+
1203
+ <xs:element name="CreateSnapshotResponse" type="tns:CreateSnapshotResponseType"/>
1204
+
1205
+ <xs:complexType name="CreateSnapshotResponseType">
1206
+ <xs:sequence>
1207
+ <xs:element name="snapshotId" type="xs:string"/>
1208
+ <xs:element name="volumeId" type="xs:string"/>
1209
+ <xs:element name="status" type="xs:string"/>
1210
+ <xs:element name="startTime" type="xs:dateTime"/>
1211
+ <xs:element name="progress" type="xs:string"/>
1212
+ </xs:sequence>
1213
+ </xs:complexType>
1214
+
1215
+ <!-- DeleteSnapshot request definitions -->
1216
+
1217
+ <xs:element name="DeleteSnapshot" type="tns:DeleteSnapshotType"/>
1218
+
1219
+ <xs:complexType name="DeleteSnapshotType">
1220
+ <xs:sequence>
1221
+ <xs:element name="snapshotId" type="xs:string"/>
1222
+ </xs:sequence>
1223
+ </xs:complexType>
1224
+
1225
+ <!-- DeleteSnapshot response definitions -->
1226
+
1227
+ <xs:element name="DeleteSnapshotResponse" type="tns:DeleteSnapshotResponseType"/>
1228
+
1229
+ <xs:complexType name="DeleteSnapshotResponseType">
1230
+ <xs:sequence>
1231
+ <xs:element name="return" type="xs:boolean"/>
1232
+ </xs:sequence>
1233
+ </xs:complexType>
1234
+
1235
+ <!-- DescribeSnapshots request definitions -->
1236
+
1237
+ <xs:element name="DescribeSnapshots"
1238
+ type="tns:DescribeSnapshotsType" />
1239
+
1240
+ <xs:complexType name="DescribeSnapshotsType">
1241
+ <xs:sequence>
1242
+ <xs:element name="snapshotSet" type="tns:DescribeSnapshotsSetType"/>
1243
+ </xs:sequence>
1244
+ </xs:complexType>
1245
+
1246
+ <xs:complexType name="DescribeSnapshotsSetType">
1247
+ <xs:sequence>
1248
+ <xs:element name="item" type="tns:DescribeSnapshotsSetItemType" minOccurs="0" maxOccurs="unbounded"/>
1249
+ </xs:sequence>
1250
+ </xs:complexType>
1251
+
1252
+ <xs:complexType name="DescribeSnapshotsSetItemType">
1253
+ <xs:sequence>
1254
+ <xs:element name="snapshotId" type="xs:string"/>
1255
+ </xs:sequence>
1256
+ </xs:complexType>
1257
+
1258
+ <!-- DescribeSnapshots response definitions -->
1259
+
1260
+ <xs:element name="DescribeSnapshotsResponse"
1261
+ type="tns:DescribeSnapshotsResponseType"/>
1262
+
1263
+ <xs:complexType name="DescribeSnapshotsResponseType">
1264
+ <xs:sequence>
1265
+ <xs:element name="snapshotSet" type="tns:DescribeSnapshotsSetResponseType"/>
1266
+ </xs:sequence>
1267
+ </xs:complexType>
1268
+
1269
+ <xs:complexType name="DescribeSnapshotsSetResponseType">
1270
+ <xs:sequence>
1271
+ <xs:element name="item" type="tns:DescribeSnapshotsSetItemResponseType" minOccurs="0" maxOccurs="unbounded"/>
1272
+ </xs:sequence>
1273
+ </xs:complexType>
1274
+
1275
+ <xs:complexType name="DescribeSnapshotsSetItemResponseType">
1276
+ <xs:sequence>
1277
+ <xs:element name="snapshotId" type="xs:string"/>
1278
+ <xs:element name="volumeId" type="xs:string"/>
1279
+ <xs:element name="status" type="xs:string"/>
1280
+ <xs:element name="startTime" type="xs:dateTime"/>
1281
+ <xs:element name="progress" type="xs:string"/>
1282
+ </xs:sequence>
1283
+ </xs:complexType>
1284
+
1285
+ </xs:schema>
1286
+ </types>
1287
+
1288
+ <!-- message definitions -->
1289
+
1290
+ <message name="RegisterImageRequestMsg">
1291
+ <part name="RegisterImageRequestMsgReq" element="tns:RegisterImage" />
1292
+ </message>
1293
+
1294
+ <message name="RegisterImageResponseMsg">
1295
+ <part name="RegisterImageResponseMsgResp" element="tns:RegisterImageResponse" />
1296
+ </message>
1297
+
1298
+ <message name="DeregisterImageRequestMsg">
1299
+ <part name="DeregisterImageRequestMsgReq" element="tns:DeregisterImage" />
1300
+ </message>
1301
+
1302
+ <message name="DeregisterImageResponseMsg">
1303
+ <part name="DeregisterImageResponseMsgResp" element="tns:DeregisterImageResponse" />
1304
+ </message>
1305
+
1306
+ <message name="RunInstancesRequestMsg">
1307
+ <part name="RunInstancesRequestMsgReq" element="tns:RunInstances" />
1308
+ </message>
1309
+
1310
+ <message name="RunInstancesResponseMsg">
1311
+ <part name="RunInstancesResponseMsgResp" element="tns:RunInstancesResponse" />
1312
+ </message>
1313
+
1314
+ <message name="CreateKeyPairRequestMsg">
1315
+ <part name="CreateKeyPairRequestMsgReq" element="tns:CreateKeyPair" />
1316
+ </message>
1317
+
1318
+ <message name="CreateKeyPairResponseMsg">
1319
+ <part name="CreateKeyPairResponseMsgResp" element="tns:CreateKeyPairResponse" />
1320
+ </message>
1321
+
1322
+ <message name="DescribeKeyPairsRequestMsg">
1323
+ <part name="DescribeKeyPairsRequestMsgReq" element="tns:DescribeKeyPairs" />
1324
+ </message>
1325
+
1326
+ <message name="DescribeKeyPairsResponseMsg">
1327
+ <part name="DescribeKeyPairsResponseMsgResp" element="tns:DescribeKeyPairsResponse" />
1328
+ </message>
1329
+
1330
+ <message name="DeleteKeyPairRequestMsg">
1331
+ <part name="DeleteKeyPairRequestMsgReq" element="tns:DeleteKeyPair" />
1332
+ </message>
1333
+
1334
+ <message name="DeleteKeyPairResponseMsg">
1335
+ <part name="DeleteKeyPairResponseMsgResp" element="tns:DeleteKeyPairResponse" />
1336
+ </message>
1337
+
1338
+ <message name="GetConsoleOutputRequestMsg">
1339
+ <part name="GetConsoleOutputRequestMsgReq" element="tns:GetConsoleOutput" />
1340
+ </message>
1341
+
1342
+ <message name="GetConsoleOutputResponseMsg">
1343
+ <part name="GetConsoleOutputResponseMsgResp" element="tns:GetConsoleOutputResponse" />
1344
+ </message>
1345
+
1346
+ <message name="TerminateInstancesRequestMsg">
1347
+ <part name="TerminateInstancesRequestMsgReq" element="tns:TerminateInstances" />
1348
+ </message>
1349
+
1350
+ <message name="TerminateInstancesResponseMsg">
1351
+ <part name="TerminateInstancesResponseMsgResp" element="tns:TerminateInstancesResponse" />
1352
+ </message>
1353
+
1354
+ <message name="RebootInstancesRequestMsg">
1355
+ <part name="RebootInstancesRequestMsgReq" element="tns:RebootInstances" />
1356
+ </message>
1357
+
1358
+ <message name="RebootInstancesResponseMsg">
1359
+ <part name="RebootInstancesRequestMsgResp" element="tns:RebootInstancesResponse" />
1360
+ </message>
1361
+
1362
+ <message name="DescribeInstancesRequestMsg">
1363
+ <part name="DescribeInstancesRequestMsgReq" element="tns:DescribeInstances" />
1364
+ </message>
1365
+
1366
+ <message name="DescribeInstancesResponseMsg">
1367
+ <part name="DescribeInstancesRequestMsgResp" element="tns:DescribeInstancesResponse" />
1368
+ </message>
1369
+
1370
+ <message name="DescribeImagesRequestMsg">
1371
+ <part name="DescribeImagesRequestMsgReq" element="tns:DescribeImages" />
1372
+ </message>
1373
+
1374
+ <message name="DescribeImagesResponseMsg">
1375
+ <part name="DescribeImagesRequestMsgResp" element="tns:DescribeImagesResponse" />
1376
+ </message>
1377
+
1378
+ <message name="CreateSecurityGroupRequestMsg">
1379
+ <part name="CreateSecurityGroupRequestMsgReq" element="tns:CreateSecurityGroup" />
1380
+ </message>
1381
+
1382
+ <message name="CreateSecurityGroupResponseMsg">
1383
+ <part name="CreateSecurityGroupRequestMsgResp" element="tns:CreateSecurityGroupResponse" />
1384
+ </message>
1385
+
1386
+ <message name="DeleteSecurityGroupRequestMsg">
1387
+ <part name="DeleteSecurityGroupRequestMsgReq" element="tns:DeleteSecurityGroup" />
1388
+ </message>
1389
+
1390
+ <message name="DeleteSecurityGroupResponseMsg">
1391
+ <part name="DeleteSecurityGroupRequestMsgResp" element="tns:DeleteSecurityGroupResponse" />
1392
+ </message>
1393
+
1394
+ <message name="DescribeSecurityGroupsRequestMsg">
1395
+ <part name="DescribeSecurityGroupsRequestMsgReq" element="tns:DescribeSecurityGroups" />
1396
+ </message>
1397
+
1398
+ <message name="DescribeSecurityGroupsResponseMsg">
1399
+ <part name="DescribeSecurityGroupsRequestMsgResp" element="tns:DescribeSecurityGroupsResponse" />
1400
+ </message>
1401
+
1402
+ <message name="AuthorizeSecurityGroupIngressRequestMsg">
1403
+ <part name="AuthorizeSecurityGroupIngressRequestMsgReq" element="tns:AuthorizeSecurityGroupIngress" />
1404
+ </message>
1405
+
1406
+ <message name="AuthorizeSecurityGroupIngressResponseMsg">
1407
+ <part name="AuthorizeSecurityGroupIngressRequestMsgResp" element="tns:AuthorizeSecurityGroupIngressResponse" />
1408
+ </message>
1409
+
1410
+ <message name="RevokeSecurityGroupIngressRequestMsg">
1411
+ <part name="RevokeSecurityGroupIngressRequestMsgReq" element="tns:RevokeSecurityGroupIngress" />
1412
+ </message>
1413
+
1414
+ <message name="RevokeSecurityGroupIngressResponseMsg">
1415
+ <part name="RevokeSecurityGroupIngressRequestMsgResp" element="tns:RevokeSecurityGroupIngressResponse" />
1416
+ </message>
1417
+
1418
+ <message name="ModifyImageAttributeRequestMsg">
1419
+ <part name="ModifyImageAttributeRequestMsgReq" element="tns:ModifyImageAttribute" />
1420
+ </message>
1421
+
1422
+ <message name="ModifyImageAttributeResponseMsg">
1423
+ <part name="ModifyImageAttributeRequestMsgResp" element="tns:ModifyImageAttributeResponse" />
1424
+ </message>
1425
+
1426
+ <message name="ResetImageAttributeRequestMsg">
1427
+ <part name="ResetImageAttributeRequestMsgReq" element="tns:ResetImageAttribute" />
1428
+ </message>
1429
+
1430
+ <message name="ResetImageAttributeResponseMsg">
1431
+ <part name="ResetImageAttributeRequestMsgResp" element="tns:ResetImageAttributeResponse" />
1432
+ </message>
1433
+
1434
+ <message name="DescribeImageAttributeRequestMsg">
1435
+ <part name="DescribeImageAttributeRequestMsgReq" element="tns:DescribeImageAttribute" />
1436
+ </message>
1437
+
1438
+ <message name="DescribeImageAttributeResponseMsg">
1439
+ <part name="DescribeImageAttributeRequestMsgResp" element="tns:DescribeImageAttributeResponse"/>
1440
+ </message>
1441
+
1442
+ <message name="ConfirmProductInstanceRequestMsg">
1443
+ <part name="ConfirmProductInstanceRequestMsgReq" element="tns:ConfirmProductInstance"/>
1444
+ </message>
1445
+
1446
+ <message name="ConfirmProductInstanceResponseMsg">
1447
+ <part name="ConfirmProductInstanceRequestMsgResp" element="tns:ConfirmProductInstanceResponse"/>
1448
+ </message>
1449
+
1450
+ <message name="DescribeAvailabilityZonesRequestMsg">
1451
+ <part name="DescribeAvailabilityZonesRequestMsgReq" element="tns:DescribeAvailabilityZones"/>
1452
+ </message>
1453
+
1454
+ <message name="DescribeAvailabilityZonesResponseMsg">
1455
+ <part name="DescribeAvailabilityZonesRequestMsgResp" element="tns:DescribeAvailabilityZonesResponse"/>
1456
+ </message>
1457
+
1458
+ <message name='AllocateAddressRequestMsg'>
1459
+ <part name='AllocateAddressRequestMsgReq' element='tns:AllocateAddress'/>
1460
+ </message>
1461
+
1462
+ <message name='AllocateAddressResponseMsg'>
1463
+ <part name='AllocateAddressResponseMsgResp' element='tns:AllocateAddressResponse'/>
1464
+ </message>
1465
+
1466
+ <message name='ReleaseAddressRequestMsg'>
1467
+ <part name='ReleaseAddressRequestMsgReq' element='tns:ReleaseAddress'/>
1468
+ </message>
1469
+
1470
+ <message name='ReleaseAddressResponseMsg'>
1471
+ <part name='ReleaseAddressResponseMsgResp' element='tns:ReleaseAddressResponse'/>
1472
+ </message>
1473
+
1474
+ <message name='DescribeAddressesRequestMsg'>
1475
+ <part name='DescribeAddressesRequestMsgReq' element='tns:DescribeAddresses'/>
1476
+ </message>
1477
+
1478
+ <message name='DescribeAddressesResponseMsg'>
1479
+ <part name='DescribeAddressesResponseMsgResp' element='tns:DescribeAddressesResponse'/>
1480
+ </message>
1481
+
1482
+ <message name='AssociateAddressRequestMsg'>
1483
+ <part name='AssociateAddressRequestMsgReq' element='tns:AssociateAddress'/>
1484
+ </message>
1485
+
1486
+ <message name='AssociateAddressResponseMsg'>
1487
+ <part name='AssociateAddressResponseMsgResp' element='tns:AssociateAddressResponse'/>
1488
+ </message>
1489
+
1490
+ <message name='DisassociateAddressRequestMsg'>
1491
+ <part name='DisassociateAddressRequestMsgReq' element='tns:DisassociateAddress'/>
1492
+ </message>
1493
+
1494
+ <message name='DisassociateAddressResponseMsg'>
1495
+ <part name='DisassociateAddressResponseMsgResp' element='tns:DisassociateAddressResponse'/>
1496
+ </message>
1497
+
1498
+ <message name="CreateVolumeRequestMsg">
1499
+ <part name="CreateVolumeRequestMsgReq" element="tns:CreateVolume"/>
1500
+ </message>
1501
+
1502
+ <message name="CreateVolumeResponseMsg">
1503
+ <part name="CreateVolumeRequestMsgResp" element="tns:CreateVolumeResponse"/>
1504
+ </message>
1505
+
1506
+ <message name="DeleteVolumeRequestMsg">
1507
+ <part name="DeleteVolumeRequestMsgReq" element="tns:DeleteVolume"/>
1508
+ </message>
1509
+
1510
+ <message name="DeleteVolumeResponseMsg">
1511
+ <part name="DeleteVolumeRequestMsgResp" element="tns:DeleteVolumeResponse"/>
1512
+ </message>
1513
+
1514
+ <message name="DescribeVolumesRequestMsg">
1515
+ <part name="DescribeVolumesRequestMsgReq" element="tns:DescribeVolumes"/>
1516
+ </message>
1517
+
1518
+ <message name="DescribeVolumesResponseMsg">
1519
+ <part name="DescribeVolumesRequestMsgResp" element="tns:DescribeVolumesResponse"/>
1520
+ </message>
1521
+
1522
+ <message name="AttachVolumeRequestMsg">
1523
+ <part name="AttachVolumeRequestMsgReq" element="tns:AttachVolume"/>
1524
+ </message>
1525
+
1526
+ <message name="AttachVolumeResponseMsg">
1527
+ <part name="AttachVolumeResponseMsgResp" element="tns:AttachVolumeResponse"/>
1528
+ </message>
1529
+
1530
+ <message name="DetachVolumeRequestMsg">
1531
+ <part name="DetachVolumeRequestMsgReq" element="tns:DetachVolume"/>
1532
+ </message>
1533
+
1534
+ <message name="DetachVolumeResponseMsg">
1535
+ <part name="DetachVolumeResponseMsgResp" element="tns:DetachVolumeResponse"/>
1536
+ </message>
1537
+
1538
+ <message name="CreateSnapshotRequestMsg">
1539
+ <part name="CreateSnapshotRequestMsgReq" element="tns:CreateSnapshot"/>
1540
+ </message>
1541
+
1542
+ <message name="CreateSnapshotResponseMsg">
1543
+ <part name="CreateSnapshotRequestMsgResp" element="tns:CreateSnapshotResponse"/>
1544
+ </message>
1545
+
1546
+ <message name="DeleteSnapshotRequestMsg">
1547
+ <part name="DeleteSnapshotRequestMsgReq" element="tns:DeleteSnapshot"/>
1548
+ </message>
1549
+
1550
+ <message name="DeleteSnapshotResponseMsg">
1551
+ <part name="DeleteSnapshotRequestMsgResp" element="tns:DeleteSnapshotResponse"/>
1552
+ </message>
1553
+
1554
+ <message name="DescribeSnapshotsRequestMsg">
1555
+ <part name="DescribeSnapshotsRequestMsgReq" element="tns:DescribeSnapshots"/>
1556
+ </message>
1557
+
1558
+ <message name="DescribeSnapshotsResponseMsg">
1559
+ <part name="DescribeSnapshotsRequestMsgResp" element="tns:DescribeSnapshotsResponse"/>
1560
+ </message>
1561
+
1562
+ <portType name="AmazonEC2PortType">
1563
+ <operation name="RegisterImage">
1564
+ <input message="tns:RegisterImageRequestMsg" />
1565
+ <output message="tns:RegisterImageResponseMsg" />
1566
+ </operation>
1567
+ <operation name="DeregisterImage">
1568
+ <input message="tns:DeregisterImageRequestMsg" />
1569
+ <output message="tns:DeregisterImageResponseMsg" />
1570
+ </operation>
1571
+ <operation name="RunInstances">
1572
+ <input message="tns:RunInstancesRequestMsg" />
1573
+ <output message="tns:RunInstancesResponseMsg" />
1574
+ </operation>
1575
+ <operation name="CreateKeyPair">
1576
+ <input message="tns:CreateKeyPairRequestMsg" />
1577
+ <output message="tns:CreateKeyPairResponseMsg" />
1578
+ </operation>
1579
+ <operation name="DescribeKeyPairs">
1580
+ <input message="tns:DescribeKeyPairsRequestMsg" />
1581
+ <output message="tns:DescribeKeyPairsResponseMsg" />
1582
+ </operation>
1583
+ <operation name="DeleteKeyPair">
1584
+ <input message="tns:DeleteKeyPairRequestMsg" />
1585
+ <output message="tns:DeleteKeyPairResponseMsg" />
1586
+ </operation>
1587
+ <operation name="GetConsoleOutput">
1588
+ <input message="tns:GetConsoleOutputRequestMsg" />
1589
+ <output message="tns:GetConsoleOutputResponseMsg" />
1590
+ </operation>
1591
+ <operation name="TerminateInstances">
1592
+ <input message="tns:TerminateInstancesRequestMsg" />
1593
+ <output message="tns:TerminateInstancesResponseMsg" />
1594
+ </operation>
1595
+ <operation name="RebootInstances">
1596
+ <input message="tns:RebootInstancesRequestMsg" />
1597
+ <output message="tns:RebootInstancesResponseMsg" />
1598
+ </operation>
1599
+ <operation name="DescribeInstances">
1600
+ <input message="tns:DescribeInstancesRequestMsg" />
1601
+ <output message="tns:DescribeInstancesResponseMsg" />
1602
+ </operation>
1603
+ <operation name="DescribeImages">
1604
+ <input message="tns:DescribeImagesRequestMsg" />
1605
+ <output message="tns:DescribeImagesResponseMsg" />
1606
+ </operation>
1607
+ <operation name="CreateSecurityGroup">
1608
+ <input message="tns:CreateSecurityGroupRequestMsg" />
1609
+ <output message="tns:CreateSecurityGroupResponseMsg" />
1610
+ </operation>
1611
+ <operation name="DeleteSecurityGroup">
1612
+ <input message="tns:DeleteSecurityGroupRequestMsg" />
1613
+ <output message="tns:DeleteSecurityGroupResponseMsg" />
1614
+ </operation>
1615
+ <operation name="DescribeSecurityGroups">
1616
+ <input message="tns:DescribeSecurityGroupsRequestMsg" />
1617
+ <output message="tns:DescribeSecurityGroupsResponseMsg" />
1618
+ </operation>
1619
+ <operation name="AuthorizeSecurityGroupIngress">
1620
+ <input message="tns:AuthorizeSecurityGroupIngressRequestMsg" />
1621
+ <output message="tns:AuthorizeSecurityGroupIngressResponseMsg" />
1622
+ </operation>
1623
+ <operation name="RevokeSecurityGroupIngress">
1624
+ <input message="tns:RevokeSecurityGroupIngressRequestMsg" />
1625
+ <output message="tns:RevokeSecurityGroupIngressResponseMsg" />
1626
+ </operation>
1627
+ <operation name="ModifyImageAttribute">
1628
+ <input message="tns:ModifyImageAttributeRequestMsg"/>
1629
+ <output message="tns:ModifyImageAttributeResponseMsg"/>
1630
+ </operation>
1631
+ <operation name="ResetImageAttribute">
1632
+ <input message="tns:ResetImageAttributeRequestMsg"/>
1633
+ <output message="tns:ResetImageAttributeResponseMsg"/>
1634
+ </operation>
1635
+ <operation name="DescribeImageAttribute">
1636
+ <input message="tns:DescribeImageAttributeRequestMsg"/>
1637
+ <output message="tns:DescribeImageAttributeResponseMsg"/>
1638
+ </operation>
1639
+ <operation name="ConfirmProductInstance">
1640
+ <input message="tns:ConfirmProductInstanceRequestMsg"/>
1641
+ <output message="tns:ConfirmProductInstanceResponseMsg"/>
1642
+ </operation>
1643
+ <operation name="DescribeAvailabilityZones">
1644
+ <input message="tns:DescribeAvailabilityZonesRequestMsg"/>
1645
+ <output message="tns:DescribeAvailabilityZonesResponseMsg"/>
1646
+ </operation>
1647
+ <operation name='AllocateAddress'>
1648
+ <input message='tns:AllocateAddressRequestMsg'/>
1649
+ <output message='tns:AllocateAddressResponseMsg'/>
1650
+ </operation>
1651
+ <operation name='ReleaseAddress'>
1652
+ <input message='tns:ReleaseAddressRequestMsg'/>
1653
+ <output message='tns:ReleaseAddressResponseMsg'/>
1654
+ </operation>
1655
+ <operation name='DescribeAddresses'>
1656
+ <input message='tns:DescribeAddressesRequestMsg'/>
1657
+ <output message='tns:DescribeAddressesResponseMsg'/>
1658
+ </operation>
1659
+ <operation name='AssociateAddress'>
1660
+ <input message='tns:AssociateAddressRequestMsg'/>
1661
+ <output message='tns:AssociateAddressResponseMsg'/>
1662
+ </operation>
1663
+ <operation name='DisassociateAddress'>
1664
+ <input message='tns:DisassociateAddressRequestMsg'/>
1665
+ <output message='tns:DisassociateAddressResponseMsg'/>
1666
+ </operation>
1667
+ <operation name="CreateVolume">
1668
+ <input message="tns:CreateVolumeRequestMsg"/>
1669
+ <output message="tns:CreateVolumeResponseMsg"/>
1670
+ </operation>
1671
+ <operation name="DeleteVolume">
1672
+ <input message="tns:DeleteVolumeRequestMsg"/>
1673
+ <output message="tns:DeleteVolumeResponseMsg"/>
1674
+ </operation>
1675
+ <operation name="DescribeVolumes">
1676
+ <input message="tns:DescribeVolumesRequestMsg"/>
1677
+ <output message="tns:DescribeVolumesResponseMsg"/>
1678
+ </operation>
1679
+ <operation name="AttachVolume">
1680
+ <input message="tns:AttachVolumeRequestMsg"/>
1681
+ <output message="tns:AttachVolumeResponseMsg"/>
1682
+ </operation>
1683
+ <operation name="DetachVolume">
1684
+ <input message="tns:DetachVolumeRequestMsg"/>
1685
+ <output message="tns:DetachVolumeResponseMsg"/>
1686
+ </operation>
1687
+ <operation name="CreateSnapshot">
1688
+ <input message="tns:CreateSnapshotRequestMsg"/>
1689
+ <output message="tns:CreateSnapshotResponseMsg"/>
1690
+ </operation>
1691
+ <operation name="DeleteSnapshot">
1692
+ <input message="tns:DeleteSnapshotRequestMsg"/>
1693
+ <output message="tns:DeleteSnapshotResponseMsg"/>
1694
+ </operation>
1695
+ <operation name="DescribeSnapshots">
1696
+ <input message="tns:DescribeSnapshotsRequestMsg"/>
1697
+ <output message="tns:DescribeSnapshotsResponseMsg"/>
1698
+ </operation>
1699
+ </portType>
1700
+
1701
+ <binding name="AmazonEC2Binding" type="tns:AmazonEC2PortType">
1702
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
1703
+
1704
+ <operation name="RegisterImage">
1705
+ <soap:operation soapAction="RegisterImage" />
1706
+ <input>
1707
+ <soap:body use="literal" />
1708
+ </input>
1709
+ <output>
1710
+ <soap:body use="literal" />
1711
+ </output>
1712
+ </operation>
1713
+
1714
+ <operation name="DeregisterImage">
1715
+ <soap:operation soapAction="DeregisterImage" />
1716
+ <input>
1717
+ <soap:body use="literal" />
1718
+ </input>
1719
+ <output>
1720
+ <soap:body use="literal" />
1721
+ </output>
1722
+ </operation>
1723
+
1724
+ <operation name="CreateKeyPair">
1725
+ <soap:operation soapAction="CreateKeyPair" />
1726
+ <input>
1727
+ <soap:body use="literal" />
1728
+ </input>
1729
+ <output>
1730
+ <soap:body use="literal" />
1731
+ </output>
1732
+ </operation>
1733
+
1734
+ <operation name="DescribeKeyPairs">
1735
+ <soap:operation soapAction="DescribeKeyPairs" />
1736
+ <input>
1737
+ <soap:body use="literal" />
1738
+ </input>
1739
+ <output>
1740
+ <soap:body use="literal" />
1741
+ </output>
1742
+ </operation>
1743
+
1744
+ <operation name="DeleteKeyPair">
1745
+ <soap:operation soapAction="DeleteKeyPair" />
1746
+ <input>
1747
+ <soap:body use="literal" />
1748
+ </input>
1749
+ <output>
1750
+ <soap:body use="literal" />
1751
+ </output>
1752
+ </operation>
1753
+
1754
+ <operation name="RunInstances">
1755
+ <soap:operation soapAction="RunInstances" />
1756
+ <input>
1757
+ <soap:body use="literal" />
1758
+ </input>
1759
+ <output>
1760
+ <soap:body use="literal" />
1761
+ </output>
1762
+ </operation>
1763
+
1764
+ <operation name="GetConsoleOutput">
1765
+ <soap:operation soapAction="GetConsoleOutput" />
1766
+ <input>
1767
+ <soap:body use="literal" />
1768
+ </input>
1769
+ <output>
1770
+ <soap:body use="literal" />
1771
+ </output>
1772
+ </operation>
1773
+
1774
+ <operation name="TerminateInstances">
1775
+ <soap:operation soapAction="TerminateInstances" />
1776
+ <input>
1777
+ <soap:body use="literal" />
1778
+ </input>
1779
+ <output>
1780
+ <soap:body use="literal" />
1781
+ </output>
1782
+ </operation>
1783
+
1784
+ <operation name="RebootInstances">
1785
+ <soap:operation soapAction="RebootInstances" />
1786
+ <input>
1787
+ <soap:body use="literal" />
1788
+ </input>
1789
+ <output>
1790
+ <soap:body use="literal" />
1791
+ </output>
1792
+ </operation>
1793
+
1794
+ <operation name="DescribeInstances">
1795
+ <soap:operation soapAction="DescribeInstances" />
1796
+ <input>
1797
+ <soap:body use="literal" />
1798
+ </input>
1799
+ <output>
1800
+ <soap:body use="literal" />
1801
+ </output>
1802
+ </operation>
1803
+
1804
+ <operation name="DescribeImages">
1805
+ <soap:operation soapAction="DescribeImages" />
1806
+ <input>
1807
+ <soap:body use="literal" />
1808
+ </input>
1809
+ <output>
1810
+ <soap:body use="literal" />
1811
+ </output>
1812
+ </operation>
1813
+
1814
+ <operation name="CreateSecurityGroup">
1815
+ <soap:operation soapAction="CreateSecurityGroup" />
1816
+ <input>
1817
+ <soap:body use="literal" />
1818
+ </input>
1819
+ <output>
1820
+ <soap:body use="literal" />
1821
+ </output>
1822
+ </operation>
1823
+
1824
+ <operation name="DeleteSecurityGroup">
1825
+ <soap:operation soapAction="DeleteSecurityGroup" />
1826
+ <input>
1827
+ <soap:body use="literal" />
1828
+ </input>
1829
+ <output>
1830
+ <soap:body use="literal" />
1831
+ </output>
1832
+ </operation>
1833
+
1834
+ <operation name="DescribeSecurityGroups">
1835
+ <soap:operation soapAction="DescribeSecurityGroups" />
1836
+ <input>
1837
+ <soap:body use="literal" />
1838
+ </input>
1839
+ <output>
1840
+ <soap:body use="literal" />
1841
+ </output>
1842
+ </operation>
1843
+
1844
+ <operation name="AuthorizeSecurityGroupIngress">
1845
+ <soap:operation soapAction="AuthorizeSecurityGroupIngress" />
1846
+ <input>
1847
+ <soap:body use="literal" />
1848
+ </input>
1849
+ <output>
1850
+ <soap:body use="literal" />
1851
+ </output>
1852
+ </operation>
1853
+
1854
+ <operation name="RevokeSecurityGroupIngress">
1855
+ <soap:operation soapAction="RevokeSecurityGroupIngress" />
1856
+ <input>
1857
+ <soap:body use="literal" />
1858
+ </input>
1859
+ <output>
1860
+ <soap:body use="literal" />
1861
+ </output>
1862
+ </operation>
1863
+
1864
+ <operation name="ModifyImageAttribute">
1865
+ <soap:operation soapAction="ModifyImageAttribute" />
1866
+ <input>
1867
+ <soap:body use="literal"/>
1868
+ </input>
1869
+ <output>
1870
+ <soap:body use="literal"/>
1871
+ </output>
1872
+ </operation>
1873
+
1874
+ <operation name="ResetImageAttribute">
1875
+ <soap:operation soapAction="ResetImageAttribute" />
1876
+ <input>
1877
+ <soap:body use="literal"/>
1878
+ </input>
1879
+ <output>
1880
+ <soap:body use="literal"/>
1881
+ </output>
1882
+ </operation>
1883
+
1884
+ <operation name="DescribeImageAttribute">
1885
+ <soap:operation soapAction="DescribeImageAttribute" />
1886
+ <input>
1887
+ <soap:body use="literal"/>
1888
+ </input>
1889
+ <output>
1890
+ <soap:body use="literal"/>
1891
+ </output>
1892
+ </operation>
1893
+
1894
+ <operation name="ConfirmProductInstance">
1895
+ <soap:operation soapAction="ConfirmProductInstance" />
1896
+ <input>
1897
+ <soap:body use="literal"/>
1898
+ </input>
1899
+ <output>
1900
+ <soap:body use="literal"/>
1901
+ </output>
1902
+ </operation>
1903
+
1904
+ <operation name="DescribeAvailabilityZones">
1905
+ <soap:operation soapAction="DescribeAvailabilityZones" />
1906
+ <input>
1907
+ <soap:body use="literal"/>
1908
+ </input>
1909
+ <output>
1910
+ <soap:body use="literal"/>
1911
+ </output>
1912
+ </operation>
1913
+
1914
+ <operation name='AllocateAddress'>
1915
+ <soap:operation soapAction='AllocateAddress'/>
1916
+ <input>
1917
+ <soap:body use='literal'/>
1918
+ </input>
1919
+ <output>
1920
+ <soap:body use='literal'/>
1921
+ </output>
1922
+ </operation>
1923
+
1924
+ <operation name='ReleaseAddress'>
1925
+ <soap:operation soapAction='ReleaseAddress'/>
1926
+ <input>
1927
+ <soap:body use='literal'/>
1928
+ </input>
1929
+ <output>
1930
+ <soap:body use='literal'/>
1931
+ </output>
1932
+ </operation>
1933
+
1934
+ <operation name='DescribeAddresses'>
1935
+ <soap:operation soapAction='DescribeAddresses'/>
1936
+ <input>
1937
+ <soap:body use='literal'/>
1938
+ </input>
1939
+ <output>
1940
+ <soap:body use='literal'/>
1941
+ </output>
1942
+ </operation>
1943
+
1944
+ <operation name='AssociateAddress'>
1945
+ <soap:operation soapAction='AssociateAddress'/>
1946
+ <input>
1947
+ <soap:body use='literal'/>
1948
+ </input>
1949
+ <output>
1950
+ <soap:body use='literal'/>
1951
+ </output>
1952
+ </operation>
1953
+
1954
+ <operation name='DisassociateAddress'>
1955
+ <soap:operation soapAction='DisassociateAddress'/>
1956
+ <input>
1957
+ <soap:body use='literal'/>
1958
+ </input>
1959
+ <output>
1960
+ <soap:body use='literal'/>
1961
+ </output>
1962
+ </operation>
1963
+
1964
+ <operation name="CreateVolume">
1965
+ <soap:operation soapAction="CreateVolume" />
1966
+ <input>
1967
+ <soap:body use="literal"/>
1968
+ </input>
1969
+ <output>
1970
+ <soap:body use="literal"/>
1971
+ </output>
1972
+ </operation>
1973
+
1974
+ <operation name="DeleteVolume">
1975
+ <soap:operation soapAction="DeleteVolume" />
1976
+ <input>
1977
+ <soap:body use="literal"/>
1978
+ </input>
1979
+ <output>
1980
+ <soap:body use="literal"/>
1981
+ </output>
1982
+ </operation>
1983
+
1984
+ <operation name="DescribeVolumes">
1985
+ <soap:operation soapAction="DescribeVolumes" />
1986
+ <input>
1987
+ <soap:body use="literal"/>
1988
+ </input>
1989
+ <output>
1990
+ <soap:body use="literal"/>
1991
+ </output>
1992
+ </operation>
1993
+
1994
+ <operation name="AttachVolume">
1995
+ <soap:operation soapAction="AttachVolume" />
1996
+ <input>
1997
+ <soap:body use="literal"/>
1998
+ </input>
1999
+ <output>
2000
+ <soap:body use="literal"/>
2001
+ </output>
2002
+ </operation>
2003
+
2004
+ <operation name="DetachVolume">
2005
+ <soap:operation soapAction="DetachVolume" />
2006
+ <input>
2007
+ <soap:body use="literal"/>
2008
+ </input>
2009
+ <output>
2010
+ <soap:body use="literal"/>
2011
+ </output>
2012
+ </operation>
2013
+
2014
+ <operation name="CreateSnapshot">
2015
+ <soap:operation soapAction="CreateSnapshot" />
2016
+ <input>
2017
+ <soap:body use="literal"/>
2018
+ </input>
2019
+ <output>
2020
+ <soap:body use="literal"/>
2021
+ </output>
2022
+ </operation>
2023
+
2024
+ <operation name="DeleteSnapshot">
2025
+ <soap:operation soapAction="DeleteSnapshot" />
2026
+ <input>
2027
+ <soap:body use="literal"/>
2028
+ </input>
2029
+ <output>
2030
+ <soap:body use="literal"/>
2031
+ </output>
2032
+ </operation>
2033
+
2034
+ <operation name="DescribeSnapshots">
2035
+ <soap:operation soapAction="DescribeSnapshots" />
2036
+ <input>
2037
+ <soap:body use="literal"/>
2038
+ </input>
2039
+ <output>
2040
+ <soap:body use="literal"/>
2041
+ </output>
2042
+ </operation>
2043
+
2044
+ </binding>
2045
+
2046
+ <service name="AmazonEC2">
2047
+ <port name="AmazonEC2Port" binding="tns:AmazonEC2Binding">
2048
+ <soap:address location="https://ec2.amazonaws.com/" />
2049
+ </port>
2050
+ </service>
2051
+
2052
+ </definitions>