amazon-ec2 0.7.3 → 0.7.4
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +11 -0
- data/VERSION +1 -1
- data/amazon-ec2.gemspec +5 -3
- data/lib/AWS.rb +8 -4
- data/lib/AWS/EC2.rb +2 -2
- data/lib/AWS/EC2/availability_zones.rb +8 -0
- data/lib/AWS/EC2/console.rb +2 -0
- data/lib/AWS/EC2/devpay.rb +18 -0
- data/lib/AWS/EC2/elastic_ips.rb +37 -32
- data/lib/AWS/EC2/images.rb +43 -27
- data/lib/AWS/EC2/instances.rb +130 -97
- data/lib/AWS/EC2/keypairs.rb +3 -17
- data/lib/AWS/EC2/security_groups.rb +4 -23
- data/lib/AWS/EC2/snapshots.rb +31 -14
- data/lib/AWS/EC2/volumes.rb +6 -21
- data/lib/AWS/exceptions.rb +103 -25
- data/test/test_EC2_images.rb +32 -0
- data/test/test_EC2_instances.rb +204 -22
- data/wsdl/2009-10-31.ec2.wsdl +4261 -0
- metadata +4 -2
data/test/test_EC2_images.rb
CHANGED
@@ -15,6 +15,12 @@ context "An EC2 image " do
|
|
15
15
|
before do
|
16
16
|
@ec2 = AWS::EC2::Base.new( :access_key_id => "not a key", :secret_access_key => "not a secret" )
|
17
17
|
|
18
|
+
@create_image_response_body = <<-RESPONSE
|
19
|
+
<CreateImageResponse xmlns="http://ec2.amazonaws.com/doc/2009-10-31/">
|
20
|
+
<imageId>ami-4fa54026</imageId>
|
21
|
+
</CreateImageResponse>
|
22
|
+
RESPONSE
|
23
|
+
|
18
24
|
@register_image_response_body = <<-RESPONSE
|
19
25
|
<RegisterImageResponse xmlns="http://ec2.amazonaws.com/doc/2007-03-01">
|
20
26
|
<imageId>ami-61a54008</imageId>
|
@@ -56,6 +62,32 @@ context "An EC2 image " do
|
|
56
62
|
end
|
57
63
|
|
58
64
|
|
65
|
+
specify "should be able to be created" do
|
66
|
+
@ec2.stubs(:make_request).with('CreateImage', {"InstanceId"=>"fooid", "Name" => "fooname", "Description" => "foodesc", "NoReboot" => "true"}).
|
67
|
+
returns stub(:body => @create_image_response_body, :is_a? => true)
|
68
|
+
@ec2.create_image(:instance_id => "fooid", :name => "fooname", :description => "foodesc", :no_reboot => true).should.be.an.instance_of Hash
|
69
|
+
@ec2.create_image(:instance_id => "fooid", :name => "fooname", :description => "foodesc", :no_reboot => true).imageId.should.equal "ami-4fa54026"
|
70
|
+
end
|
71
|
+
|
72
|
+
|
73
|
+
specify "method create_image should raise an exception when called with nil/empty string arguments" do
|
74
|
+
lambda { @ec2.create_image() }.should.raise(AWS::ArgumentError)
|
75
|
+
lambda { @ec2.create_image(:instance_id => "", :name => "fooname") }.should.raise(AWS::ArgumentError)
|
76
|
+
lambda { @ec2.create_image(:instance_id => "fooid", :name => "") }.should.raise(AWS::ArgumentError)
|
77
|
+
lambda { @ec2.create_image(:instance_id => nil, :name => "fooname") }.should.raise(AWS::ArgumentError)
|
78
|
+
lambda { @ec2.create_image(:instance_id => "fooid", :name => nil) }.should.raise(AWS::ArgumentError)
|
79
|
+
end
|
80
|
+
|
81
|
+
|
82
|
+
specify "method create_image should raise an exception when called with bad arguments" do
|
83
|
+
lambda { @ec2.create_image(:instance_id => "fooid", :name => "f"*2) }.should.raise(AWS::ArgumentError)
|
84
|
+
lambda { @ec2.create_image(:instance_id => "fooid", :name => "f"*129) }.should.raise(AWS::ArgumentError)
|
85
|
+
lambda { @ec2.create_image(:instance_id => "fooid", :name => "f"*128, :description => "f"*256) }.should.raise(AWS::ArgumentError)
|
86
|
+
lambda { @ec2.create_image(:instance_id => "fooid", :name => "f"*128, :no_reboot => "true") }.should.raise(AWS::ArgumentError)
|
87
|
+
lambda { @ec2.create_image(:instance_id => "fooid", :name => "f"*128, :no_reboot => "false") }.should.raise(AWS::ArgumentError)
|
88
|
+
end
|
89
|
+
|
90
|
+
|
59
91
|
specify "should be able to be registered" do
|
60
92
|
@ec2.stubs(:make_request).with('RegisterImage', {"ImageLocation"=>"mybucket-myimage.manifest.xml"}).
|
61
93
|
returns stub(:body => @register_image_response_body, :is_a? => true)
|
data/test/test_EC2_instances.rb
CHANGED
@@ -111,6 +111,43 @@ context "EC2 instances " do
|
|
111
111
|
</RebootInstancesResponse>
|
112
112
|
RESPONSE
|
113
113
|
|
114
|
+
@start_instances_response_body = <<-RESPONSE
|
115
|
+
<StartInstancesResponse xmlns="http://ec2.amazonaws.com/doc/2009-10-31/">
|
116
|
+
<instancesSet>
|
117
|
+
<item>
|
118
|
+
<instanceId>i-10a64379</instanceId>
|
119
|
+
<currentState>
|
120
|
+
<code>0</code>
|
121
|
+
<name>pending</name>
|
122
|
+
</currentState>
|
123
|
+
<previousState>
|
124
|
+
<code>80</code>
|
125
|
+
<name>stopped</name>
|
126
|
+
</previousState>
|
127
|
+
</item>
|
128
|
+
</instancesSet>
|
129
|
+
</StartInstancesResponse>
|
130
|
+
RESPONSE
|
131
|
+
|
132
|
+
|
133
|
+
@stop_instances_response_body = <<-RESPONSE
|
134
|
+
<StopInstancesResponse xmlns="http://ec2.amazonaws.com/doc/2009-10-31/">
|
135
|
+
<instancesSet>
|
136
|
+
<item>
|
137
|
+
<instanceId>i-28a64341</instanceId>
|
138
|
+
<currentState>
|
139
|
+
<code>64</code>
|
140
|
+
<name>stopping</name>
|
141
|
+
</currentState>
|
142
|
+
<previousState>
|
143
|
+
<code>16</code>
|
144
|
+
<name>running</name>
|
145
|
+
</previousState>
|
146
|
+
</item>
|
147
|
+
</instancesSet>
|
148
|
+
</StopInstancesResponse>
|
149
|
+
RESPONSE
|
150
|
+
|
114
151
|
@terminate_instances_response_body = <<-RESPONSE
|
115
152
|
<TerminateInstancesResponse xmlns="http://ec2.amazonaws.com/doc/2007-03-01">
|
116
153
|
<instancesSet>
|
@@ -184,7 +221,7 @@ context "EC2 instances " do
|
|
184
221
|
|
185
222
|
|
186
223
|
specify "should be able to be run" do
|
187
|
-
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1'
|
224
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1').
|
188
225
|
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
189
226
|
|
190
227
|
@ec2.run_instances( :image_id => "ami-60a54009" ).should.be.an.instance_of Hash
|
@@ -194,8 +231,6 @@ context "EC2 instances " do
|
|
194
231
|
response.reservationId.should.equal "r-47a5402e"
|
195
232
|
response.ownerId.should.equal "495219933132"
|
196
233
|
|
197
|
-
response.groupSet.item[0].groupId.should.equal "default"
|
198
|
-
|
199
234
|
response.instancesSet.item.length.should.equal 3
|
200
235
|
|
201
236
|
response.instancesSet.item[0].instanceId.should.equal "i-2ba64342"
|
@@ -231,28 +266,93 @@ context "EC2 instances " do
|
|
231
266
|
|
232
267
|
|
233
268
|
specify "method 'run_instances' should reject invalid arguments" do
|
234
|
-
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1'
|
269
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1').
|
235
270
|
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
236
271
|
|
237
272
|
lambda { @ec2.run_instances() }.should.raise(AWS::ArgumentError)
|
273
|
+
|
274
|
+
# :addressing_type is deprecated
|
275
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :addressing_type => nil ) }.should.not.raise(AWS::ArgumentError)
|
276
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :addressing_type => "" ) }.should.raise(AWS::ArgumentError)
|
277
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :addressing_type => "foo" ) }.should.raise(AWS::ArgumentError)
|
278
|
+
|
279
|
+
# :group_id is deprecated
|
280
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :group_id => nil ) }.should.not.raise(AWS::ArgumentError)
|
281
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :group_id => "" ) }.should.raise(AWS::ArgumentError)
|
282
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :group_id => "foo" ) }.should.raise(AWS::ArgumentError)
|
283
|
+
|
284
|
+
# :image_id
|
285
|
+
lambda { @ec2.run_instances( :image_id => nil ) }.should.raise(AWS::ArgumentError)
|
238
286
|
lambda { @ec2.run_instances( :image_id => "" ) }.should.raise(AWS::ArgumentError)
|
239
287
|
|
288
|
+
# :min_count
|
240
289
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :min_count => 1 ) }.should.not.raise(AWS::ArgumentError)
|
241
290
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :min_count => 0 ) }.should.raise(AWS::ArgumentError)
|
242
291
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :min_count => nil ) }.should.raise(AWS::ArgumentError)
|
243
292
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :min_count => "" ) }.should.raise(AWS::ArgumentError)
|
293
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :min_count => "foo" ) }.should.raise(AWS::ArgumentError)
|
244
294
|
|
295
|
+
# :max_count
|
245
296
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :max_count => 1 ) }.should.not.raise(AWS::ArgumentError)
|
246
297
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :max_count => 0 ) }.should.raise(AWS::ArgumentError)
|
247
298
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :max_count => nil ) }.should.raise(AWS::ArgumentError)
|
248
299
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :max_count => "" ) }.should.raise(AWS::ArgumentError)
|
300
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :max_count => "foo" ) }.should.raise(AWS::ArgumentError)
|
249
301
|
|
250
|
-
|
251
|
-
|
252
|
-
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :
|
253
|
-
|
254
|
-
|
302
|
+
# :min_count & :max_count
|
303
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :min_count => 1, :max_count => 1 ) }.should.not.raise(AWS::ArgumentError)
|
304
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :min_count => 2, :max_count => 1 ) }.should.raise(AWS::ArgumentError)
|
305
|
+
|
306
|
+
# :instance_type
|
307
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "InstanceType" => 'm1.small').
|
308
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
309
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :instance_type => "m1.small" ) }.should.not.raise(AWS::ArgumentError)
|
310
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :instance_type => "m1.notarealsize" ) }.should.raise(AWS::ArgumentError)
|
311
|
+
|
312
|
+
# :monitoring_enabled
|
313
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "Monitoring.Enabled" => 'true').
|
314
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
315
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :monitoring_enabled => true ) }.should.not.raise(AWS::ArgumentError)
|
316
|
+
|
317
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "Monitoring.Enabled" => 'false').
|
318
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
319
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :monitoring_enabled => false ) }.should.not.raise(AWS::ArgumentError)
|
320
|
+
|
321
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "Monitoring.Enabled" => 'false').
|
322
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
323
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :monitoring_enabled => "foo" ) }.should.raise(AWS::ArgumentError)
|
324
|
+
|
325
|
+
# :disable_api_termination
|
326
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "DisableApiTermination" => 'true').
|
327
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
328
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :disable_api_termination => true ) }.should.not.raise(AWS::ArgumentError)
|
329
|
+
|
330
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "DisableApiTermination" => 'false').
|
331
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
332
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :disable_api_termination => false ) }.should.not.raise(AWS::ArgumentError)
|
333
|
+
|
334
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "DisableApiTermination" => 'false').
|
335
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
336
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :disable_api_termination => "foo" ) }.should.raise(AWS::ArgumentError)
|
337
|
+
|
338
|
+
# :instance_initiated_shutdown_behavior
|
339
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "InstanceInitiatedShutdownBehavior" => 'stop').
|
340
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
341
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :instance_initiated_shutdown_behavior => 'stop' ) }.should.not.raise(AWS::ArgumentError)
|
342
|
+
|
343
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "InstanceInitiatedShutdownBehavior" => 'terminate').
|
344
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
345
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :instance_initiated_shutdown_behavior => 'terminate' ) }.should.not.raise(AWS::ArgumentError)
|
346
|
+
|
347
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "InstanceInitiatedShutdownBehavior" => 'stop').
|
348
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
349
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :instance_initiated_shutdown_behavior => "foo" ) }.should.raise(AWS::ArgumentError)
|
350
|
+
|
351
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "InstanceInitiatedShutdownBehavior" => 'stop').
|
352
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
353
|
+
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :instance_initiated_shutdown_behavior => true ) }.should.raise(AWS::ArgumentError)
|
255
354
|
|
355
|
+
# :base64_encoded
|
256
356
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :base64_encoded => true ) }.should.not.raise(AWS::ArgumentError)
|
257
357
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :base64_encoded => false ) }.should.not.raise(AWS::ArgumentError)
|
258
358
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :base64_encoded => nil ) }.should.raise(AWS::ArgumentError)
|
@@ -260,29 +360,88 @@ context "EC2 instances " do
|
|
260
360
|
lambda { @ec2.run_instances( :image_id => "ami-60a54009", :base64_encoded => "foo" ) }.should.raise(AWS::ArgumentError)
|
261
361
|
end
|
262
362
|
|
363
|
+
specify "should be able specify a key_name" do
|
364
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "KeyName" => 'foo').
|
365
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
366
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :key_name => "foo" ).should.be.an.instance_of Hash
|
367
|
+
end
|
368
|
+
|
369
|
+
specify "should be able specify a security_group" do
|
370
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "SecurityGroup" => 'foo').
|
371
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
372
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :security_group => "foo" ).should.be.an.instance_of Hash
|
373
|
+
end
|
263
374
|
|
264
|
-
specify "should be able specify
|
265
|
-
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "
|
375
|
+
specify "should be able specify additional_info" do
|
376
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "AdditionalInfo" => 'foo').
|
266
377
|
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
267
|
-
@ec2.run_instances( :image_id => "ami-60a54009", :
|
378
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :additional_info => "foo" ).should.be.an.instance_of Hash
|
268
379
|
end
|
269
380
|
|
270
381
|
specify "should be able to call run_instances with :user_data and :base64_encoded => true (default is false)" do
|
271
|
-
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "UserData" => "Zm9v"
|
382
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "UserData" => "Zm9v").
|
383
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
384
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :min_count => 1, :max_count => 1, :user_data => "foo", :base64_encoded => true ).should.be.an.instance_of Hash
|
385
|
+
end
|
386
|
+
|
387
|
+
specify "should be able to call run_instances with :user_data and :base64_encoded => false" do
|
388
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "UserData" => "foo").
|
272
389
|
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
273
|
-
@ec2.run_instances( :image_id => "ami-60a54009", :min_count => 1, :max_count => 1, :
|
390
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :min_count => 1, :max_count => 1, :user_data => "foo", :base64_encoded => false ).should.be.an.instance_of Hash
|
391
|
+
end
|
392
|
+
|
393
|
+
specify "should be able specify instance_type" do
|
394
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "InstanceType" => 'm1.small').
|
395
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
396
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :instance_type => "m1.small" ).should.be.an.instance_of Hash
|
397
|
+
end
|
398
|
+
|
399
|
+
specify "should be able specify an availability_zone (Placement.AvailabilityZone)" do
|
400
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', "Placement.AvailabilityZone" => "zone123").
|
401
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
402
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :availability_zone => "zone123" ).should.be.an.instance_of Hash
|
274
403
|
end
|
275
404
|
|
276
405
|
specify "should be able specify an kernel_id" do
|
277
|
-
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1',
|
406
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', 'KernelId' => 'kernfoo').
|
278
407
|
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
279
|
-
@ec2.run_instances( :image_id => "ami-60a54009", :
|
408
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :kernel_id => 'kernfoo' ).should.be.an.instance_of Hash
|
280
409
|
end
|
281
410
|
|
282
|
-
specify "should be able
|
283
|
-
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1',
|
411
|
+
specify "should be able specify an ramdisk_id" do
|
412
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', 'RamdiskId' => 'foo').
|
284
413
|
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
285
|
-
@ec2.run_instances( :image_id => "ami-60a54009", :
|
414
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :ramdisk_id => 'foo' ).should.be.an.instance_of Hash
|
415
|
+
end
|
416
|
+
|
417
|
+
specify "should be able specify monitoring_enabled" do
|
418
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', 'Monitoring.Enabled' => 'true').
|
419
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
420
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :monitoring_enabled => true ).should.be.an.instance_of Hash
|
421
|
+
end
|
422
|
+
|
423
|
+
specify "should be able specify an subnet_id" do
|
424
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', 'SubnetId' => 'foo').
|
425
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
426
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :subnet_id => 'foo' ).should.be.an.instance_of Hash
|
427
|
+
end
|
428
|
+
|
429
|
+
specify "should be able specify disable_api_termination" do
|
430
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', 'DisableApiTermination' => 'true').
|
431
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
432
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :disable_api_termination => true ).should.be.an.instance_of Hash
|
433
|
+
end
|
434
|
+
|
435
|
+
specify "should be able specify instance_initiated_shutdown_behavior" do
|
436
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', 'InstanceInitiatedShutdownBehavior' => 'stop').
|
437
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
438
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :instance_initiated_shutdown_behavior => 'stop' ).should.be.an.instance_of Hash
|
439
|
+
end
|
440
|
+
|
441
|
+
specify "should be able specify block_device_mapping" do
|
442
|
+
@ec2.stubs(:make_request).with('RunInstances', "ImageId" => "ami-60a54009", "MinCount" => '1', "MaxCount" => '1', 'BlockDeviceMapping.1.DeviceName' => '/dev/sdh', 'BlockDeviceMapping.1.VirtualName' => 'foo', 'BlockDeviceMapping.1.Ebs.SnapshotId' => 'foosnap', 'BlockDeviceMapping.1.Ebs.VolumeSize' => 'foovolsize', 'BlockDeviceMapping.1.Ebs.DeleteOnTermination' => 'true', 'BlockDeviceMapping.2.DeviceName' => '/dev/sdi', 'BlockDeviceMapping.2.VirtualName' => 'foo2', 'BlockDeviceMapping.2.Ebs.SnapshotId' => 'foosnap2', 'BlockDeviceMapping.2.Ebs.VolumeSize' => 'foovolsize2', 'BlockDeviceMapping.2.Ebs.DeleteOnTermination' => 'false').
|
443
|
+
returns stub(:body => @run_instances_response_body, :is_a? => true)
|
444
|
+
@ec2.run_instances( :image_id => "ami-60a54009", :block_device_mapping => [{:device_name => '/dev/sdh', :virtual_name => 'foo', :ebs_snapshot_id => 'foosnap', :ebs_volume_size => 'foovolsize', :ebs_delete_on_termination => true},{:device_name => '/dev/sdi', :virtual_name => 'foo2', :ebs_snapshot_id => 'foosnap2', :ebs_volume_size => 'foovolsize2', :ebs_delete_on_termination => false}] ).should.be.an.instance_of Hash
|
286
445
|
end
|
287
446
|
|
288
447
|
specify "should get no user data for when options has no user_data key" do
|
@@ -314,7 +473,6 @@ context "EC2 instances " do
|
|
314
473
|
response = @ec2.describe_instances
|
315
474
|
response.reservationSet.item[0].reservationId.should.equal "r-44a5402d"
|
316
475
|
response.reservationSet.item[0].ownerId.should.equal "UYY3TLBUXIEON5NQVUUX6OMPWBZIQNFM"
|
317
|
-
response.reservationSet.item[0].groupSet.item[0].groupId.should.equal "default"
|
318
476
|
response.reservationSet.item[0].instancesSet.item[0].instanceId.should.equal "i-28a64341"
|
319
477
|
response.reservationSet.item[0].instancesSet.item[0].imageId.should.equal "ami-6ea54007"
|
320
478
|
response.reservationSet.item[0].instancesSet.item[0].instanceState.code.should.equal "0"
|
@@ -333,7 +491,6 @@ context "EC2 instances " do
|
|
333
491
|
response = @ec2.describe_instances( :instance_id => "i-28a64341" )
|
334
492
|
response.reservationSet.item[0].reservationId.should.equal "r-44a5402d"
|
335
493
|
response.reservationSet.item[0].ownerId.should.equal "UYY3TLBUXIEON5NQVUUX6OMPWBZIQNFM"
|
336
|
-
response.reservationSet.item[0].groupSet.item[0].groupId.should.equal "default"
|
337
494
|
response.reservationSet.item[0].instancesSet.item[0].instanceId.should.equal "i-28a64341"
|
338
495
|
response.reservationSet.item[0].instancesSet.item[0].imageId.should.equal "ami-6ea54007"
|
339
496
|
response.reservationSet.item[0].instancesSet.item[0].instanceState.code.should.equal "0"
|
@@ -359,13 +516,38 @@ context "EC2 instances " do
|
|
359
516
|
end
|
360
517
|
|
361
518
|
|
519
|
+
specify "method start_instances should raise an exception when called without nil/empty string arguments" do
|
520
|
+
lambda { @ec2.start_instances() }.should.raise(AWS::ArgumentError)
|
521
|
+
lambda { @ec2.start_instances( :instance_id => nil ) }.should.raise(AWS::ArgumentError)
|
522
|
+
lambda { @ec2.start_instances( :instance_id => "" ) }.should.raise(AWS::ArgumentError)
|
523
|
+
end
|
524
|
+
|
525
|
+
|
526
|
+
specify "should be able to be started when provided with an :instance_id" do
|
527
|
+
@ec2.stubs(:make_request).with('StartInstances', {"InstanceId.1"=>"i-28a64341", "InstanceId.2"=>"i-21a64348"}).
|
528
|
+
returns stub(:body => @start_instances_response_body, :is_a? => true)
|
529
|
+
@ec2.start_instances( :instance_id => ["i-28a64341", "i-21a64348"] ).class.should.equal Hash
|
530
|
+
end
|
531
|
+
|
532
|
+
|
533
|
+
specify "method stop_instances should raise an exception when called without nil/empty string arguments" do
|
534
|
+
lambda { @ec2.stop_instances() }.should.raise(AWS::ArgumentError)
|
535
|
+
lambda { @ec2.stop_instances( :instance_id => nil ) }.should.raise(AWS::ArgumentError)
|
536
|
+
lambda { @ec2.stop_instances( :instance_id => "" ) }.should.raise(AWS::ArgumentError)
|
537
|
+
end
|
538
|
+
|
539
|
+
specify "should be able to be stopped when provided with an :instance_id" do
|
540
|
+
@ec2.stubs(:make_request).with('StopInstances', {"InstanceId.1"=>"i-28a64341", "InstanceId.2"=>"i-21a64348"}).
|
541
|
+
returns stub(:body => @stop_instances_response_body, :is_a? => true)
|
542
|
+
@ec2.stop_instances( :instance_id => ["i-28a64341", "i-21a64348"] ).class.should.equal Hash
|
543
|
+
end
|
544
|
+
|
362
545
|
specify "method terminate_instances should raise an exception when called without nil/empty string arguments" do
|
363
546
|
lambda { @ec2.terminate_instances() }.should.raise(AWS::ArgumentError)
|
364
547
|
lambda { @ec2.terminate_instances( :instance_id => nil ) }.should.raise(AWS::ArgumentError)
|
365
548
|
lambda { @ec2.terminate_instances( :instance_id => "" ) }.should.raise(AWS::ArgumentError)
|
366
549
|
end
|
367
550
|
|
368
|
-
|
369
551
|
specify "should be able to be terminated when provided with an :instance_id" do
|
370
552
|
@ec2.stubs(:make_request).with('TerminateInstances', {"InstanceId.1"=>"i-28a64341", "InstanceId.2"=>"i-21a64348"}).
|
371
553
|
returns stub(:body => @terminate_instances_response_body, :is_a? => true)
|
@@ -0,0 +1,4261 @@
|
|
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/2009-10-31/"
|
4
|
+
targetNamespace="http://ec2.amazonaws.com/doc/2009-10-31/">
|
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/2009-10-31/"
|
10
|
+
targetNamespace="http://ec2.amazonaws.com/doc/2009-10-31/"
|
11
|
+
elementFormDefault="qualified">
|
12
|
+
|
13
|
+
<xs:annotation>
|
14
|
+
<xs:documentation xml:lang="en">
|
15
|
+
|
16
|
+
</xs:documentation>
|
17
|
+
</xs:annotation>
|
18
|
+
|
19
|
+
<!-- CreateImage -->
|
20
|
+
|
21
|
+
<xs:element name='CreateImage' type='tns:CreateImageType' />
|
22
|
+
|
23
|
+
<xs:complexType name='CreateImageType'>
|
24
|
+
<xs:sequence>
|
25
|
+
<xs:element name='instanceId' type='xs:string' />
|
26
|
+
<xs:element name='name' type='xs:string' />
|
27
|
+
<xs:element name='description' type='xs:string' minOccurs='0' />
|
28
|
+
<xs:element name='noReboot' type='xs:boolean' minOccurs='0' />
|
29
|
+
</xs:sequence>
|
30
|
+
</xs:complexType>
|
31
|
+
|
32
|
+
<xs:element name='CreateImageResponse' type='tns:CreateImageResponseType' />
|
33
|
+
|
34
|
+
<xs:complexType name='CreateImageResponseType'>
|
35
|
+
<xs:sequence>
|
36
|
+
<xs:element name='requestId' type='xs:string' />
|
37
|
+
<xs:element name='imageId' type='xs:string' />
|
38
|
+
</xs:sequence>
|
39
|
+
</xs:complexType>
|
40
|
+
|
41
|
+
|
42
|
+
<!-- RegisterImage -->
|
43
|
+
|
44
|
+
<xs:complexType name='ProductCodeType'>
|
45
|
+
<xs:sequence>
|
46
|
+
<xs:element name='productCode' type='xs:string' />
|
47
|
+
</xs:sequence>
|
48
|
+
</xs:complexType>
|
49
|
+
<xs:complexType name='ProductCodeSetType'>
|
50
|
+
<xs:sequence>
|
51
|
+
<xs:element name='item' type='tns:ProductCodeType' minOccurs='0' maxOccurs='unbounded' />
|
52
|
+
</xs:sequence>
|
53
|
+
</xs:complexType>
|
54
|
+
|
55
|
+
|
56
|
+
<xs:element name='RegisterImage' type='tns:RegisterImageType' />
|
57
|
+
<xs:element name='RegisterImageResponse' type='tns:RegisterImageResponseType' />
|
58
|
+
<xs:complexType name='RegisterImageType'>
|
59
|
+
<xs:sequence>
|
60
|
+
<xs:element name='imageLocation' type='xs:string' minOccurs='0' />
|
61
|
+
<xs:element name='name' type='xs:string' />
|
62
|
+
<xs:element name='description' type='xs:string' minOccurs='0' />
|
63
|
+
<xs:element name='architecture' type='xs:string' minOccurs='0' />
|
64
|
+
<xs:element name='kernelId' type='xs:string' minOccurs='0' />
|
65
|
+
<xs:element name='ramdiskId' type='xs:string' minOccurs='0' />
|
66
|
+
<xs:element name='rootDeviceName' type='xs:string' minOccurs='0' />
|
67
|
+
<xs:element name='blockDeviceMapping' type='tns:BlockDeviceMappingType' minOccurs='0' />
|
68
|
+
</xs:sequence>
|
69
|
+
</xs:complexType>
|
70
|
+
<xs:complexType name='RegisterImageResponseType'>
|
71
|
+
<xs:sequence>
|
72
|
+
<xs:element name='requestId' type='xs:string' />
|
73
|
+
<xs:element name='imageId' type='xs:string' />
|
74
|
+
</xs:sequence>
|
75
|
+
</xs:complexType>
|
76
|
+
|
77
|
+
<!-- DeregisterImage request definitions -->
|
78
|
+
|
79
|
+
<xs:element name="DeregisterImage" type="tns:DeregisterImageType"/>
|
80
|
+
|
81
|
+
<xs:complexType name="DeregisterImageType">
|
82
|
+
<xs:sequence>
|
83
|
+
<xs:element name="imageId" type="xs:string"/>
|
84
|
+
</xs:sequence>
|
85
|
+
</xs:complexType>
|
86
|
+
|
87
|
+
<!-- DeregisterImage response definitions -->
|
88
|
+
|
89
|
+
<xs:element name="DeregisterImageResponse" type="tns:DeregisterImageResponseType"/>
|
90
|
+
|
91
|
+
<xs:complexType name="DeregisterImageResponseType">
|
92
|
+
<xs:sequence>
|
93
|
+
<xs:element name="requestId" type="xs:string"/>
|
94
|
+
<xs:element name="return" type="xs:boolean"/>
|
95
|
+
</xs:sequence>
|
96
|
+
</xs:complexType>
|
97
|
+
|
98
|
+
<!-- CreateKeyPair request definitions -->
|
99
|
+
|
100
|
+
<xs:element name="CreateKeyPair" type="tns:CreateKeyPairType"/>
|
101
|
+
|
102
|
+
<xs:complexType name="CreateKeyPairType">
|
103
|
+
<xs:sequence>
|
104
|
+
<xs:element name="keyName" type="xs:string"/>
|
105
|
+
</xs:sequence>
|
106
|
+
</xs:complexType>
|
107
|
+
|
108
|
+
<!-- CreateKeyPair response definitions -->
|
109
|
+
|
110
|
+
<xs:element name="CreateKeyPairResponse" type="tns:CreateKeyPairResponseType"/>
|
111
|
+
|
112
|
+
<xs:complexType name="CreateKeyPairResponseType">
|
113
|
+
<xs:sequence>
|
114
|
+
<xs:element name="requestId" type="xs:string"/>
|
115
|
+
<xs:element name="keyName" type="xs:string"/>
|
116
|
+
<xs:element name="keyFingerprint" type="xs:string"/>
|
117
|
+
<xs:element name="keyMaterial" type="xs:string"/>
|
118
|
+
</xs:sequence>
|
119
|
+
</xs:complexType>
|
120
|
+
|
121
|
+
<!-- DeleteKeyPair request definitions -->
|
122
|
+
|
123
|
+
<xs:element name="DeleteKeyPair" type="tns:DeleteKeyPairType" />
|
124
|
+
|
125
|
+
<xs:complexType name="DeleteKeyPairType">
|
126
|
+
<xs:sequence>
|
127
|
+
<xs:element name="keyName" type="xs:string"/>
|
128
|
+
</xs:sequence>
|
129
|
+
</xs:complexType>
|
130
|
+
|
131
|
+
<!-- DeleteKeyPair response definitions -->
|
132
|
+
|
133
|
+
<xs:element name="DeleteKeyPairResponse" type="tns:DeleteKeyPairResponseType"/>
|
134
|
+
|
135
|
+
<xs:complexType name="DeleteKeyPairResponseType">
|
136
|
+
<xs:sequence>
|
137
|
+
<xs:element name="requestId" type="xs:string"/>
|
138
|
+
<xs:element name="return" type="xs:boolean"/>
|
139
|
+
</xs:sequence>
|
140
|
+
</xs:complexType>
|
141
|
+
|
142
|
+
<!-- DescribeKeyPairs Request definitions -->
|
143
|
+
|
144
|
+
<xs:element name="DescribeKeyPairs" type="tns:DescribeKeyPairsType"/>
|
145
|
+
|
146
|
+
<xs:complexType name="DescribeKeyPairsType">
|
147
|
+
<xs:sequence>
|
148
|
+
<xs:element name="keySet" type="tns:DescribeKeyPairsInfoType"/>
|
149
|
+
</xs:sequence>
|
150
|
+
</xs:complexType>
|
151
|
+
|
152
|
+
<xs:complexType name="DescribeKeyPairsInfoType">
|
153
|
+
<xs:sequence>
|
154
|
+
<xs:element name="item" type="tns:DescribeKeyPairsItemType" minOccurs="0" maxOccurs="unbounded"/>
|
155
|
+
</xs:sequence>
|
156
|
+
</xs:complexType>
|
157
|
+
|
158
|
+
<xs:complexType name="DescribeKeyPairsItemType">
|
159
|
+
<xs:sequence>
|
160
|
+
<xs:element name="keyName" type="xs:string"/>
|
161
|
+
</xs:sequence>
|
162
|
+
</xs:complexType>
|
163
|
+
|
164
|
+
<!-- DescribeKeyPairs Response definitions -->
|
165
|
+
|
166
|
+
<xs:element name="DescribeKeyPairsResponse" type="tns:DescribeKeyPairsResponseType"/>
|
167
|
+
|
168
|
+
<xs:complexType name="DescribeKeyPairsResponseType">
|
169
|
+
<xs:sequence>
|
170
|
+
<xs:element name="requestId" type="xs:string"/>
|
171
|
+
<xs:element name="keySet" type="tns:DescribeKeyPairsResponseInfoType"/>
|
172
|
+
</xs:sequence>
|
173
|
+
</xs:complexType>
|
174
|
+
|
175
|
+
<xs:complexType name="DescribeKeyPairsResponseInfoType">
|
176
|
+
<xs:sequence>
|
177
|
+
<xs:element name="item" type="tns:DescribeKeyPairsResponseItemType" minOccurs="0" maxOccurs="unbounded"/>
|
178
|
+
</xs:sequence>
|
179
|
+
</xs:complexType>
|
180
|
+
|
181
|
+
<xs:complexType name="DescribeKeyPairsResponseItemType">
|
182
|
+
<xs:sequence>
|
183
|
+
<xs:element name="keyName" type="xs:string" />
|
184
|
+
<xs:element name="keyFingerprint" type="xs:string" />
|
185
|
+
</xs:sequence>
|
186
|
+
</xs:complexType>
|
187
|
+
|
188
|
+
<!-- RunInstances request definitions -->
|
189
|
+
|
190
|
+
<xs:element name="RunInstances" type="tns:RunInstancesType"/>
|
191
|
+
|
192
|
+
<xs:complexType name="RunInstancesType">
|
193
|
+
<xs:sequence>
|
194
|
+
<xs:element name="imageId" type="xs:string"/>
|
195
|
+
<xs:element name="minCount" type="xs:int"/>
|
196
|
+
<xs:element name="maxCount" type="xs:int"/>
|
197
|
+
<xs:element name="keyName" type="xs:string" minOccurs="0" />
|
198
|
+
<xs:element name="groupSet" type="tns:GroupSetType"/>
|
199
|
+
<xs:element name="additionalInfo" type="xs:string" minOccurs="0"/>
|
200
|
+
<xs:element name="userData" type="tns:UserDataType" minOccurs="0" maxOccurs="1"/>
|
201
|
+
<xs:element name="addressingType" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
202
|
+
<xs:element name="instanceType" type="xs:string" />
|
203
|
+
<xs:element name="placement" type="tns:PlacementRequestType" minOccurs="0" maxOccurs="1" />
|
204
|
+
<xs:element name="kernelId" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
205
|
+
<xs:element name="ramdiskId" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
206
|
+
<xs:element name="blockDeviceMapping" type="tns:BlockDeviceMappingType" minOccurs="0" maxOccurs="1" />
|
207
|
+
<xs:element name="monitoring" type="tns:MonitoringInstanceType" minOccurs="0" maxOccurs="1" />
|
208
|
+
<xs:element name="subnetId" type="xs:string" minOccurs="0" maxOccurs="1" />
|
209
|
+
<xs:element name="disableApiTermination" type="xs:boolean" minOccurs="0" maxOccurs="1" />
|
210
|
+
<xs:element name="instanceInitiatedShutdownBehavior" type="xs:string" minOccurs="0" maxOccurs="1" />
|
211
|
+
</xs:sequence>
|
212
|
+
</xs:complexType>
|
213
|
+
|
214
|
+
<xs:complexType name="GroupSetType">
|
215
|
+
<xs:sequence>
|
216
|
+
<xs:element name="item" type="tns:GroupItemType" minOccurs="0" maxOccurs="unbounded"/>
|
217
|
+
</xs:sequence>
|
218
|
+
</xs:complexType>
|
219
|
+
|
220
|
+
<xs:complexType name="GroupItemType">
|
221
|
+
<xs:sequence>
|
222
|
+
<xs:element name="groupId" type="xs:string"/>
|
223
|
+
</xs:sequence>
|
224
|
+
</xs:complexType>
|
225
|
+
|
226
|
+
<xs:complexType name="UserDataType" mixed="true">
|
227
|
+
<xs:sequence>
|
228
|
+
<xs:element name="data" type="xs:string" minOccurs="0"/>
|
229
|
+
</xs:sequence>
|
230
|
+
<xs:attribute name="version" type="xs:string" use="required" fixed="1.0"/>
|
231
|
+
<xs:attribute name="encoding" type="xs:string" use="required" fixed="base64"/>
|
232
|
+
</xs:complexType>
|
233
|
+
|
234
|
+
<xs:complexType name="BlockDeviceMappingType">
|
235
|
+
<xs:sequence>
|
236
|
+
<xs:element name="item" type="tns:BlockDeviceMappingItemType" minOccurs="0" maxOccurs="unbounded" />
|
237
|
+
</xs:sequence>
|
238
|
+
</xs:complexType>
|
239
|
+
|
240
|
+
<xs:complexType name="BlockDeviceMappingItemType">
|
241
|
+
<xs:sequence>
|
242
|
+
<xs:element name="deviceName" type="xs:string"/>
|
243
|
+
<xs:choice>
|
244
|
+
<xs:element name="virtualName" type="xs:string"/>
|
245
|
+
<xs:element name="ebs" type="tns:EbsBlockDeviceType"/>
|
246
|
+
<xs:element name="noDevice" type="tns:EmptyElementType"/>
|
247
|
+
</xs:choice>
|
248
|
+
</xs:sequence>
|
249
|
+
</xs:complexType>
|
250
|
+
|
251
|
+
<xs:complexType name="EbsBlockDeviceType">
|
252
|
+
<xs:sequence>
|
253
|
+
<xs:element name="snapshotId" type="xs:string" minOccurs="0"/>
|
254
|
+
<xs:element name="volumeSize" type="xs:int" minOccurs="0"/>
|
255
|
+
<xs:element name="deleteOnTermination" type="xs:boolean" minOccurs="0"/>
|
256
|
+
</xs:sequence>
|
257
|
+
</xs:complexType>
|
258
|
+
|
259
|
+
<xs:complexType name="PlacementRequestType">
|
260
|
+
<xs:sequence>
|
261
|
+
<xs:element name="availabilityZone" type="xs:string" minOccurs="0" maxOccurs="1" />
|
262
|
+
</xs:sequence>
|
263
|
+
</xs:complexType>
|
264
|
+
|
265
|
+
<xs:complexType name="MonitoringInstanceType">
|
266
|
+
<xs:sequence>
|
267
|
+
<xs:element name="enabled" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
|
268
|
+
</xs:sequence>
|
269
|
+
</xs:complexType>
|
270
|
+
|
271
|
+
<!-- RunInstances response definitions -->
|
272
|
+
|
273
|
+
<xs:element name="RunInstancesResponse" type="tns:RunInstancesResponseType"/>
|
274
|
+
|
275
|
+
<xs:complexType name="RunInstancesResponseType">
|
276
|
+
<xs:sequence>
|
277
|
+
<xs:element name="requestId" type="xs:string"/>
|
278
|
+
<xs:element name="reservationId" type="xs:string"/>
|
279
|
+
<xs:element name="ownerId" type="xs:string"/>
|
280
|
+
<xs:element name="groupSet" type="tns:GroupSetType"/>
|
281
|
+
<xs:element name="instancesSet" type="tns:RunningInstancesSetType"/>
|
282
|
+
<xs:element name="requesterId" type="xs:string" minOccurs="0"/>
|
283
|
+
</xs:sequence>
|
284
|
+
</xs:complexType>
|
285
|
+
|
286
|
+
<xs:complexType name="ReservationInfoType">
|
287
|
+
<xs:sequence>
|
288
|
+
<xs:element name="reservationId" type="xs:string"/>
|
289
|
+
<xs:element name="ownerId" type="xs:string"/>
|
290
|
+
<xs:element name="groupSet" type="tns:GroupSetType"/>
|
291
|
+
<xs:element name="instancesSet" type="tns:RunningInstancesSetType"/>
|
292
|
+
<xs:element name="requesterId" type="xs:string" minOccurs="0"/>
|
293
|
+
</xs:sequence>
|
294
|
+
</xs:complexType>
|
295
|
+
|
296
|
+
<xs:complexType name="RunningInstancesSetType">
|
297
|
+
<xs:sequence>
|
298
|
+
<xs:element name="item" type="tns:RunningInstancesItemType" minOccurs="1" maxOccurs="unbounded"/>
|
299
|
+
</xs:sequence>
|
300
|
+
</xs:complexType>
|
301
|
+
|
302
|
+
<xs:complexType name="RunningInstancesItemType">
|
303
|
+
<xs:sequence>
|
304
|
+
<xs:element name="instanceId" type="xs:string"/>
|
305
|
+
<xs:element name="imageId" type="xs:string" minOccurs="0" />
|
306
|
+
<xs:element name="instanceState" type="tns:InstanceStateType"/>
|
307
|
+
<xs:element name="privateDnsName" type="xs:string"/>
|
308
|
+
<xs:element name="dnsName" type="xs:string" minOccurs="0" />
|
309
|
+
<xs:element name="reason" type="xs:string" minOccurs="0"/>
|
310
|
+
<xs:element name="keyName" type="xs:string" minOccurs="0"/>
|
311
|
+
<xs:element name="amiLaunchIndex" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
312
|
+
<xs:element name="productCodes" type="tns:ProductCodesSetType" minOccurs="0" maxOccurs="1" />
|
313
|
+
<xs:element name="instanceType" type="xs:string"/>
|
314
|
+
<xs:element name="launchTime" type="xs:dateTime" />
|
315
|
+
<xs:element name="placement" type="tns:PlacementResponseType" minOccurs="0"/>
|
316
|
+
<xs:element name="kernelId" type="xs:string" minOccurs="0"/>
|
317
|
+
<xs:element name="ramdiskId" type="xs:string" minOccurs="0"/>
|
318
|
+
<xs:element name="platform" type="xs:string" minOccurs="0"/>
|
319
|
+
<xs:element name="monitoring" type="tns:InstanceMonitoringStateType" minOccurs="0" maxOccurs="1" />
|
320
|
+
<xs:element name="subnetId" type="xs:string" minOccurs="0" />
|
321
|
+
<xs:element name="vpcId" type="xs:string" minOccurs="0" />
|
322
|
+
<xs:element name="privateIpAddress" type="xs:string" minOccurs="0" maxOccurs="1" />
|
323
|
+
<xs:element name="ipAddress" type="xs:string" minOccurs="0" maxOccurs="1" />
|
324
|
+
<xs:element name='stateReason' type='tns:StateReasonType' minOccurs="0" />
|
325
|
+
<xs:element name='architecture' type='xs:string' minOccurs='0' />
|
326
|
+
<xs:element name='rootDeviceType' type='xs:string' minOccurs='0' />
|
327
|
+
<xs:element name='rootDeviceName' type='xs:string' minOccurs='0' />
|
328
|
+
<xs:element name='blockDeviceMapping' type='tns:InstanceBlockDeviceMappingResponseType' minOccurs='0' />
|
329
|
+
</xs:sequence>
|
330
|
+
</xs:complexType>
|
331
|
+
|
332
|
+
<xs:complexType name="PlacementResponseType">
|
333
|
+
<xs:sequence>
|
334
|
+
<xs:element name="availabilityZone" type="xs:string" />
|
335
|
+
</xs:sequence>
|
336
|
+
</xs:complexType>
|
337
|
+
|
338
|
+
<xs:complexType name="StateReasonType">
|
339
|
+
<xs:sequence>
|
340
|
+
<xs:element name="code" type="xs:string"/>
|
341
|
+
<xs:element name="message" type="xs:string"/>
|
342
|
+
</xs:sequence>
|
343
|
+
</xs:complexType>
|
344
|
+
|
345
|
+
<xs:complexType name='InstanceBlockDeviceMappingResponseType'>
|
346
|
+
<xs:sequence>
|
347
|
+
<xs:element name='item' type='tns:InstanceBlockDeviceMappingResponseItemType' minOccurs='0' maxOccurs='unbounded' />
|
348
|
+
</xs:sequence>
|
349
|
+
</xs:complexType>
|
350
|
+
|
351
|
+
<xs:complexType name='InstanceBlockDeviceMappingResponseItemType'>
|
352
|
+
<xs:sequence>
|
353
|
+
<xs:element name='deviceName' type='xs:string' />
|
354
|
+
<xs:choice>
|
355
|
+
<xs:element name='ebs' type='tns:EbsInstanceBlockDeviceMappingResponseType' />
|
356
|
+
</xs:choice>
|
357
|
+
</xs:sequence>
|
358
|
+
</xs:complexType>
|
359
|
+
|
360
|
+
<xs:complexType name='EbsInstanceBlockDeviceMappingResponseType'>
|
361
|
+
<xs:sequence>
|
362
|
+
<xs:element name='volumeId' type='xs:string' />
|
363
|
+
<xs:element name='status' type='xs:string' />
|
364
|
+
<xs:element name='attachTime' type='xs:dateTime' />
|
365
|
+
<xs:element name='deleteOnTermination' type='xs:boolean' minOccurs='0' />
|
366
|
+
</xs:sequence>
|
367
|
+
</xs:complexType>
|
368
|
+
|
369
|
+
<!-- GetConsoleOutput request definitions -->
|
370
|
+
|
371
|
+
<xs:element name="GetConsoleOutput" type="tns:GetConsoleOutputType"/>
|
372
|
+
|
373
|
+
<xs:complexType name="GetConsoleOutputType">
|
374
|
+
<xs:sequence>
|
375
|
+
<xs:element name="instanceId" type="xs:string"/>
|
376
|
+
</xs:sequence>
|
377
|
+
</xs:complexType>
|
378
|
+
|
379
|
+
<!-- GetConsoleOutput response definitions -->
|
380
|
+
|
381
|
+
<xs:element name="GetConsoleOutputResponse" type="tns:GetConsoleOutputResponseType"/>
|
382
|
+
|
383
|
+
<xs:complexType name="GetConsoleOutputResponseType">
|
384
|
+
<xs:sequence>
|
385
|
+
<xs:element name="requestId" type="xs:string"/>
|
386
|
+
<xs:element name="instanceId" type="xs:string" />
|
387
|
+
<xs:element name="timestamp" type="xs:dateTime" />
|
388
|
+
<xs:element name="output" type="xs:string" />
|
389
|
+
</xs:sequence>
|
390
|
+
</xs:complexType>
|
391
|
+
|
392
|
+
<!-- GetPasswordData request definitions -->
|
393
|
+
|
394
|
+
<xs:element name="GetPasswordData" type="tns:GetPasswordDataType"/>
|
395
|
+
|
396
|
+
<xs:complexType name="GetPasswordDataType">
|
397
|
+
<xs:sequence>
|
398
|
+
<xs:element name="instanceId" type="xs:string"/>
|
399
|
+
</xs:sequence>
|
400
|
+
</xs:complexType>
|
401
|
+
|
402
|
+
<!-- GetPasswordData response definitions -->
|
403
|
+
|
404
|
+
<xs:element name="GetPasswordDataResponse" type="tns:GetPasswordDataResponseType"/>
|
405
|
+
|
406
|
+
<xs:complexType name="GetPasswordDataResponseType">
|
407
|
+
<xs:sequence>
|
408
|
+
<xs:element name="requestId" type="xs:string"/>
|
409
|
+
<xs:element name="instanceId" type="xs:string" />
|
410
|
+
<xs:element name="timestamp" type="xs:dateTime" />
|
411
|
+
<xs:element name="passwordData" type="xs:string" />
|
412
|
+
</xs:sequence>
|
413
|
+
</xs:complexType>
|
414
|
+
|
415
|
+
<!-- TerminateInstances -->
|
416
|
+
|
417
|
+
<xs:complexType name='InstanceIdType'>
|
418
|
+
<xs:sequence>
|
419
|
+
<xs:element name='instanceId' type='xs:string' />
|
420
|
+
</xs:sequence>
|
421
|
+
</xs:complexType>
|
422
|
+
<xs:complexType name='InstanceIdSetType'>
|
423
|
+
<xs:sequence>
|
424
|
+
<xs:element name='item' type='tns:InstanceIdType' minOccurs='0' maxOccurs='unbounded' />
|
425
|
+
</xs:sequence>
|
426
|
+
</xs:complexType>
|
427
|
+
<xs:complexType name='InstanceStateChangeType'>
|
428
|
+
<xs:sequence>
|
429
|
+
<xs:element name='instanceId' type='xs:string' />
|
430
|
+
<xs:element name='currentState' type='tns:InstanceStateType' />
|
431
|
+
<xs:element name='previousState' type='tns:InstanceStateType' />
|
432
|
+
</xs:sequence>
|
433
|
+
</xs:complexType>
|
434
|
+
<xs:complexType name='InstanceStateChangeSetType'>
|
435
|
+
<xs:sequence>
|
436
|
+
<xs:element name='item' type='tns:InstanceStateChangeType' minOccurs='0' maxOccurs='unbounded' />
|
437
|
+
</xs:sequence>
|
438
|
+
</xs:complexType>
|
439
|
+
|
440
|
+
<xs:element name='TerminateInstances' type='tns:TerminateInstancesType' />
|
441
|
+
<xs:element name='TerminateInstancesResponse' type='tns:TerminateInstancesResponseType' />
|
442
|
+
<xs:complexType name='TerminateInstancesType'>
|
443
|
+
<xs:sequence>
|
444
|
+
<xs:element name='instancesSet' type='tns:InstanceIdSetType' />
|
445
|
+
</xs:sequence>
|
446
|
+
</xs:complexType>
|
447
|
+
<xs:complexType name='TerminateInstancesResponseType'>
|
448
|
+
<xs:sequence>
|
449
|
+
<xs:element name='requestId' type='xs:string' />
|
450
|
+
<xs:element name='instancesSet' type='tns:InstanceStateChangeSetType' />
|
451
|
+
</xs:sequence>
|
452
|
+
</xs:complexType>
|
453
|
+
|
454
|
+
|
455
|
+
<xs:complexType name='InstanceBlockDeviceMappingType'>
|
456
|
+
<xs:sequence>
|
457
|
+
<xs:element name='item' type='tns:InstanceBlockDeviceMappingItemType' minOccurs='0' maxOccurs='unbounded' />
|
458
|
+
</xs:sequence>
|
459
|
+
</xs:complexType>
|
460
|
+
|
461
|
+
<xs:complexType name='InstanceBlockDeviceMappingItemType'>
|
462
|
+
<xs:sequence>
|
463
|
+
<xs:element name='deviceName' type='xs:string' />
|
464
|
+
<xs:choice>
|
465
|
+
<xs:element name='virtualName' type='xs:string' />
|
466
|
+
<xs:element name='ebs' type='tns:InstanceEbsBlockDeviceType' />
|
467
|
+
<xs:element name='noDevice' type='tns:EmptyElementType' />
|
468
|
+
</xs:choice>
|
469
|
+
</xs:sequence>
|
470
|
+
</xs:complexType>
|
471
|
+
|
472
|
+
<xs:complexType name='InstanceEbsBlockDeviceType'>
|
473
|
+
<xs:sequence>
|
474
|
+
<xs:element name='volumeId' type='xs:string' />
|
475
|
+
<xs:element name='deleteOnTermination' type='xs:boolean' minOccurs='0' />
|
476
|
+
</xs:sequence>
|
477
|
+
</xs:complexType>
|
478
|
+
|
479
|
+
<!-- Stop instances -->
|
480
|
+
|
481
|
+
<xs:element name='StopInstances' type='tns:StopInstancesType' />
|
482
|
+
<xs:element name='StopInstancesResponse' type='tns:StopInstancesResponseType' />
|
483
|
+
<xs:complexType name='StopInstancesType'>
|
484
|
+
<xs:sequence>
|
485
|
+
<xs:element name='instancesSet' type='tns:InstanceIdSetType' />
|
486
|
+
<xs:element name='force' type='xs:boolean' minOccurs='0' />
|
487
|
+
</xs:sequence>
|
488
|
+
</xs:complexType>
|
489
|
+
<xs:complexType name='StopInstancesResponseType'>
|
490
|
+
<xs:sequence>
|
491
|
+
<xs:element name='requestId' type='xs:string' />
|
492
|
+
<xs:element name='instancesSet' type='tns:InstanceStateChangeSetType' />
|
493
|
+
</xs:sequence>
|
494
|
+
</xs:complexType>
|
495
|
+
|
496
|
+
<!-- Start instances -->
|
497
|
+
<xs:element name='StartInstances' type='tns:StartInstancesType' />
|
498
|
+
<xs:element name='StartInstancesResponse' type='tns:StartInstancesResponseType' />
|
499
|
+
<xs:complexType name='StartInstancesType'>
|
500
|
+
<xs:sequence>
|
501
|
+
<xs:element name='instancesSet' type='tns:InstanceIdSetType' />
|
502
|
+
</xs:sequence>
|
503
|
+
</xs:complexType>
|
504
|
+
<xs:complexType name='StartInstancesResponseType'>
|
505
|
+
<xs:sequence>
|
506
|
+
<xs:element name='requestId' type='xs:string' />
|
507
|
+
<xs:element name='instancesSet' type='tns:InstanceStateChangeSetType' />
|
508
|
+
</xs:sequence>
|
509
|
+
</xs:complexType>
|
510
|
+
|
511
|
+
<!-- RebootInstances request definitions -->
|
512
|
+
<xs:element name="RebootInstances" type="tns:RebootInstancesType"/>
|
513
|
+
|
514
|
+
<xs:complexType name="RebootInstancesType">
|
515
|
+
<xs:sequence>
|
516
|
+
<xs:element name="instancesSet" type="tns:RebootInstancesInfoType"/>
|
517
|
+
</xs:sequence>
|
518
|
+
</xs:complexType>
|
519
|
+
|
520
|
+
<xs:complexType name="RebootInstancesInfoType">
|
521
|
+
<xs:sequence>
|
522
|
+
<xs:element name="item" type="tns:RebootInstancesItemType" minOccurs="1" maxOccurs="unbounded"/>
|
523
|
+
</xs:sequence>
|
524
|
+
</xs:complexType>
|
525
|
+
|
526
|
+
<xs:complexType name="RebootInstancesItemType">
|
527
|
+
<xs:sequence>
|
528
|
+
<xs:element name="instanceId" type="xs:string"/>
|
529
|
+
</xs:sequence>
|
530
|
+
</xs:complexType>
|
531
|
+
|
532
|
+
<!-- RebootInstances response definitions -->
|
533
|
+
|
534
|
+
<xs:element name="RebootInstancesResponse" type="tns:RebootInstancesResponseType"/>
|
535
|
+
|
536
|
+
<xs:complexType name="RebootInstancesResponseType">
|
537
|
+
<xs:sequence>
|
538
|
+
<xs:element name="requestId" type="xs:string"/>
|
539
|
+
<xs:element name="return" type="xs:boolean"/>
|
540
|
+
</xs:sequence>
|
541
|
+
</xs:complexType>
|
542
|
+
|
543
|
+
<!-- DescribeInstances Request definitions -->
|
544
|
+
|
545
|
+
<xs:element name="DescribeInstances" type="tns:DescribeInstancesType"/>
|
546
|
+
|
547
|
+
<xs:complexType name="DescribeInstancesType">
|
548
|
+
<xs:sequence>
|
549
|
+
<xs:element name="instancesSet" type="tns:DescribeInstancesInfoType"/>
|
550
|
+
</xs:sequence>
|
551
|
+
</xs:complexType>
|
552
|
+
|
553
|
+
<xs:complexType name="DescribeInstancesInfoType">
|
554
|
+
<xs:sequence>
|
555
|
+
<xs:element name="item" type="tns:DescribeInstancesItemType" minOccurs="0" maxOccurs="unbounded"/>
|
556
|
+
</xs:sequence>
|
557
|
+
</xs:complexType>
|
558
|
+
|
559
|
+
<xs:complexType name="DescribeInstancesItemType">
|
560
|
+
<xs:sequence>
|
561
|
+
<xs:element name="instanceId" type="xs:string" />
|
562
|
+
</xs:sequence>
|
563
|
+
</xs:complexType>
|
564
|
+
|
565
|
+
<!-- DescribeInstances Response definitions -->
|
566
|
+
|
567
|
+
<xs:element name="DescribeInstancesResponse" type="tns:DescribeInstancesResponseType"/>
|
568
|
+
|
569
|
+
<xs:complexType name="DescribeInstancesResponseType">
|
570
|
+
<xs:sequence>
|
571
|
+
<xs:element name="requestId" type="xs:string"/>
|
572
|
+
<xs:element name="reservationSet" type="tns:ReservationSetType"/>
|
573
|
+
</xs:sequence>
|
574
|
+
</xs:complexType>
|
575
|
+
|
576
|
+
<xs:complexType name="ReservationSetType">
|
577
|
+
<xs:sequence>
|
578
|
+
<xs:element name="item" type="tns:ReservationInfoType" minOccurs="0" maxOccurs="unbounded"/>
|
579
|
+
</xs:sequence>
|
580
|
+
</xs:complexType>
|
581
|
+
|
582
|
+
<!-- DescribeImages Request definitions -->
|
583
|
+
|
584
|
+
<xs:element name="DescribeImages" type="tns:DescribeImagesType"/>
|
585
|
+
|
586
|
+
<xs:complexType name="DescribeImagesType">
|
587
|
+
<xs:sequence>
|
588
|
+
<xs:element name="executableBySet" type="tns:DescribeImagesExecutableBySetType" minOccurs="0"/>
|
589
|
+
<xs:element name="imagesSet" type="tns:DescribeImagesInfoType"/>
|
590
|
+
<xs:element name="ownersSet" type="tns:DescribeImagesOwnersType" minOccurs="0"/>
|
591
|
+
</xs:sequence>
|
592
|
+
</xs:complexType>
|
593
|
+
|
594
|
+
<xs:complexType name="DescribeImagesInfoType">
|
595
|
+
<xs:sequence>
|
596
|
+
<xs:element name="item" type="tns:DescribeImagesItemType" minOccurs="0" maxOccurs="unbounded"/>
|
597
|
+
</xs:sequence>
|
598
|
+
</xs:complexType>
|
599
|
+
|
600
|
+
<xs:complexType name="DescribeImagesItemType">
|
601
|
+
<xs:sequence>
|
602
|
+
<xs:element name="imageId" type="xs:string"/>
|
603
|
+
</xs:sequence>
|
604
|
+
</xs:complexType>
|
605
|
+
|
606
|
+
<xs:complexType name="DescribeImagesOwnersType">
|
607
|
+
<xs:sequence>
|
608
|
+
<xs:element name="item" type="tns:DescribeImagesOwnerType" minOccurs="0" maxOccurs="unbounded"/>
|
609
|
+
</xs:sequence>
|
610
|
+
</xs:complexType>
|
611
|
+
|
612
|
+
<xs:complexType name="DescribeImagesOwnerType">
|
613
|
+
<xs:sequence>
|
614
|
+
<xs:element name="owner" type="xs:string"/>
|
615
|
+
</xs:sequence>
|
616
|
+
</xs:complexType>
|
617
|
+
|
618
|
+
<xs:complexType name="DescribeImagesExecutableBySetType" >
|
619
|
+
<xs:sequence>
|
620
|
+
<xs:element name="item" type="tns:DescribeImagesExecutableByType" minOccurs="0" maxOccurs="unbounded"/>
|
621
|
+
</xs:sequence>
|
622
|
+
</xs:complexType>
|
623
|
+
|
624
|
+
<xs:complexType name="DescribeImagesExecutableByType" >
|
625
|
+
<xs:sequence>
|
626
|
+
<xs:element name="user" type="xs:string" />
|
627
|
+
</xs:sequence>
|
628
|
+
</xs:complexType>
|
629
|
+
|
630
|
+
<!-- DescribeImages Response definitions -->
|
631
|
+
|
632
|
+
<xs:element name="DescribeImagesResponse" type="tns:DescribeImagesResponseType"/>
|
633
|
+
|
634
|
+
<xs:complexType name="DescribeImagesResponseType">
|
635
|
+
<xs:sequence>
|
636
|
+
<xs:element name="requestId" type="xs:string"/>
|
637
|
+
<xs:element name="imagesSet" type="tns:DescribeImagesResponseInfoType"/>
|
638
|
+
</xs:sequence>
|
639
|
+
</xs:complexType>
|
640
|
+
|
641
|
+
<xs:complexType name="DescribeImagesResponseInfoType">
|
642
|
+
<xs:sequence>
|
643
|
+
<xs:element name="item" type="tns:DescribeImagesResponseItemType" minOccurs="0" maxOccurs="unbounded"/>
|
644
|
+
</xs:sequence>
|
645
|
+
</xs:complexType>
|
646
|
+
|
647
|
+
<xs:complexType name="DescribeImagesResponseItemType">
|
648
|
+
<xs:sequence>
|
649
|
+
<xs:element name="imageId" type="xs:string" />
|
650
|
+
<xs:element name="imageLocation" type="xs:string" minOccurs="0" />
|
651
|
+
<xs:element name="imageState" type="xs:string" />
|
652
|
+
<xs:element name="imageOwnerId" type="xs:string" />
|
653
|
+
<xs:element name="isPublic" type="xs:boolean" />
|
654
|
+
<xs:element name="productCodes" type="tns:ProductCodesSetType" minOccurs="0" />
|
655
|
+
<xs:element name="architecture" type="xs:string" minOccurs="0"/>
|
656
|
+
<xs:element name="imageType" type="xs:string" minOccurs="0"/>
|
657
|
+
<xs:element name="kernelId" type="xs:string" minOccurs="0"/>
|
658
|
+
<xs:element name="ramdiskId" type="xs:string" minOccurs="0"/>
|
659
|
+
<xs:element name="platform" type="xs:string" minOccurs="0"/>
|
660
|
+
<xs:element name="stateReason" type="tns:StateReasonType" minOccurs="0"/>
|
661
|
+
<xs:element name="imageOwnerAlias" type="xs:string" minOccurs="0"/>
|
662
|
+
<xs:element name="name" type="xs:string" minOccurs="0" />
|
663
|
+
<xs:element name="description" type="xs:string" minOccurs="0"/>
|
664
|
+
<xs:element name='rootDeviceType' type='xs:string' minOccurs='0' />
|
665
|
+
<xs:element name="rootDeviceName" type="xs:string" minOccurs="0" />
|
666
|
+
<xs:element name="blockDeviceMapping" type="tns:BlockDeviceMappingType" minOccurs="0" />
|
667
|
+
</xs:sequence>
|
668
|
+
</xs:complexType>
|
669
|
+
|
670
|
+
<!-- CreateSecurityGroup Request definitions -->
|
671
|
+
|
672
|
+
<xs:element name="CreateSecurityGroup"
|
673
|
+
type="tns:CreateSecurityGroupType"/>
|
674
|
+
|
675
|
+
<xs:complexType name="CreateSecurityGroupType">
|
676
|
+
<xs:sequence>
|
677
|
+
<xs:element name="groupName" type="xs:string"/>
|
678
|
+
<xs:element name="groupDescription" type="xs:string"/>
|
679
|
+
</xs:sequence>
|
680
|
+
</xs:complexType>
|
681
|
+
|
682
|
+
<!-- CreateSecurityGroup Response definitions -->
|
683
|
+
|
684
|
+
<xs:element name="CreateSecurityGroupResponse"
|
685
|
+
type="tns:CreateSecurityGroupResponseType"/>
|
686
|
+
|
687
|
+
<xs:complexType name="CreateSecurityGroupResponseType">
|
688
|
+
<xs:sequence>
|
689
|
+
<xs:element name="requestId" type="xs:string"/>
|
690
|
+
<xs:element name="return" type="xs:boolean"/>
|
691
|
+
</xs:sequence>
|
692
|
+
</xs:complexType>
|
693
|
+
|
694
|
+
<!-- DeleteSecurityGroup Request definitions -->
|
695
|
+
|
696
|
+
<xs:element name="DeleteSecurityGroup"
|
697
|
+
type="tns:DeleteSecurityGroupType"/>
|
698
|
+
|
699
|
+
<xs:complexType name="DeleteSecurityGroupType">
|
700
|
+
<xs:sequence>
|
701
|
+
<xs:element name="groupName" type="xs:string"/>
|
702
|
+
</xs:sequence>
|
703
|
+
</xs:complexType>
|
704
|
+
|
705
|
+
<!-- DeleteSecurityGroup Response definitions -->
|
706
|
+
|
707
|
+
<xs:element name="DeleteSecurityGroupResponse"
|
708
|
+
type="tns:DeleteSecurityGroupResponseType"/>
|
709
|
+
|
710
|
+
<xs:complexType name="DeleteSecurityGroupResponseType">
|
711
|
+
<xs:sequence>
|
712
|
+
<xs:element name="requestId" type="xs:string"/>
|
713
|
+
<xs:element name="return" type="xs:boolean"/>
|
714
|
+
</xs:sequence>
|
715
|
+
</xs:complexType>
|
716
|
+
|
717
|
+
<!-- DescribeSecurityGroups Request definitions -->
|
718
|
+
|
719
|
+
<xs:element name="DescribeSecurityGroups"
|
720
|
+
type="tns:DescribeSecurityGroupsType"/>
|
721
|
+
|
722
|
+
<xs:complexType name="DescribeSecurityGroupsType">
|
723
|
+
<xs:sequence>
|
724
|
+
<xs:element name="securityGroupSet" type="tns:DescribeSecurityGroupsSetType"/>
|
725
|
+
</xs:sequence>
|
726
|
+
</xs:complexType>
|
727
|
+
|
728
|
+
<xs:complexType name="DescribeSecurityGroupsSetType">
|
729
|
+
<xs:sequence>
|
730
|
+
<xs:element name="item" type="tns:DescribeSecurityGroupsSetItemType"
|
731
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
732
|
+
</xs:sequence>
|
733
|
+
</xs:complexType>
|
734
|
+
|
735
|
+
<xs:complexType name="DescribeSecurityGroupsSetItemType">
|
736
|
+
<xs:sequence>
|
737
|
+
<xs:element name="groupName" type="xs:string"/>
|
738
|
+
</xs:sequence>
|
739
|
+
</xs:complexType>
|
740
|
+
|
741
|
+
<!-- DescribeSecurityGroups Response definitions -->
|
742
|
+
|
743
|
+
<xs:element name="DescribeSecurityGroupsResponse"
|
744
|
+
type="tns:DescribeSecurityGroupsResponseType"/>
|
745
|
+
|
746
|
+
<xs:complexType name="DescribeSecurityGroupsResponseType">
|
747
|
+
<xs:sequence>
|
748
|
+
<xs:element name="requestId" type="xs:string"/>
|
749
|
+
<xs:element name="securityGroupInfo" type="tns:SecurityGroupSetType"/>
|
750
|
+
</xs:sequence>
|
751
|
+
</xs:complexType>
|
752
|
+
|
753
|
+
<xs:complexType name="IpPermissionSetType">
|
754
|
+
<xs:sequence>
|
755
|
+
<xs:element name="item" type="tns:IpPermissionType"
|
756
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
757
|
+
</xs:sequence>
|
758
|
+
</xs:complexType>
|
759
|
+
|
760
|
+
<xs:complexType name="IpPermissionType">
|
761
|
+
<xs:sequence>
|
762
|
+
<xs:element name="ipProtocol" type="xs:string"/>
|
763
|
+
<xs:element name="fromPort" type="xs:int"/>
|
764
|
+
<xs:element name="toPort" type="xs:int"/>
|
765
|
+
<xs:element name="groups" type="tns:UserIdGroupPairSetType"/>
|
766
|
+
<xs:element name="ipRanges" type="tns:IpRangeSetType"/>
|
767
|
+
</xs:sequence>
|
768
|
+
</xs:complexType>
|
769
|
+
|
770
|
+
<xs:complexType name="IpRangeSetType">
|
771
|
+
<xs:sequence>
|
772
|
+
<xs:element name="item" type="tns:IpRangeItemType"
|
773
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
774
|
+
</xs:sequence>
|
775
|
+
</xs:complexType>
|
776
|
+
|
777
|
+
<xs:complexType name="IpRangeItemType">
|
778
|
+
<xs:sequence>
|
779
|
+
<xs:element name="cidrIp" type="xs:string"/>
|
780
|
+
</xs:sequence>
|
781
|
+
</xs:complexType>
|
782
|
+
|
783
|
+
<xs:complexType name="UserIdGroupPairSetType">
|
784
|
+
<xs:sequence>
|
785
|
+
<xs:element name="item" type="tns:UserIdGroupPairType"
|
786
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
787
|
+
</xs:sequence>
|
788
|
+
</xs:complexType>
|
789
|
+
|
790
|
+
<xs:complexType name="UserIdGroupPairType">
|
791
|
+
<xs:sequence>
|
792
|
+
<xs:element name="userId" type="xs:string"/>
|
793
|
+
<xs:element name="groupName" type="xs:string"/>
|
794
|
+
</xs:sequence>
|
795
|
+
</xs:complexType>
|
796
|
+
|
797
|
+
<xs:complexType name="SecurityGroupSetType">
|
798
|
+
<xs:sequence>
|
799
|
+
<xs:element name="item" type="tns:SecurityGroupItemType"
|
800
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
801
|
+
</xs:sequence>
|
802
|
+
</xs:complexType>
|
803
|
+
|
804
|
+
<xs:complexType name="SecurityGroupItemType">
|
805
|
+
<xs:sequence>
|
806
|
+
<xs:element name="ownerId" type="xs:string"/>
|
807
|
+
<xs:element name="groupName" type="xs:string"/>
|
808
|
+
<xs:element name="groupDescription" type="xs:string"/>
|
809
|
+
<xs:element name="ipPermissions" type="tns:IpPermissionSetType"/>
|
810
|
+
</xs:sequence>
|
811
|
+
</xs:complexType>
|
812
|
+
|
813
|
+
<!-- AuthorizeSecurityGroupIngress Request definitions -->
|
814
|
+
|
815
|
+
|
816
|
+
<xs:element name="AuthorizeSecurityGroupIngress"
|
817
|
+
type="tns:AuthorizeSecurityGroupIngressType"/>
|
818
|
+
|
819
|
+
<xs:complexType name="AuthorizeSecurityGroupIngressType">
|
820
|
+
<xs:sequence>
|
821
|
+
<xs:element name="userId" type="xs:string"/>
|
822
|
+
<xs:element name="groupName" type="xs:string"/>
|
823
|
+
<xs:element name="ipPermissions" type="tns:IpPermissionSetType"/>
|
824
|
+
</xs:sequence>
|
825
|
+
</xs:complexType>
|
826
|
+
|
827
|
+
<!-- AuthorizeSecurityGroupIngress Response definitions -->
|
828
|
+
|
829
|
+
<xs:element name="AuthorizeSecurityGroupIngressResponse"
|
830
|
+
type="tns:AuthorizeSecurityGroupIngressResponseType"/>
|
831
|
+
|
832
|
+
<xs:complexType name="AuthorizeSecurityGroupIngressResponseType">
|
833
|
+
<xs:sequence>
|
834
|
+
<xs:element name="requestId" type="xs:string"/>
|
835
|
+
<xs:element name="return" type="xs:boolean"/>
|
836
|
+
</xs:sequence>
|
837
|
+
</xs:complexType>
|
838
|
+
|
839
|
+
<!-- RevokeSecurityGroupIngress Request definitions -->
|
840
|
+
|
841
|
+
|
842
|
+
<xs:element name="RevokeSecurityGroupIngress"
|
843
|
+
type="tns:RevokeSecurityGroupIngressType"/>
|
844
|
+
|
845
|
+
<xs:complexType name="RevokeSecurityGroupIngressType">
|
846
|
+
<xs:sequence>
|
847
|
+
<xs:element name="userId" type="xs:string"/>
|
848
|
+
<xs:element name="groupName" type="xs:string"/>
|
849
|
+
<xs:element name="ipPermissions" type="tns:IpPermissionSetType"/>
|
850
|
+
</xs:sequence>
|
851
|
+
</xs:complexType>
|
852
|
+
|
853
|
+
<!-- RevokeSecurityGroupIngress Response definitions -->
|
854
|
+
|
855
|
+
<xs:element name="RevokeSecurityGroupIngressResponse"
|
856
|
+
type="tns:RevokeSecurityGroupIngressResponseType"/>
|
857
|
+
|
858
|
+
<xs:complexType name="RevokeSecurityGroupIngressResponseType">
|
859
|
+
<xs:sequence>
|
860
|
+
<xs:element name="requestId" type="xs:string"/>
|
861
|
+
<xs:element name="return" type="xs:boolean"/>
|
862
|
+
</xs:sequence>
|
863
|
+
</xs:complexType>
|
864
|
+
|
865
|
+
<!-- Instance state type definition -->
|
866
|
+
|
867
|
+
<xs:complexType name="InstanceStateType">
|
868
|
+
<xs:sequence>
|
869
|
+
<xs:element name="code" type="xs:int"/>
|
870
|
+
<xs:element name="name" type="xs:string"/>
|
871
|
+
</xs:sequence>
|
872
|
+
</xs:complexType>
|
873
|
+
|
874
|
+
<!-- ModifyInstanceAttribute Definitions -->
|
875
|
+
|
876
|
+
<xs:element name='ModifyInstanceAttribute' type='tns:ModifyInstanceAttributeType' />
|
877
|
+
|
878
|
+
<xs:complexType name='ModifyInstanceAttributeType'>
|
879
|
+
<xs:sequence>
|
880
|
+
<xs:element name='instanceId' type='xs:string' />
|
881
|
+
<xs:choice>
|
882
|
+
<xs:element name='instanceType' type='tns:AttributeValueType' />
|
883
|
+
<xs:element name='kernel' type='tns:AttributeValueType' />
|
884
|
+
<xs:element name='ramdisk' type='tns:AttributeValueType' />
|
885
|
+
<xs:element name="userData" type="tns:AttributeValueType"/>
|
886
|
+
<xs:element name='disableApiTermination' type='tns:AttributeBooleanValueType' />
|
887
|
+
<xs:element name='instanceInitiatedShutdownBehavior' type='tns:AttributeValueType' />
|
888
|
+
<xs:element name="blockDeviceMapping" type="tns:InstanceBlockDeviceMappingType"/>
|
889
|
+
</xs:choice>
|
890
|
+
</xs:sequence>
|
891
|
+
</xs:complexType>
|
892
|
+
|
893
|
+
|
894
|
+
<!-- ModifyInstanceAttributeResponse Definitions -->
|
895
|
+
|
896
|
+
<xs:element name='ModifyInstanceAttributeResponse' type='tns:ModifyInstanceAttributeResponseType' />
|
897
|
+
|
898
|
+
<xs:complexType name='ModifyInstanceAttributeResponseType'>
|
899
|
+
<xs:sequence>
|
900
|
+
<xs:element name='requestId' type='xs:string' />
|
901
|
+
<xs:element name='return' type='xs:boolean' />
|
902
|
+
</xs:sequence>
|
903
|
+
</xs:complexType>
|
904
|
+
|
905
|
+
<!-- ResetImageAttribute Definitions -->
|
906
|
+
|
907
|
+
<xs:element name='ResetInstanceAttribute' type='tns:ResetInstanceAttributeType' />
|
908
|
+
|
909
|
+
<xs:complexType name='ResetInstanceAttributeType'>
|
910
|
+
<xs:sequence>
|
911
|
+
<xs:element name='instanceId' type='xs:string' />
|
912
|
+
<xs:group ref='tns:ResetInstanceAttributesGroup'/>
|
913
|
+
</xs:sequence>
|
914
|
+
</xs:complexType>
|
915
|
+
|
916
|
+
<xs:group name='ResetInstanceAttributesGroup' >
|
917
|
+
<xs:choice>
|
918
|
+
<xs:element name='kernel' type='tns:EmptyElementType' />
|
919
|
+
<xs:element name='ramdisk' type='tns:EmptyElementType' />
|
920
|
+
</xs:choice>
|
921
|
+
</xs:group>
|
922
|
+
|
923
|
+
<!-- ResetInstanceAttributeResponse Definitions -->
|
924
|
+
|
925
|
+
<xs:element name='ResetInstanceAttributeResponse' type='tns:ResetInstanceAttributeResponseType' />
|
926
|
+
|
927
|
+
<xs:complexType name='ResetInstanceAttributeResponseType'>
|
928
|
+
<xs:sequence>
|
929
|
+
<xs:element name='requestId' type='xs:string' />
|
930
|
+
<xs:element name='return' type='xs:boolean' />
|
931
|
+
</xs:sequence>
|
932
|
+
</xs:complexType>
|
933
|
+
|
934
|
+
<!-- DescribeInstanceAttribute Definitions -->
|
935
|
+
|
936
|
+
<xs:element name='DescribeInstanceAttribute' type='tns:DescribeInstanceAttributeType' />
|
937
|
+
|
938
|
+
<xs:complexType name='DescribeInstanceAttributeType'>
|
939
|
+
<xs:sequence>
|
940
|
+
<xs:element name='instanceId' type='xs:string' />
|
941
|
+
<xs:group ref='tns:DescribeInstanceAttributesGroup' />
|
942
|
+
</xs:sequence>
|
943
|
+
</xs:complexType>
|
944
|
+
|
945
|
+
<xs:group name='DescribeInstanceAttributesGroup' >
|
946
|
+
<xs:choice>
|
947
|
+
<xs:element name='instanceType' type='tns:EmptyElementType' />
|
948
|
+
<xs:element name='kernel' type='tns:EmptyElementType' />
|
949
|
+
<xs:element name='ramdisk' type='tns:EmptyElementType' />
|
950
|
+
<xs:element name='userData' type='tns:EmptyElementType' />
|
951
|
+
<xs:element name='disableApiTermination' type='tns:EmptyElementType' />
|
952
|
+
<xs:element name='instanceInitiatedShutdownBehavior' type='tns:EmptyElementType' />
|
953
|
+
<xs:element name='rootDeviceName' type='tns:EmptyElementType' />
|
954
|
+
<xs:element name="blockDeviceMapping" type="tns:EmptyElementType"/>
|
955
|
+
</xs:choice>
|
956
|
+
</xs:group>
|
957
|
+
|
958
|
+
<!-- DescribeImageAttributeResponse Definitions -->
|
959
|
+
|
960
|
+
<xs:element name='DescribeInstanceAttributeResponse' type='tns:DescribeInstanceAttributeResponseType' />
|
961
|
+
|
962
|
+
<xs:complexType name='DescribeInstanceAttributeResponseType'>
|
963
|
+
<xs:sequence>
|
964
|
+
<xs:element name='requestId' type='xs:string' />
|
965
|
+
<xs:element name='instanceId' type='xs:string' />
|
966
|
+
<xs:choice>
|
967
|
+
<xs:element name='instanceType' type='tns:NullableAttributeValueType' />
|
968
|
+
<xs:element name='kernel' type='tns:NullableAttributeValueType' />
|
969
|
+
<xs:element name='ramdisk' type='tns:NullableAttributeValueType' />
|
970
|
+
<xs:element name="userData" type="tns:NullableAttributeValueType"/>
|
971
|
+
<xs:element name='disableApiTermination' type='tns:NullableAttributeBooleanValueType' />
|
972
|
+
<xs:element name='instanceInitiatedShutdownBehavior' type='tns:NullableAttributeValueType' />
|
973
|
+
<xs:element name='rootDeviceName' type='tns:NullableAttributeValueType' />
|
974
|
+
<xs:element name="blockDeviceMapping" type="tns:InstanceBlockDeviceMappingResponseType"/>
|
975
|
+
</xs:choice>
|
976
|
+
</xs:sequence>
|
977
|
+
</xs:complexType>
|
978
|
+
|
979
|
+
<!-- ModifyImageAttribute Definitions -->
|
980
|
+
|
981
|
+
<xs:element name="ModifyImageAttribute"
|
982
|
+
type="tns:ModifyImageAttributeType"/>
|
983
|
+
|
984
|
+
<xs:complexType name="ModifyImageAttributeType">
|
985
|
+
<xs:sequence>
|
986
|
+
<xs:element name="imageId" type="xs:string"/>
|
987
|
+
<xs:choice>
|
988
|
+
<xs:element name="launchPermission" type="tns:LaunchPermissionOperationType"/>
|
989
|
+
<xs:element name="productCodes" type="tns:ProductCodeListType" />
|
990
|
+
<xs:element name="description" type="tns:AttributeValueType" />
|
991
|
+
</xs:choice>
|
992
|
+
</xs:sequence>
|
993
|
+
</xs:complexType>
|
994
|
+
|
995
|
+
<xs:complexType name="LaunchPermissionOperationType">
|
996
|
+
<xs:choice>
|
997
|
+
<xs:element name="add" type="tns:LaunchPermissionListType"/>
|
998
|
+
<xs:element name="remove" type="tns:LaunchPermissionListType"/>
|
999
|
+
</xs:choice>
|
1000
|
+
</xs:complexType>
|
1001
|
+
|
1002
|
+
<xs:complexType name="LaunchPermissionListType">
|
1003
|
+
<xs:sequence>
|
1004
|
+
<xs:element name="item" type="tns:LaunchPermissionItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1005
|
+
</xs:sequence>
|
1006
|
+
</xs:complexType>
|
1007
|
+
|
1008
|
+
<xs:complexType name="LaunchPermissionItemType">
|
1009
|
+
<xs:choice>
|
1010
|
+
<xs:element name="userId" type="xs:string"/>
|
1011
|
+
<xs:element name="group" type="xs:string" />
|
1012
|
+
</xs:choice>
|
1013
|
+
</xs:complexType>
|
1014
|
+
|
1015
|
+
<xs:complexType name="ProductCodeListType">
|
1016
|
+
<xs:sequence>
|
1017
|
+
<xs:element name="item" type="tns:ProductCodeItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1018
|
+
</xs:sequence>
|
1019
|
+
</xs:complexType>
|
1020
|
+
|
1021
|
+
<xs:complexType name="ProductCodeItemType">
|
1022
|
+
<xs:choice>
|
1023
|
+
<xs:element name="productCode" type="xs:string"/>
|
1024
|
+
</xs:choice>
|
1025
|
+
</xs:complexType>
|
1026
|
+
|
1027
|
+
<!-- ModifyImageAttributeResponse Definitions -->
|
1028
|
+
|
1029
|
+
<xs:element name="ModifyImageAttributeResponse"
|
1030
|
+
type="tns:ModifyImageAttributeResponseType" />
|
1031
|
+
|
1032
|
+
<xs:complexType name="ModifyImageAttributeResponseType">
|
1033
|
+
<xs:sequence>
|
1034
|
+
<xs:element name="requestId" type="xs:string"/>
|
1035
|
+
<xs:element name="return" type="xs:boolean"/>
|
1036
|
+
</xs:sequence>
|
1037
|
+
</xs:complexType>
|
1038
|
+
|
1039
|
+
<!-- ResetImageAttribute Definitions -->
|
1040
|
+
|
1041
|
+
<xs:element name="ResetImageAttribute"
|
1042
|
+
type="tns:ResetImageAttributeType" />
|
1043
|
+
|
1044
|
+
<xs:complexType name="ResetImageAttributeType" >
|
1045
|
+
<xs:sequence>
|
1046
|
+
<xs:element name="imageId" type="xs:string"/>
|
1047
|
+
<xs:group ref="tns:ResetImageAttributesGroup"/>
|
1048
|
+
</xs:sequence>
|
1049
|
+
</xs:complexType>
|
1050
|
+
|
1051
|
+
<xs:group name="ResetImageAttributesGroup" >
|
1052
|
+
<xs:choice>
|
1053
|
+
<xs:element name="launchPermission" type="tns:EmptyElementType"/>
|
1054
|
+
</xs:choice>
|
1055
|
+
</xs:group>
|
1056
|
+
|
1057
|
+
<xs:complexType name="EmptyElementType">
|
1058
|
+
</xs:complexType>
|
1059
|
+
|
1060
|
+
<!-- ResetImageAttributeResponse Definitions -->
|
1061
|
+
|
1062
|
+
<xs:element name="ResetImageAttributeResponse"
|
1063
|
+
type="tns:ResetImageAttributeResponseType" />
|
1064
|
+
|
1065
|
+
<xs:complexType name="ResetImageAttributeResponseType">
|
1066
|
+
<xs:sequence>
|
1067
|
+
<xs:element name="requestId" type="xs:string"/>
|
1068
|
+
<xs:element name="return" type="xs:boolean" />
|
1069
|
+
</xs:sequence>
|
1070
|
+
</xs:complexType>
|
1071
|
+
|
1072
|
+
<!-- DescribeImageAttribute Definitions -->
|
1073
|
+
|
1074
|
+
<xs:element name="DescribeImageAttribute"
|
1075
|
+
type="tns:DescribeImageAttributeType" />
|
1076
|
+
|
1077
|
+
<xs:complexType name="DescribeImageAttributeType">
|
1078
|
+
<xs:sequence>
|
1079
|
+
<xs:element name="imageId" type="xs:string" />
|
1080
|
+
<xs:group ref="tns:DescribeImageAttributesGroup" />
|
1081
|
+
</xs:sequence>
|
1082
|
+
</xs:complexType>
|
1083
|
+
|
1084
|
+
<xs:group name="DescribeImageAttributesGroup" >
|
1085
|
+
<xs:choice>
|
1086
|
+
<xs:element name="launchPermission" type="tns:EmptyElementType"/>
|
1087
|
+
<xs:element name="productCodes" type="tns:EmptyElementType" />
|
1088
|
+
<xs:element name="kernel" type="tns:EmptyElementType" />
|
1089
|
+
<xs:element name="ramdisk" type="tns:EmptyElementType" />
|
1090
|
+
<xs:element name="blockDeviceMapping" type="tns:EmptyElementType" />
|
1091
|
+
<xs:element name="description" type="tns:EmptyElementType" />
|
1092
|
+
</xs:choice>
|
1093
|
+
</xs:group>
|
1094
|
+
|
1095
|
+
<!-- DescribeImageAttributeResponse Definitions -->
|
1096
|
+
|
1097
|
+
<xs:element name="DescribeImageAttributeResponse"
|
1098
|
+
type="tns:DescribeImageAttributeResponseType" />
|
1099
|
+
|
1100
|
+
<xs:complexType name="DescribeImageAttributeResponseType">
|
1101
|
+
<xs:sequence>
|
1102
|
+
<xs:element name="requestId" type="xs:string"/>
|
1103
|
+
<xs:element name="imageId" type="xs:string" />
|
1104
|
+
<xs:choice>
|
1105
|
+
<xs:element name="launchPermission" type="tns:LaunchPermissionListType"/>
|
1106
|
+
<xs:element name="productCodes" type="tns:ProductCodeListType" />
|
1107
|
+
<xs:element name="kernel" type="tns:NullableAttributeValueType" />
|
1108
|
+
<xs:element name="ramdisk" type="tns:NullableAttributeValueType" />
|
1109
|
+
<xs:element name="description" type="tns:NullableAttributeValueType" />
|
1110
|
+
<xs:element name="blockDeviceMapping" type="tns:BlockDeviceMappingType"/>
|
1111
|
+
</xs:choice>
|
1112
|
+
</xs:sequence>
|
1113
|
+
</xs:complexType>
|
1114
|
+
|
1115
|
+
<xs:complexType name="NullableAttributeValueType">
|
1116
|
+
<xs:sequence>
|
1117
|
+
<xs:element name="value" type="xs:string" minOccurs="0"/>
|
1118
|
+
</xs:sequence>
|
1119
|
+
</xs:complexType>
|
1120
|
+
|
1121
|
+
<xs:complexType name="NullableAttributeBooleanValueType">
|
1122
|
+
<xs:sequence>
|
1123
|
+
<xs:element name="value" type="xs:boolean" minOccurs="0"/>
|
1124
|
+
</xs:sequence>
|
1125
|
+
</xs:complexType>
|
1126
|
+
|
1127
|
+
<xs:complexType name="AttributeValueType">
|
1128
|
+
<xs:sequence>
|
1129
|
+
<xs:element name="value" type="xs:string"/>
|
1130
|
+
</xs:sequence>
|
1131
|
+
</xs:complexType>
|
1132
|
+
|
1133
|
+
<xs:complexType name="AttributeBooleanValueType">
|
1134
|
+
<xs:sequence>
|
1135
|
+
<xs:element name="value" type="xs:boolean"/>
|
1136
|
+
</xs:sequence>
|
1137
|
+
</xs:complexType>
|
1138
|
+
|
1139
|
+
<!-- ConfirmProductInstance Definitions -->
|
1140
|
+
|
1141
|
+
<xs:element name="ConfirmProductInstance"
|
1142
|
+
type="tns:ConfirmProductInstanceType" />
|
1143
|
+
|
1144
|
+
<xs:complexType name="ConfirmProductInstanceType" >
|
1145
|
+
<xs:sequence>
|
1146
|
+
<xs:element name="productCode" type="xs:string" />
|
1147
|
+
<xs:element name="instanceId" type="xs:string"/>
|
1148
|
+
</xs:sequence>
|
1149
|
+
</xs:complexType>
|
1150
|
+
|
1151
|
+
<xs:complexType name="ProductCodesSetType" >
|
1152
|
+
<xs:sequence>
|
1153
|
+
<xs:element name="item" type="tns:ProductCodesSetItemType" minOccurs="0" maxOccurs="unbounded" />
|
1154
|
+
</xs:sequence>
|
1155
|
+
</xs:complexType>
|
1156
|
+
|
1157
|
+
<xs:complexType name="ProductCodesSetItemType" >
|
1158
|
+
<xs:sequence>
|
1159
|
+
<xs:element name="productCode" type="xs:string" />
|
1160
|
+
</xs:sequence>
|
1161
|
+
</xs:complexType>
|
1162
|
+
|
1163
|
+
<!-- ConfirmProductInstanceResponse Definitions -->
|
1164
|
+
|
1165
|
+
<xs:element name="ConfirmProductInstanceResponse"
|
1166
|
+
type="tns:ConfirmProductInstanceResponseType" />
|
1167
|
+
|
1168
|
+
<xs:complexType name="ConfirmProductInstanceResponseType">
|
1169
|
+
<xs:sequence>
|
1170
|
+
<xs:element name="requestId" type="xs:string"/>
|
1171
|
+
<xs:element name="return" type="xs:boolean" />
|
1172
|
+
<xs:element name="ownerId" type="xs:string" minOccurs="0" />
|
1173
|
+
</xs:sequence>
|
1174
|
+
</xs:complexType>
|
1175
|
+
|
1176
|
+
<!-- DescribeAvailabilityZones Definitions -->
|
1177
|
+
|
1178
|
+
<xs:element name="DescribeAvailabilityZones"
|
1179
|
+
type="tns:DescribeAvailabilityZonesType" />
|
1180
|
+
|
1181
|
+
<xs:complexType name="DescribeAvailabilityZonesType">
|
1182
|
+
<xs:sequence>
|
1183
|
+
<xs:element name="availabilityZoneSet" type="tns:DescribeAvailabilityZonesSetType"/>
|
1184
|
+
</xs:sequence>
|
1185
|
+
</xs:complexType>
|
1186
|
+
|
1187
|
+
<xs:complexType name="DescribeAvailabilityZonesSetType">
|
1188
|
+
<xs:sequence>
|
1189
|
+
<xs:element name="item" type="tns:DescribeAvailabilityZonesSetItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1190
|
+
</xs:sequence>
|
1191
|
+
</xs:complexType>
|
1192
|
+
|
1193
|
+
<xs:complexType name="DescribeAvailabilityZonesSetItemType">
|
1194
|
+
<xs:sequence>
|
1195
|
+
<xs:element name="zoneName" type="xs:string"/>
|
1196
|
+
</xs:sequence>
|
1197
|
+
</xs:complexType>
|
1198
|
+
|
1199
|
+
<!-- DescribeAvailabilityZones Response definitions -->
|
1200
|
+
|
1201
|
+
<xs:element name="DescribeAvailabilityZonesResponse"
|
1202
|
+
type="tns:DescribeAvailabilityZonesResponseType"/>
|
1203
|
+
|
1204
|
+
<xs:complexType name="DescribeAvailabilityZonesResponseType">
|
1205
|
+
<xs:sequence>
|
1206
|
+
<xs:element name="requestId" type="xs:string"/>
|
1207
|
+
<xs:element name="availabilityZoneInfo" type="tns:AvailabilityZoneSetType"/>
|
1208
|
+
</xs:sequence>
|
1209
|
+
</xs:complexType>
|
1210
|
+
|
1211
|
+
<xs:complexType name="AvailabilityZoneSetType">
|
1212
|
+
<xs:sequence>
|
1213
|
+
<xs:element name="item" type="tns:AvailabilityZoneItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1214
|
+
</xs:sequence>
|
1215
|
+
</xs:complexType>
|
1216
|
+
|
1217
|
+
<xs:complexType name="AvailabilityZoneMessageType">
|
1218
|
+
<xs:sequence>
|
1219
|
+
<xs:element name="message" type="xs:string"/>
|
1220
|
+
</xs:sequence>
|
1221
|
+
</xs:complexType>
|
1222
|
+
|
1223
|
+
<xs:complexType name="AvailabilityZoneMessageSetType">
|
1224
|
+
<xs:sequence>
|
1225
|
+
<xs:element name="item" type="tns:AvailabilityZoneMessageType" minOccurs="0" maxOccurs="unbounded"/>
|
1226
|
+
</xs:sequence>
|
1227
|
+
</xs:complexType>
|
1228
|
+
|
1229
|
+
<xs:complexType name="AvailabilityZoneItemType">
|
1230
|
+
<xs:sequence>
|
1231
|
+
<xs:element name="zoneName" type="xs:string"/>
|
1232
|
+
<xs:element name="zoneState" type="xs:string"/>
|
1233
|
+
<xs:element name="regionName" type="xs:string"/>
|
1234
|
+
<xs:element name="messageSet" type="tns:AvailabilityZoneMessageSetType"/>
|
1235
|
+
</xs:sequence>
|
1236
|
+
</xs:complexType>
|
1237
|
+
|
1238
|
+
<!-- AllocateAddress definitions -->
|
1239
|
+
|
1240
|
+
<xs:element name='AllocateAddress' type='tns:AllocateAddressType'/>
|
1241
|
+
<xs:complexType name='AllocateAddressType'/>
|
1242
|
+
|
1243
|
+
<!-- AllocateAddressResponse definitions -->
|
1244
|
+
|
1245
|
+
<xs:element name='AllocateAddressResponse' type='tns:AllocateAddressResponseType'/>
|
1246
|
+
<xs:complexType name='AllocateAddressResponseType'>
|
1247
|
+
<xs:sequence>
|
1248
|
+
<xs:element name="requestId" type="xs:string"/>
|
1249
|
+
<xs:element name='publicIp' type='xs:string'/>
|
1250
|
+
</xs:sequence>
|
1251
|
+
</xs:complexType>
|
1252
|
+
|
1253
|
+
<!-- ReleaseAddress definitions -->
|
1254
|
+
|
1255
|
+
<xs:element name='ReleaseAddress' type='tns:ReleaseAddressType'/>
|
1256
|
+
<xs:complexType name='ReleaseAddressType'>
|
1257
|
+
<xs:sequence>
|
1258
|
+
<xs:element name='publicIp' type='xs:string'/>
|
1259
|
+
</xs:sequence>
|
1260
|
+
</xs:complexType>
|
1261
|
+
|
1262
|
+
<!-- ReleaseAddressResponse definitions -->
|
1263
|
+
|
1264
|
+
<xs:element name='ReleaseAddressResponse' type='tns:ReleaseAddressResponseType'/>
|
1265
|
+
<xs:complexType name='ReleaseAddressResponseType'>
|
1266
|
+
<xs:sequence>
|
1267
|
+
<xs:element name="requestId" type="xs:string"/>
|
1268
|
+
<xs:element name='return' type='xs:boolean'/>
|
1269
|
+
</xs:sequence>
|
1270
|
+
</xs:complexType>
|
1271
|
+
|
1272
|
+
<!-- DescribeAddresses definitions -->
|
1273
|
+
|
1274
|
+
<xs:element name='DescribeAddresses' type='tns:DescribeAddressesType'/>
|
1275
|
+
<xs:complexType name='DescribeAddressesType'>
|
1276
|
+
<xs:sequence>
|
1277
|
+
<xs:element name='publicIpsSet' type='tns:DescribeAddressesInfoType'/>
|
1278
|
+
</xs:sequence>
|
1279
|
+
</xs:complexType>
|
1280
|
+
|
1281
|
+
<xs:complexType name='DescribeAddressesInfoType'>
|
1282
|
+
<xs:sequence>
|
1283
|
+
<xs:element name='item' maxOccurs='unbounded' minOccurs='0' type='tns:DescribeAddressesItemType'/>
|
1284
|
+
</xs:sequence>
|
1285
|
+
|
1286
|
+
</xs:complexType>
|
1287
|
+
|
1288
|
+
<xs:complexType name='DescribeAddressesItemType'>
|
1289
|
+
<xs:sequence>
|
1290
|
+
<xs:element name='publicIp' type='xs:string'/>
|
1291
|
+
</xs:sequence>
|
1292
|
+
</xs:complexType>
|
1293
|
+
|
1294
|
+
<!-- DescribeAddressesResponse definitions -->
|
1295
|
+
|
1296
|
+
<xs:element name='DescribeAddressesResponse' type='tns:DescribeAddressesResponseType'/>
|
1297
|
+
<xs:complexType name='DescribeAddressesResponseType'>
|
1298
|
+
<xs:sequence>
|
1299
|
+
<xs:element name="requestId" type="xs:string"/>
|
1300
|
+
<xs:element name='addressesSet' type='tns:DescribeAddressesResponseInfoType'/>
|
1301
|
+
</xs:sequence>
|
1302
|
+
</xs:complexType>
|
1303
|
+
|
1304
|
+
<xs:complexType name='DescribeAddressesResponseInfoType'>
|
1305
|
+
<xs:sequence>
|
1306
|
+
<xs:element name='item' maxOccurs='unbounded' minOccurs='0' type='tns:DescribeAddressesResponseItemType'/>
|
1307
|
+
</xs:sequence>
|
1308
|
+
</xs:complexType>
|
1309
|
+
|
1310
|
+
<xs:complexType name='DescribeAddressesResponseItemType'>
|
1311
|
+
<xs:sequence>
|
1312
|
+
<xs:element name='publicIp' type='xs:string'/>
|
1313
|
+
<xs:element name='instanceId' minOccurs='0' type='xs:string'/>
|
1314
|
+
</xs:sequence>
|
1315
|
+
</xs:complexType>
|
1316
|
+
|
1317
|
+
<!-- AssociateAddress definitions -->
|
1318
|
+
|
1319
|
+
<xs:element name='AssociateAddress' type='tns:AssociateAddressType'/>
|
1320
|
+
<xs:complexType name='AssociateAddressType'>
|
1321
|
+
<xs:sequence>
|
1322
|
+
<xs:element name='publicIp' type='xs:string'/>
|
1323
|
+
<xs:element name='instanceId' type='xs:string'/>
|
1324
|
+
</xs:sequence>
|
1325
|
+
</xs:complexType>
|
1326
|
+
|
1327
|
+
<!-- AssociateAddressResponse definitions -->
|
1328
|
+
|
1329
|
+
<xs:element name='AssociateAddressResponse' type='tns:AssociateAddressResponseType'/>
|
1330
|
+
<xs:complexType name='AssociateAddressResponseType'>
|
1331
|
+
<xs:sequence>
|
1332
|
+
<xs:element name="requestId" type="xs:string"/>
|
1333
|
+
<xs:element name='return' type='xs:boolean'/>
|
1334
|
+
</xs:sequence>
|
1335
|
+
</xs:complexType>
|
1336
|
+
|
1337
|
+
<!-- DisassociateAddress definitions -->
|
1338
|
+
|
1339
|
+
<xs:element name='DisassociateAddress' type='tns:DisassociateAddressType'/>
|
1340
|
+
<xs:complexType name='DisassociateAddressType'>
|
1341
|
+
<xs:sequence>
|
1342
|
+
<xs:element name='publicIp' type='xs:string'/>
|
1343
|
+
</xs:sequence>
|
1344
|
+
</xs:complexType>
|
1345
|
+
|
1346
|
+
<!-- DisassociateAddressResponse definitions -->
|
1347
|
+
|
1348
|
+
<xs:element name='DisassociateAddressResponse' type='tns:DisassociateAddressResponseType'/>
|
1349
|
+
<xs:complexType name='DisassociateAddressResponseType'>
|
1350
|
+
<xs:sequence>
|
1351
|
+
<xs:element name="requestId" type="xs:string"/>
|
1352
|
+
<xs:element name='return' type='xs:boolean'/>
|
1353
|
+
</xs:sequence>
|
1354
|
+
</xs:complexType>
|
1355
|
+
|
1356
|
+
<!-- CreateVolume request definitions -->
|
1357
|
+
|
1358
|
+
<xs:element name="CreateVolume" type="tns:CreateVolumeType"/>
|
1359
|
+
|
1360
|
+
<xs:complexType name="CreateVolumeType">
|
1361
|
+
<xs:sequence>
|
1362
|
+
<xs:element name="size" type="xs:string" minOccurs="0"/>
|
1363
|
+
<xs:element name="snapshotId" type="xs:string" minOccurs="0"/>
|
1364
|
+
<xs:element name="availabilityZone" type="xs:string"/>
|
1365
|
+
</xs:sequence>
|
1366
|
+
</xs:complexType>
|
1367
|
+
|
1368
|
+
<!-- CreateVolume response definitions -->
|
1369
|
+
|
1370
|
+
<xs:element name="CreateVolumeResponse" type="tns:CreateVolumeResponseType"/>
|
1371
|
+
|
1372
|
+
<xs:complexType name="CreateVolumeResponseType">
|
1373
|
+
<xs:sequence>
|
1374
|
+
<xs:element name="requestId" type="xs:string"/>
|
1375
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1376
|
+
<xs:element name="size" type="xs:string"/>
|
1377
|
+
<xs:element name="snapshotId" type="xs:string"/>
|
1378
|
+
<xs:element name="availabilityZone" type="xs:string"/>
|
1379
|
+
<xs:element name="status" type="xs:string"/>
|
1380
|
+
<xs:element name="createTime" type="xs:dateTime"/>
|
1381
|
+
</xs:sequence>
|
1382
|
+
</xs:complexType>
|
1383
|
+
|
1384
|
+
<!-- DeleteVolume request definitions -->
|
1385
|
+
|
1386
|
+
<xs:element name="DeleteVolume" type="tns:DeleteVolumeType"/>
|
1387
|
+
|
1388
|
+
<xs:complexType name="DeleteVolumeType">
|
1389
|
+
<xs:sequence>
|
1390
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1391
|
+
</xs:sequence>
|
1392
|
+
</xs:complexType>
|
1393
|
+
|
1394
|
+
<!-- DeleteVolume response definitions -->
|
1395
|
+
|
1396
|
+
<xs:element name="DeleteVolumeResponse" type="tns:DeleteVolumeResponseType"/>
|
1397
|
+
|
1398
|
+
<xs:complexType name="DeleteVolumeResponseType">
|
1399
|
+
<xs:sequence>
|
1400
|
+
<xs:element name="requestId" type="xs:string"/>
|
1401
|
+
<xs:element name="return" type="xs:boolean"/>
|
1402
|
+
</xs:sequence>
|
1403
|
+
</xs:complexType>
|
1404
|
+
|
1405
|
+
<!-- DescribeVolumes request definitions -->
|
1406
|
+
|
1407
|
+
<xs:element name="DescribeVolumes"
|
1408
|
+
type="tns:DescribeVolumesType" />
|
1409
|
+
|
1410
|
+
<xs:complexType name="DescribeVolumesType">
|
1411
|
+
<xs:sequence>
|
1412
|
+
<xs:element name="volumeSet" type="tns:DescribeVolumesSetType"/>
|
1413
|
+
</xs:sequence>
|
1414
|
+
</xs:complexType>
|
1415
|
+
|
1416
|
+
<xs:complexType name="DescribeVolumesSetType">
|
1417
|
+
<xs:sequence>
|
1418
|
+
<xs:element name="item" type="tns:DescribeVolumesSetItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1419
|
+
</xs:sequence>
|
1420
|
+
</xs:complexType>
|
1421
|
+
|
1422
|
+
<xs:complexType name="DescribeVolumesSetItemType">
|
1423
|
+
<xs:sequence>
|
1424
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1425
|
+
</xs:sequence>
|
1426
|
+
</xs:complexType>
|
1427
|
+
|
1428
|
+
<!-- DescribeVolumes response definitions -->
|
1429
|
+
|
1430
|
+
<xs:element name="DescribeVolumesResponse"
|
1431
|
+
type="tns:DescribeVolumesResponseType"/>
|
1432
|
+
|
1433
|
+
<xs:complexType name="DescribeVolumesResponseType">
|
1434
|
+
<xs:sequence>
|
1435
|
+
<xs:element name="requestId" type="xs:string"/>
|
1436
|
+
<xs:element name="volumeSet" type="tns:DescribeVolumesSetResponseType"/>
|
1437
|
+
</xs:sequence>
|
1438
|
+
</xs:complexType>
|
1439
|
+
|
1440
|
+
<xs:complexType name="DescribeVolumesSetResponseType">
|
1441
|
+
<xs:sequence>
|
1442
|
+
<xs:element name="item" type="tns:DescribeVolumesSetItemResponseType" minOccurs="0" maxOccurs="unbounded"/>
|
1443
|
+
</xs:sequence>
|
1444
|
+
</xs:complexType>
|
1445
|
+
|
1446
|
+
<xs:complexType name="DescribeVolumesSetItemResponseType">
|
1447
|
+
<xs:sequence>
|
1448
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1449
|
+
<xs:element name="size" type="xs:string"/>
|
1450
|
+
<xs:element name="snapshotId" type="xs:string"/>
|
1451
|
+
<xs:element name="availabilityZone" type="xs:string"/>
|
1452
|
+
<xs:element name="status" type="xs:string"/>
|
1453
|
+
<xs:element name="createTime" type="xs:dateTime"/>
|
1454
|
+
<xs:element name="attachmentSet" type="tns:AttachmentSetResponseType"/>
|
1455
|
+
</xs:sequence>
|
1456
|
+
</xs:complexType>
|
1457
|
+
|
1458
|
+
<xs:complexType name="AttachmentSetResponseType">
|
1459
|
+
<xs:sequence>
|
1460
|
+
<xs:element name="item" type="tns:AttachmentSetItemResponseType" minOccurs="0" maxOccurs="unbounded"/>
|
1461
|
+
</xs:sequence>
|
1462
|
+
</xs:complexType>
|
1463
|
+
|
1464
|
+
<xs:complexType name="AttachmentSetItemResponseType">
|
1465
|
+
<xs:sequence>
|
1466
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1467
|
+
<xs:element name="instanceId" type="xs:string"/>
|
1468
|
+
<xs:element name="device" type="xs:string"/>
|
1469
|
+
<xs:element name="status" type="xs:string"/>
|
1470
|
+
<xs:element name="attachTime" type="xs:dateTime"/>
|
1471
|
+
<xs:element name="deleteOnTermination" type="xs:boolean"/>
|
1472
|
+
</xs:sequence>
|
1473
|
+
</xs:complexType>
|
1474
|
+
|
1475
|
+
<!-- AttachVolume request definitions -->
|
1476
|
+
|
1477
|
+
<xs:element name="AttachVolume" type="tns:AttachVolumeType"/>
|
1478
|
+
|
1479
|
+
<xs:complexType name="AttachVolumeType">
|
1480
|
+
<xs:sequence>
|
1481
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1482
|
+
<xs:element name="instanceId" type="xs:string"/>
|
1483
|
+
<xs:element name="device" type="xs:string"/>
|
1484
|
+
</xs:sequence>
|
1485
|
+
</xs:complexType>
|
1486
|
+
|
1487
|
+
<!-- AttachVolume response definitions -->
|
1488
|
+
|
1489
|
+
<xs:element name="AttachVolumeResponse" type="tns:AttachVolumeResponseType"/>
|
1490
|
+
|
1491
|
+
<xs:complexType name="AttachVolumeResponseType">
|
1492
|
+
<xs:sequence>
|
1493
|
+
<xs:element name="requestId" type="xs:string"/>
|
1494
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1495
|
+
<xs:element name="instanceId" type="xs:string"/>
|
1496
|
+
<xs:element name="device" type="xs:string"/>
|
1497
|
+
<xs:element name="status" type="xs:string"/>
|
1498
|
+
<xs:element name="attachTime" type="xs:dateTime"/>
|
1499
|
+
</xs:sequence>
|
1500
|
+
</xs:complexType>
|
1501
|
+
|
1502
|
+
<!-- DetachVolume request definitions -->
|
1503
|
+
|
1504
|
+
<xs:element name="DetachVolume" type="tns:DetachVolumeType"/>
|
1505
|
+
|
1506
|
+
<xs:complexType name="DetachVolumeType">
|
1507
|
+
<xs:sequence>
|
1508
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1509
|
+
<xs:element name="instanceId" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
1510
|
+
<xs:element name="device" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
1511
|
+
<xs:element name="force" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
|
1512
|
+
</xs:sequence>
|
1513
|
+
</xs:complexType>
|
1514
|
+
|
1515
|
+
<!-- DetachVolume response definitions -->
|
1516
|
+
|
1517
|
+
<xs:element name="DetachVolumeResponse" type="tns:DetachVolumeResponseType"/>
|
1518
|
+
|
1519
|
+
<xs:complexType name="DetachVolumeResponseType">
|
1520
|
+
<xs:sequence>
|
1521
|
+
<xs:element name="requestId" type="xs:string"/>
|
1522
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1523
|
+
<xs:element name="instanceId" type="xs:string"/>
|
1524
|
+
<xs:element name="device" type="xs:string"/>
|
1525
|
+
<xs:element name="status" type="xs:string"/>
|
1526
|
+
<xs:element name="attachTime" type="xs:dateTime"/>
|
1527
|
+
</xs:sequence>
|
1528
|
+
</xs:complexType>
|
1529
|
+
|
1530
|
+
<!-- CreateSnapshot request definitions -->
|
1531
|
+
|
1532
|
+
<xs:element name="CreateSnapshot" type="tns:CreateSnapshotType"/>
|
1533
|
+
|
1534
|
+
<xs:complexType name="CreateSnapshotType">
|
1535
|
+
<xs:sequence>
|
1536
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1537
|
+
<xs:element name="description" type="xs:string" minOccurs="0"/>
|
1538
|
+
</xs:sequence>
|
1539
|
+
</xs:complexType>
|
1540
|
+
|
1541
|
+
<!-- CreateSnapshot response definitions -->
|
1542
|
+
|
1543
|
+
<xs:element name="CreateSnapshotResponse" type="tns:CreateSnapshotResponseType"/>
|
1544
|
+
|
1545
|
+
<xs:complexType name="CreateSnapshotResponseType">
|
1546
|
+
<xs:sequence>
|
1547
|
+
<xs:element name="requestId" type="xs:string"/>
|
1548
|
+
<xs:element name="snapshotId" type="xs:string"/>
|
1549
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1550
|
+
<xs:element name="status" type="xs:string"/>
|
1551
|
+
<xs:element name="startTime" type="xs:dateTime"/>
|
1552
|
+
<xs:element name="progress" type="xs:string"/>
|
1553
|
+
<xs:element name="ownerId" type="xs:string"/>
|
1554
|
+
<xs:element name="volumeSize" type="xs:string"/>
|
1555
|
+
<xs:element name="description" type="xs:string" minOccurs="0"/>
|
1556
|
+
</xs:sequence>
|
1557
|
+
</xs:complexType>
|
1558
|
+
|
1559
|
+
<!-- DeleteSnapshot request definitions -->
|
1560
|
+
|
1561
|
+
<xs:element name="DeleteSnapshot" type="tns:DeleteSnapshotType"/>
|
1562
|
+
|
1563
|
+
<xs:complexType name="DeleteSnapshotType">
|
1564
|
+
<xs:sequence>
|
1565
|
+
<xs:element name="snapshotId" type="xs:string"/>
|
1566
|
+
</xs:sequence>
|
1567
|
+
</xs:complexType>
|
1568
|
+
|
1569
|
+
<!-- DeleteSnapshot response definitions -->
|
1570
|
+
|
1571
|
+
<xs:element name="DeleteSnapshotResponse" type="tns:DeleteSnapshotResponseType"/>
|
1572
|
+
|
1573
|
+
<xs:complexType name="DeleteSnapshotResponseType">
|
1574
|
+
<xs:sequence>
|
1575
|
+
<xs:element name="requestId" type="xs:string"/>
|
1576
|
+
<xs:element name="return" type="xs:boolean"/>
|
1577
|
+
</xs:sequence>
|
1578
|
+
</xs:complexType>
|
1579
|
+
|
1580
|
+
<!-- DescribeSnapshots request definitions -->
|
1581
|
+
|
1582
|
+
<xs:element name="DescribeSnapshots"
|
1583
|
+
type="tns:DescribeSnapshotsType" />
|
1584
|
+
|
1585
|
+
<xs:complexType name="DescribeSnapshotsType">
|
1586
|
+
<xs:sequence>
|
1587
|
+
<xs:element name="snapshotSet" type="tns:DescribeSnapshotsSetType"/>
|
1588
|
+
<xs:element name="ownersSet" type="tns:DescribeSnapshotsOwnersType" minOccurs="0"/>
|
1589
|
+
<xs:element name="restorableBySet" type="tns:DescribeSnapshotsRestorableBySetType" minOccurs="0"/>
|
1590
|
+
</xs:sequence>
|
1591
|
+
</xs:complexType>
|
1592
|
+
|
1593
|
+
<xs:complexType name="DescribeSnapshotsSetType">
|
1594
|
+
<xs:sequence>
|
1595
|
+
<xs:element name="item" type="tns:DescribeSnapshotsSetItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1596
|
+
</xs:sequence>
|
1597
|
+
</xs:complexType>
|
1598
|
+
|
1599
|
+
<xs:complexType name="DescribeSnapshotsSetItemType">
|
1600
|
+
<xs:sequence>
|
1601
|
+
<xs:element name="snapshotId" type="xs:string"/>
|
1602
|
+
</xs:sequence>
|
1603
|
+
</xs:complexType>
|
1604
|
+
|
1605
|
+
<xs:complexType name="DescribeSnapshotsOwnersType">
|
1606
|
+
<xs:sequence>
|
1607
|
+
<xs:element name="item" type="tns:DescribeSnapshotsOwnerType" minOccurs="0" maxOccurs="unbounded"/>
|
1608
|
+
</xs:sequence>
|
1609
|
+
</xs:complexType>
|
1610
|
+
|
1611
|
+
<xs:complexType name="DescribeSnapshotsOwnerType">
|
1612
|
+
<xs:sequence>
|
1613
|
+
<xs:element name="owner" type="xs:string"/>
|
1614
|
+
</xs:sequence>
|
1615
|
+
</xs:complexType>
|
1616
|
+
|
1617
|
+
<xs:complexType name="DescribeSnapshotsRestorableBySetType">
|
1618
|
+
<xs:sequence>
|
1619
|
+
<xs:element name="item" type="tns:DescribeSnapshotsRestorableByType" minOccurs="0" maxOccurs="unbounded"/>
|
1620
|
+
</xs:sequence>
|
1621
|
+
</xs:complexType>
|
1622
|
+
|
1623
|
+
<xs:complexType name="DescribeSnapshotsRestorableByType">
|
1624
|
+
<xs:sequence>
|
1625
|
+
<xs:element name="user" type="xs:string"/>
|
1626
|
+
</xs:sequence>
|
1627
|
+
</xs:complexType>
|
1628
|
+
|
1629
|
+
<!-- DescribeSnapshots response definitions -->
|
1630
|
+
|
1631
|
+
<xs:element name="DescribeSnapshotsResponse"
|
1632
|
+
type="tns:DescribeSnapshotsResponseType"/>
|
1633
|
+
|
1634
|
+
<xs:complexType name="DescribeSnapshotsResponseType">
|
1635
|
+
<xs:sequence>
|
1636
|
+
<xs:element name="requestId" type="xs:string"/>
|
1637
|
+
<xs:element name="snapshotSet" type="tns:DescribeSnapshotsSetResponseType"/>
|
1638
|
+
</xs:sequence>
|
1639
|
+
</xs:complexType>
|
1640
|
+
|
1641
|
+
<xs:complexType name="DescribeSnapshotsSetResponseType">
|
1642
|
+
<xs:sequence>
|
1643
|
+
<xs:element name="item" type="tns:DescribeSnapshotsSetItemResponseType" minOccurs="0" maxOccurs="unbounded"/>
|
1644
|
+
</xs:sequence>
|
1645
|
+
</xs:complexType>
|
1646
|
+
|
1647
|
+
<xs:complexType name="DescribeSnapshotsSetItemResponseType">
|
1648
|
+
<xs:sequence>
|
1649
|
+
<xs:element name="snapshotId" type="xs:string"/>
|
1650
|
+
<xs:element name="volumeId" type="xs:string"/>
|
1651
|
+
<xs:element name="status" type="xs:string"/>
|
1652
|
+
<xs:element name="startTime" type="xs:dateTime"/>
|
1653
|
+
<xs:element name="progress" type="xs:string"/>
|
1654
|
+
<xs:element name="ownerId" type="xs:string"/>
|
1655
|
+
<xs:element name="volumeSize" type="xs:string"/>
|
1656
|
+
<xs:element name="description" type="xs:string" minOccurs="0"/>
|
1657
|
+
<xs:element name="ownerAlias" type="xs:string" minOccurs="0"/>
|
1658
|
+
</xs:sequence>
|
1659
|
+
</xs:complexType>
|
1660
|
+
|
1661
|
+
<!-- ModifySnapshotAttribute Definitions -->
|
1662
|
+
|
1663
|
+
<xs:element name="ModifySnapshotAttribute"
|
1664
|
+
type="tns:ModifySnapshotAttributeType"/>
|
1665
|
+
|
1666
|
+
<xs:complexType name="ModifySnapshotAttributeType">
|
1667
|
+
<xs:sequence>
|
1668
|
+
<xs:element name="snapshotId" type="xs:string"/>
|
1669
|
+
<xs:element name="createVolumePermission" type="tns:CreateVolumePermissionOperationType"/>
|
1670
|
+
</xs:sequence>
|
1671
|
+
</xs:complexType>
|
1672
|
+
|
1673
|
+
<xs:complexType name="CreateVolumePermissionOperationType">
|
1674
|
+
<xs:choice>
|
1675
|
+
<xs:element name="add" type="tns:CreateVolumePermissionListType"/>
|
1676
|
+
<xs:element name="remove" type="tns:CreateVolumePermissionListType"/>
|
1677
|
+
</xs:choice>
|
1678
|
+
</xs:complexType>
|
1679
|
+
|
1680
|
+
<xs:complexType name="CreateVolumePermissionListType">
|
1681
|
+
<xs:sequence>
|
1682
|
+
<xs:element name="item" type="tns:CreateVolumePermissionItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1683
|
+
</xs:sequence>
|
1684
|
+
</xs:complexType>
|
1685
|
+
|
1686
|
+
<xs:complexType name="CreateVolumePermissionItemType">
|
1687
|
+
<xs:choice>
|
1688
|
+
<xs:element name="userId" type="xs:string"/>
|
1689
|
+
<xs:element name="group" type="xs:string" />
|
1690
|
+
</xs:choice>
|
1691
|
+
</xs:complexType>
|
1692
|
+
|
1693
|
+
<!-- ModifySnapshotAttributeResponse Definitions -->
|
1694
|
+
|
1695
|
+
<xs:element name="ModifySnapshotAttributeResponse"
|
1696
|
+
type="tns:ModifySnapshotAttributeResponseType" />
|
1697
|
+
|
1698
|
+
<xs:complexType name="ModifySnapshotAttributeResponseType">
|
1699
|
+
<xs:sequence>
|
1700
|
+
<xs:element name="requestId" type="xs:string"/>
|
1701
|
+
<xs:element name="return" type="xs:boolean"/>
|
1702
|
+
</xs:sequence>
|
1703
|
+
</xs:complexType>
|
1704
|
+
|
1705
|
+
<!-- ResetSnapshotAttribute Definitions -->
|
1706
|
+
|
1707
|
+
<xs:element name="ResetSnapshotAttribute"
|
1708
|
+
type="tns:ResetSnapshotAttributeType"/>
|
1709
|
+
|
1710
|
+
<xs:complexType name="ResetSnapshotAttributeType">
|
1711
|
+
<xs:sequence>
|
1712
|
+
<xs:element name="snapshotId" type="xs:string"/>
|
1713
|
+
<xs:group ref="tns:ResetSnapshotAttributesGroup" />
|
1714
|
+
</xs:sequence>
|
1715
|
+
</xs:complexType>
|
1716
|
+
|
1717
|
+
<xs:group name="ResetSnapshotAttributesGroup" >
|
1718
|
+
<xs:choice>
|
1719
|
+
<xs:element name="createVolumePermission" type="tns:EmptyElementType"/>
|
1720
|
+
</xs:choice>
|
1721
|
+
</xs:group>
|
1722
|
+
|
1723
|
+
<!-- ResetSnapshotAttributeResponse Definitions -->
|
1724
|
+
|
1725
|
+
<xs:element name="ResetSnapshotAttributeResponse"
|
1726
|
+
type="tns:ResetSnapshotAttributeResponseType" />
|
1727
|
+
|
1728
|
+
<xs:complexType name="ResetSnapshotAttributeResponseType">
|
1729
|
+
<xs:sequence>
|
1730
|
+
<xs:element name="requestId" type="xs:string"/>
|
1731
|
+
<xs:element name="return" type="xs:boolean"/>
|
1732
|
+
</xs:sequence>
|
1733
|
+
</xs:complexType>
|
1734
|
+
|
1735
|
+
<!-- DescribeSnapshotAttribute Definitions -->
|
1736
|
+
|
1737
|
+
<xs:element name="DescribeSnapshotAttribute"
|
1738
|
+
type="tns:DescribeSnapshotAttributeType" />
|
1739
|
+
|
1740
|
+
<xs:complexType name="DescribeSnapshotAttributeType">
|
1741
|
+
<xs:sequence>
|
1742
|
+
<xs:element name="snapshotId" type="xs:string" />
|
1743
|
+
<xs:group ref="tns:DescribeSnapshotAttributesGroup" />
|
1744
|
+
</xs:sequence>
|
1745
|
+
</xs:complexType>
|
1746
|
+
|
1747
|
+
<xs:group name="DescribeSnapshotAttributesGroup" >
|
1748
|
+
<xs:choice>
|
1749
|
+
<xs:element name="createVolumePermission" type="tns:EmptyElementType"/>
|
1750
|
+
</xs:choice>
|
1751
|
+
</xs:group>
|
1752
|
+
|
1753
|
+
<!-- DescribeSnapshotAttributeResponse Definitions -->
|
1754
|
+
|
1755
|
+
<xs:element name="DescribeSnapshotAttributeResponse"
|
1756
|
+
type="tns:DescribeSnapshotAttributeResponseType" />
|
1757
|
+
|
1758
|
+
<xs:complexType name="DescribeSnapshotAttributeResponseType">
|
1759
|
+
<xs:sequence>
|
1760
|
+
<xs:element name="requestId" type="xs:string"/>
|
1761
|
+
<xs:element name="snapshotId" type="xs:string" />
|
1762
|
+
<xs:element name="createVolumePermission" type="tns:CreateVolumePermissionListType"/>
|
1763
|
+
</xs:sequence>
|
1764
|
+
</xs:complexType>
|
1765
|
+
|
1766
|
+
<!-- BundleInstance request definitions -->
|
1767
|
+
|
1768
|
+
<xs:element name="BundleInstance" type="tns:BundleInstanceType"/>
|
1769
|
+
|
1770
|
+
<xs:complexType name="BundleInstanceType">
|
1771
|
+
<xs:sequence>
|
1772
|
+
<xs:element name="instanceId" type="xs:string"/>
|
1773
|
+
<xs:element name="storage" type="tns:BundleInstanceTaskStorageType"/>
|
1774
|
+
</xs:sequence>
|
1775
|
+
</xs:complexType>
|
1776
|
+
|
1777
|
+
<xs:complexType name="BundleInstanceTaskStorageType">
|
1778
|
+
<xs:sequence>
|
1779
|
+
<xs:element name="S3" type="tns:BundleInstanceS3StorageType"/>
|
1780
|
+
</xs:sequence>
|
1781
|
+
</xs:complexType>
|
1782
|
+
|
1783
|
+
<xs:complexType name="BundleInstanceS3StorageType">
|
1784
|
+
<xs:sequence>
|
1785
|
+
<xs:element name="bucket" type="xs:string"/>
|
1786
|
+
<xs:element name="prefix" type="xs:string"/>
|
1787
|
+
<xs:element name="awsAccessKeyId" type="xs:string" minOccurs="0" />
|
1788
|
+
<xs:element name="uploadPolicy" type="xs:string" minOccurs="0" />
|
1789
|
+
<xs:element name="uploadPolicySignature" type="xs:string" minOccurs="0" />
|
1790
|
+
</xs:sequence>
|
1791
|
+
</xs:complexType>
|
1792
|
+
|
1793
|
+
<!-- BundleInstance response definitions -->
|
1794
|
+
|
1795
|
+
<xs:element name="BundleInstanceResponse" type="tns:BundleInstanceResponseType"/>
|
1796
|
+
|
1797
|
+
<xs:complexType name="BundleInstanceResponseType">
|
1798
|
+
<xs:sequence>
|
1799
|
+
<xs:element name="requestId" type="xs:string"/>
|
1800
|
+
<xs:element name="bundleInstanceTask" type="tns:BundleInstanceTaskType"/>
|
1801
|
+
</xs:sequence>
|
1802
|
+
</xs:complexType>
|
1803
|
+
|
1804
|
+
<xs:complexType name="BundleInstanceTaskType">
|
1805
|
+
<xs:sequence>
|
1806
|
+
<xs:element name="instanceId" type="xs:string"/>
|
1807
|
+
<xs:element name="bundleId" type="xs:string"/>
|
1808
|
+
<xs:element name="state" type="xs:string"/>
|
1809
|
+
<xs:element name="startTime" type="xs:dateTime"/>
|
1810
|
+
<xs:element name="updateTime" type="xs:dateTime"/>
|
1811
|
+
<xs:element name="storage" type="tns:BundleInstanceTaskStorageType"/>
|
1812
|
+
<xs:element name="progress" type="xs:string" minOccurs="0"/>
|
1813
|
+
<xs:element name="error" type="tns:BundleInstanceTaskErrorType" minOccurs="0"/>
|
1814
|
+
</xs:sequence>
|
1815
|
+
</xs:complexType>
|
1816
|
+
|
1817
|
+
<xs:complexType name="BundleInstanceTaskErrorType">
|
1818
|
+
<xs:sequence>
|
1819
|
+
<xs:element name="code" type="xs:string"/>
|
1820
|
+
<xs:element name="message" type="xs:string"/>
|
1821
|
+
</xs:sequence>
|
1822
|
+
</xs:complexType>
|
1823
|
+
|
1824
|
+
<!-- DescribeBundleTasks request definitions -->
|
1825
|
+
|
1826
|
+
<xs:element name="DescribeBundleTasks" type="tns:DescribeBundleTasksType"/>
|
1827
|
+
|
1828
|
+
<xs:complexType name="DescribeBundleTasksType">
|
1829
|
+
<xs:sequence>
|
1830
|
+
<xs:element name="bundlesSet" type="tns:DescribeBundleTasksInfoType"/>
|
1831
|
+
</xs:sequence>
|
1832
|
+
</xs:complexType>
|
1833
|
+
|
1834
|
+
<xs:complexType name="DescribeBundleTasksInfoType">
|
1835
|
+
<xs:sequence>
|
1836
|
+
<xs:element name="item" type="tns:DescribeBundleTasksItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1837
|
+
</xs:sequence>
|
1838
|
+
</xs:complexType>
|
1839
|
+
|
1840
|
+
<xs:complexType name="DescribeBundleTasksItemType">
|
1841
|
+
<xs:sequence>
|
1842
|
+
<xs:element name="bundleId" type="xs:string" />
|
1843
|
+
</xs:sequence>
|
1844
|
+
</xs:complexType>
|
1845
|
+
|
1846
|
+
<!-- DescribeBundleTasks response definitions -->
|
1847
|
+
|
1848
|
+
<xs:element name="DescribeBundleTasksResponse" type="tns:DescribeBundleTasksResponseType"/>
|
1849
|
+
|
1850
|
+
<xs:complexType name="DescribeBundleTasksResponseType">
|
1851
|
+
<xs:sequence>
|
1852
|
+
<xs:element name="requestId" type="xs:string"/>
|
1853
|
+
<xs:element name="bundleInstanceTasksSet" type="tns:BundleInstanceTasksSetType"/>
|
1854
|
+
</xs:sequence>
|
1855
|
+
</xs:complexType>
|
1856
|
+
|
1857
|
+
<xs:complexType name="BundleInstanceTasksSetType">
|
1858
|
+
<xs:sequence>
|
1859
|
+
<xs:element name="item" type="tns:BundleInstanceTaskType" minOccurs="0" maxOccurs="unbounded"/>
|
1860
|
+
</xs:sequence>
|
1861
|
+
</xs:complexType>
|
1862
|
+
|
1863
|
+
<!-- CancelBundleTask request definitions -->
|
1864
|
+
|
1865
|
+
<xs:element name="CancelBundleTask" type="tns:CancelBundleTaskType"/>
|
1866
|
+
|
1867
|
+
<xs:complexType name="CancelBundleTaskType">
|
1868
|
+
<xs:sequence>
|
1869
|
+
<xs:element name="bundleId" type="xs:string"/>
|
1870
|
+
</xs:sequence>
|
1871
|
+
</xs:complexType>
|
1872
|
+
|
1873
|
+
<!-- CancelBundleTask response definitions -->
|
1874
|
+
|
1875
|
+
<xs:element name="CancelBundleTaskResponse" type="tns:CancelBundleTaskResponseType"/>
|
1876
|
+
|
1877
|
+
<xs:complexType name="CancelBundleTaskResponseType">
|
1878
|
+
<xs:sequence>
|
1879
|
+
<xs:element name="requestId" type="xs:string"/>
|
1880
|
+
<xs:element name="bundleInstanceTask" type="tns:BundleInstanceTaskType"/>
|
1881
|
+
</xs:sequence>
|
1882
|
+
</xs:complexType>
|
1883
|
+
|
1884
|
+
<!-- DescribeRegions Definitions -->
|
1885
|
+
|
1886
|
+
<xs:element name="DescribeRegions"
|
1887
|
+
type="tns:DescribeRegionsType" />
|
1888
|
+
|
1889
|
+
<xs:complexType name="DescribeRegionsType">
|
1890
|
+
<xs:sequence>
|
1891
|
+
<xs:element name="regionSet" type="tns:DescribeRegionsSetType"/>
|
1892
|
+
</xs:sequence>
|
1893
|
+
</xs:complexType>
|
1894
|
+
|
1895
|
+
<xs:complexType name="DescribeRegionsSetType">
|
1896
|
+
<xs:sequence>
|
1897
|
+
<xs:element name="item" type="tns:DescribeRegionsSetItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1898
|
+
</xs:sequence>
|
1899
|
+
</xs:complexType>
|
1900
|
+
|
1901
|
+
<xs:complexType name="DescribeRegionsSetItemType">
|
1902
|
+
<xs:sequence>
|
1903
|
+
<xs:element name="regionName" type="xs:string"/>
|
1904
|
+
</xs:sequence>
|
1905
|
+
</xs:complexType>
|
1906
|
+
|
1907
|
+
<!-- DescribeRegions Response definitions -->
|
1908
|
+
|
1909
|
+
<xs:element name="DescribeRegionsResponse"
|
1910
|
+
type="tns:DescribeRegionsResponseType"/>
|
1911
|
+
|
1912
|
+
<xs:complexType name="DescribeRegionsResponseType">
|
1913
|
+
<xs:sequence>
|
1914
|
+
<xs:element name="requestId" type="xs:string"/>
|
1915
|
+
<xs:element name="regionInfo" type="tns:RegionSetType"/>
|
1916
|
+
</xs:sequence>
|
1917
|
+
</xs:complexType>
|
1918
|
+
|
1919
|
+
<xs:complexType name="RegionSetType">
|
1920
|
+
<xs:sequence>
|
1921
|
+
<xs:element name="item" type="tns:RegionItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1922
|
+
</xs:sequence>
|
1923
|
+
</xs:complexType>
|
1924
|
+
|
1925
|
+
<xs:complexType name="RegionItemType">
|
1926
|
+
<xs:sequence>
|
1927
|
+
<xs:element name="regionName" type="xs:string"/>
|
1928
|
+
<xs:element name="regionEndpoint" type="xs:string"/>
|
1929
|
+
</xs:sequence>
|
1930
|
+
</xs:complexType>
|
1931
|
+
|
1932
|
+
<!-- DescribeReservedInstancesOfferings definitions -->
|
1933
|
+
|
1934
|
+
<xs:element name="DescribeReservedInstancesOfferings"
|
1935
|
+
type="tns:DescribeReservedInstancesOfferingsType"/>
|
1936
|
+
|
1937
|
+
<xs:complexType name="DescribeReservedInstancesOfferingsType">
|
1938
|
+
<xs:sequence>
|
1939
|
+
<xs:element name="reservedInstancesOfferingsSet" type="tns:DescribeReservedInstancesOfferingsSetType" minOccurs="0"/>
|
1940
|
+
<xs:element name="instanceType" type="xs:string" minOccurs="0" />
|
1941
|
+
<xs:element name="availabilityZone" type="xs:string" minOccurs="0" />
|
1942
|
+
<xs:element name="productDescription" type="xs:string" minOccurs="0" />
|
1943
|
+
</xs:sequence>
|
1944
|
+
</xs:complexType>
|
1945
|
+
|
1946
|
+
<xs:complexType name="DescribeReservedInstancesOfferingsSetType">
|
1947
|
+
<xs:sequence>
|
1948
|
+
<xs:element name="item" type="tns:DescribeReservedInstancesOfferingsSetItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1949
|
+
</xs:sequence>
|
1950
|
+
</xs:complexType>
|
1951
|
+
|
1952
|
+
<xs:complexType name="DescribeReservedInstancesOfferingsSetItemType">
|
1953
|
+
<xs:sequence>
|
1954
|
+
<xs:element name="reservedInstancesOfferingId" type="xs:string"/>
|
1955
|
+
</xs:sequence>
|
1956
|
+
</xs:complexType>
|
1957
|
+
|
1958
|
+
<!-- DescribeReservedInstancesOfferingsResponse definitions -->
|
1959
|
+
|
1960
|
+
<xs:element name="DescribeReservedInstancesOfferingsResponse"
|
1961
|
+
type="tns:DescribeReservedInstancesOfferingsResponseType"/>
|
1962
|
+
|
1963
|
+
<xs:complexType name="DescribeReservedInstancesOfferingsResponseType">
|
1964
|
+
<xs:sequence>
|
1965
|
+
<xs:element name="requestId" type="xs:string"/>
|
1966
|
+
<xs:element name="reservedInstancesOfferingsSet" type="tns:DescribeReservedInstancesOfferingsResponseSetType"/>
|
1967
|
+
</xs:sequence>
|
1968
|
+
</xs:complexType>
|
1969
|
+
|
1970
|
+
<xs:complexType name="DescribeReservedInstancesOfferingsResponseSetType">
|
1971
|
+
<xs:sequence>
|
1972
|
+
<xs:element name="item" type="tns:DescribeReservedInstancesOfferingsResponseSetItemType" minOccurs="0" maxOccurs="unbounded"/>
|
1973
|
+
</xs:sequence>
|
1974
|
+
</xs:complexType>
|
1975
|
+
|
1976
|
+
<xs:complexType name="DescribeReservedInstancesOfferingsResponseSetItemType">
|
1977
|
+
<xs:sequence>
|
1978
|
+
<xs:element name="reservedInstancesOfferingId" type="xs:string" />
|
1979
|
+
<xs:element name="instanceType" type="xs:string" />
|
1980
|
+
<xs:element name="availabilityZone" type="xs:string" />
|
1981
|
+
<xs:element name="duration" type="xs:long" />
|
1982
|
+
<xs:element name="fixedPrice" type="xs:double" />
|
1983
|
+
<xs:element name="usagePrice" type="xs:double" />
|
1984
|
+
<xs:element name="productDescription" type="xs:string" />
|
1985
|
+
</xs:sequence>
|
1986
|
+
</xs:complexType>
|
1987
|
+
|
1988
|
+
<!-- PurchaseReservedInstancesOffering definitions -->
|
1989
|
+
<xs:element name="PurchaseReservedInstancesOffering"
|
1990
|
+
type="tns:PurchaseReservedInstancesOfferingType"/>
|
1991
|
+
|
1992
|
+
<xs:complexType name="PurchaseReservedInstancesOfferingType">
|
1993
|
+
<xs:sequence>
|
1994
|
+
<xs:element name="reservedInstancesOfferingId" type="xs:string" />
|
1995
|
+
<xs:element name="instanceCount" type="xs:int" />
|
1996
|
+
</xs:sequence>
|
1997
|
+
</xs:complexType>
|
1998
|
+
|
1999
|
+
<!-- PurchaseReservedInstancesOfferingResponse definitions -->
|
2000
|
+
<xs:element name="PurchaseReservedInstancesOfferingResponse"
|
2001
|
+
type="tns:PurchaseReservedInstancesOfferingResponseType"/>
|
2002
|
+
|
2003
|
+
<xs:complexType name="PurchaseReservedInstancesOfferingResponseType">
|
2004
|
+
<xs:sequence>
|
2005
|
+
<xs:element name="requestId" type="xs:string"/>
|
2006
|
+
<xs:element name="reservedInstancesId" type="xs:string" />
|
2007
|
+
</xs:sequence>
|
2008
|
+
</xs:complexType>
|
2009
|
+
|
2010
|
+
<!-- DescribeReservedInstances definitions -->
|
2011
|
+
<xs:element name="DescribeReservedInstances"
|
2012
|
+
type="tns:DescribeReservedInstancesType"/>
|
2013
|
+
|
2014
|
+
<xs:complexType name="DescribeReservedInstancesType">
|
2015
|
+
<xs:sequence>
|
2016
|
+
<xs:element name="reservedInstancesSet" type="tns:DescribeReservedInstancesSetType" minOccurs="0" />
|
2017
|
+
</xs:sequence>
|
2018
|
+
</xs:complexType>
|
2019
|
+
|
2020
|
+
<xs:complexType name="DescribeReservedInstancesSetType">
|
2021
|
+
<xs:sequence>
|
2022
|
+
<xs:element name="item" type="tns:DescribeReservedInstancesSetItemType" minOccurs="0" maxOccurs="unbounded" />
|
2023
|
+
</xs:sequence>
|
2024
|
+
</xs:complexType>
|
2025
|
+
|
2026
|
+
<xs:complexType name="DescribeReservedInstancesSetItemType">
|
2027
|
+
<xs:sequence>
|
2028
|
+
<xs:element name="reservedInstancesId" type="xs:string" />
|
2029
|
+
</xs:sequence>
|
2030
|
+
</xs:complexType>
|
2031
|
+
|
2032
|
+
<!-- DescribeReservedInstancesResponse definitions -->
|
2033
|
+
<xs:element name="DescribeReservedInstancesResponse"
|
2034
|
+
type="tns:DescribeReservedInstancesResponseType"/>
|
2035
|
+
|
2036
|
+
<xs:complexType name="DescribeReservedInstancesResponseType">
|
2037
|
+
<xs:sequence>
|
2038
|
+
<xs:element name="requestId" type="xs:string"/>
|
2039
|
+
<xs:element name="reservedInstancesSet" type="tns:DescribeReservedInstancesResponseSetType" />
|
2040
|
+
</xs:sequence>
|
2041
|
+
</xs:complexType>
|
2042
|
+
|
2043
|
+
<xs:complexType name="DescribeReservedInstancesResponseSetType">
|
2044
|
+
<xs:sequence>
|
2045
|
+
<xs:element name="item" type="tns:DescribeReservedInstancesResponseSetItemType" minOccurs="0" maxOccurs="unbounded" />
|
2046
|
+
</xs:sequence>
|
2047
|
+
</xs:complexType>
|
2048
|
+
|
2049
|
+
<xs:complexType name="DescribeReservedInstancesResponseSetItemType">
|
2050
|
+
<xs:sequence>
|
2051
|
+
<xs:element name="reservedInstancesId" type="xs:string" />
|
2052
|
+
<xs:element name="instanceType" type="xs:string" />
|
2053
|
+
<xs:element name="availabilityZone" type="xs:string" />
|
2054
|
+
<xs:element name="start" type="xs:dateTime" />
|
2055
|
+
<xs:element name="duration" type="xs:long" />
|
2056
|
+
<xs:element name="fixedPrice" type="xs:double" />
|
2057
|
+
<xs:element name="usagePrice" type="xs:double" />
|
2058
|
+
<xs:element name="instanceCount" type="xs:integer" />
|
2059
|
+
<xs:element name="productDescription" type="xs:string" />
|
2060
|
+
<xs:element name="state" type="xs:string" />
|
2061
|
+
</xs:sequence>
|
2062
|
+
</xs:complexType>
|
2063
|
+
|
2064
|
+
|
2065
|
+
<!-- MonitorInstances / UnmonitorInstances definitions -->
|
2066
|
+
|
2067
|
+
<xs:element name="MonitorInstances"
|
2068
|
+
type="tns:MonitorInstancesType" />
|
2069
|
+
|
2070
|
+
<xs:element name="UnmonitorInstances"
|
2071
|
+
type="tns:MonitorInstancesType" />
|
2072
|
+
|
2073
|
+
<xs:complexType name="MonitorInstancesType">
|
2074
|
+
<xs:sequence>
|
2075
|
+
<xs:element name="instancesSet" type="tns:MonitorInstancesSetType" />
|
2076
|
+
</xs:sequence>
|
2077
|
+
</xs:complexType>
|
2078
|
+
|
2079
|
+
<xs:complexType name="MonitorInstancesSetType">
|
2080
|
+
<xs:sequence>
|
2081
|
+
<xs:element name="item" type="tns:MonitorInstancesSetItemType" minOccurs="1" maxOccurs="unbounded" />
|
2082
|
+
</xs:sequence>
|
2083
|
+
</xs:complexType>
|
2084
|
+
|
2085
|
+
<xs:complexType name="MonitorInstancesSetItemType">
|
2086
|
+
<xs:sequence>
|
2087
|
+
<xs:element name="instanceId" type="xs:string" />
|
2088
|
+
</xs:sequence>
|
2089
|
+
</xs:complexType>
|
2090
|
+
|
2091
|
+
|
2092
|
+
<!-- MonitorInstancesResponse definitions -->
|
2093
|
+
|
2094
|
+
<xs:element name="MonitorInstancesResponse"
|
2095
|
+
type="tns:MonitorInstancesResponseType"/>
|
2096
|
+
|
2097
|
+
<xs:element name="UnmonitorInstancesResponse"
|
2098
|
+
type="tns:MonitorInstancesResponseType"/>
|
2099
|
+
|
2100
|
+
<xs:complexType name="MonitorInstancesResponseType">
|
2101
|
+
<xs:sequence>
|
2102
|
+
<xs:element name="requestId" type="xs:string"/>
|
2103
|
+
<xs:element name="instancesSet" type="tns:MonitorInstancesResponseSetType" />
|
2104
|
+
</xs:sequence>
|
2105
|
+
</xs:complexType>
|
2106
|
+
|
2107
|
+
<xs:complexType name="MonitorInstancesResponseSetType">
|
2108
|
+
<xs:sequence>
|
2109
|
+
<xs:element name="item" type="tns:MonitorInstancesResponseSetItemType" minOccurs="1" maxOccurs="unbounded" />
|
2110
|
+
</xs:sequence>
|
2111
|
+
</xs:complexType>
|
2112
|
+
|
2113
|
+
<xs:complexType name="MonitorInstancesResponseSetItemType">
|
2114
|
+
<xs:sequence>
|
2115
|
+
<xs:element name="instanceId" type="xs:string" />
|
2116
|
+
<xs:element name="monitoring" type="tns:InstanceMonitoringStateType" />
|
2117
|
+
</xs:sequence>
|
2118
|
+
</xs:complexType>
|
2119
|
+
|
2120
|
+
<xs:complexType name="InstanceMonitoringStateType">
|
2121
|
+
<xs:sequence>
|
2122
|
+
<xs:element name="state" type="xs:string" />
|
2123
|
+
</xs:sequence>
|
2124
|
+
</xs:complexType>
|
2125
|
+
|
2126
|
+
|
2127
|
+
<!-- VPC definitions -->
|
2128
|
+
|
2129
|
+
<xs:complexType name="AttachmentType">
|
2130
|
+
<xs:sequence>
|
2131
|
+
<xs:element name="vpcId" type="xs:string" />
|
2132
|
+
<xs:element name="state" type="xs:string" />
|
2133
|
+
</xs:sequence>
|
2134
|
+
</xs:complexType>
|
2135
|
+
<xs:complexType name="AttachmentSetType">
|
2136
|
+
<xs:sequence>
|
2137
|
+
<xs:element name="item" type="tns:AttachmentType" minOccurs="0" maxOccurs="unbounded" />
|
2138
|
+
</xs:sequence>
|
2139
|
+
</xs:complexType>
|
2140
|
+
<xs:complexType name="VpnGatewayType">
|
2141
|
+
<xs:sequence>
|
2142
|
+
<xs:element name="vpnGatewayId" type="xs:string" />
|
2143
|
+
<xs:element name="state" type="xs:string" />
|
2144
|
+
<xs:element name="type" type="xs:string" />
|
2145
|
+
<xs:element name="availabilityZone" type="xs:string" />
|
2146
|
+
<xs:element name="attachments" type="tns:AttachmentSetType" />
|
2147
|
+
</xs:sequence>
|
2148
|
+
</xs:complexType>
|
2149
|
+
<xs:complexType name="CustomerGatewayType">
|
2150
|
+
<xs:sequence>
|
2151
|
+
<xs:element name="customerGatewayId" type="xs:string" />
|
2152
|
+
<xs:element name="state" type="xs:string" />
|
2153
|
+
<xs:element name="type" type="xs:string" />
|
2154
|
+
<xs:element name="ipAddress" type="xs:string" />
|
2155
|
+
<xs:element name="bgpAsn" type="xs:int" />
|
2156
|
+
</xs:sequence>
|
2157
|
+
</xs:complexType>
|
2158
|
+
<xs:complexType name="VpnConnectionType">
|
2159
|
+
<xs:sequence>
|
2160
|
+
<xs:element name="vpnConnectionId" type="xs:string" />
|
2161
|
+
<xs:element name="state" type="xs:string" />
|
2162
|
+
<xs:element name="customerGatewayConfiguration" type="xs:string" minOccurs="0" />
|
2163
|
+
<xs:element name="type" type="xs:string" minOccurs="0" />
|
2164
|
+
<xs:element name="customerGatewayId" type="xs:string" />
|
2165
|
+
<xs:element name="vpnGatewayId" type="xs:string" />
|
2166
|
+
</xs:sequence>
|
2167
|
+
</xs:complexType>
|
2168
|
+
<xs:complexType name="VpcType">
|
2169
|
+
<xs:sequence>
|
2170
|
+
<xs:element name="vpcId" type="xs:string" />
|
2171
|
+
<xs:element name="state" type="xs:string" minOccurs="0" />
|
2172
|
+
<xs:element name="cidrBlock" type="xs:string" minOccurs="0" />
|
2173
|
+
<xs:element name="dhcpOptionsId" type="xs:string" minOccurs="0" />
|
2174
|
+
</xs:sequence>
|
2175
|
+
</xs:complexType>
|
2176
|
+
<xs:complexType name="SubnetType">
|
2177
|
+
<xs:sequence>
|
2178
|
+
<xs:element name="subnetId" type="xs:string" />
|
2179
|
+
<xs:element name="state" type="xs:string" minOccurs="0" />
|
2180
|
+
<xs:element name="vpcId" type="xs:string" minOccurs="0" />
|
2181
|
+
<xs:element name="cidrBlock" type="xs:string" minOccurs="0" />
|
2182
|
+
<xs:element name="availableIpAddressCount" type="xs:int" minOccurs="0" />
|
2183
|
+
<xs:element name="availabilityZone" type="xs:string" minOccurs="0" />
|
2184
|
+
</xs:sequence>
|
2185
|
+
</xs:complexType>
|
2186
|
+
<xs:complexType name="CustomerGatewaySetType">
|
2187
|
+
<xs:sequence>
|
2188
|
+
<xs:element name="item" type="tns:CustomerGatewayType" minOccurs="0" maxOccurs="unbounded" />
|
2189
|
+
</xs:sequence>
|
2190
|
+
</xs:complexType>
|
2191
|
+
<xs:complexType name="VpnGatewaySetType">
|
2192
|
+
<xs:sequence>
|
2193
|
+
<xs:element name="item" type="tns:VpnGatewayType" minOccurs="0" maxOccurs="unbounded" />
|
2194
|
+
</xs:sequence>
|
2195
|
+
</xs:complexType>
|
2196
|
+
<xs:complexType name="VpnConnectionSetType">
|
2197
|
+
<xs:sequence>
|
2198
|
+
<xs:element name="item" type="tns:VpnConnectionType" minOccurs="0" maxOccurs="unbounded" />
|
2199
|
+
</xs:sequence>
|
2200
|
+
</xs:complexType>
|
2201
|
+
<xs:complexType name="VpcSetType">
|
2202
|
+
<xs:sequence>
|
2203
|
+
<xs:element name="item" type="tns:VpcType" minOccurs="0" maxOccurs="unbounded" />
|
2204
|
+
</xs:sequence>
|
2205
|
+
</xs:complexType>
|
2206
|
+
<xs:complexType name="SubnetSetType">
|
2207
|
+
<xs:sequence>
|
2208
|
+
<xs:element name="item" type="tns:SubnetType" minOccurs="0" maxOccurs="unbounded" />
|
2209
|
+
</xs:sequence>
|
2210
|
+
</xs:complexType>
|
2211
|
+
<xs:complexType name="CustomerGatewayIdSetItemType">
|
2212
|
+
<xs:sequence>
|
2213
|
+
<xs:element name="customerGatewayId" type="xs:string" />
|
2214
|
+
</xs:sequence>
|
2215
|
+
</xs:complexType>
|
2216
|
+
<xs:complexType name="CustomerGatewayIdSetType">
|
2217
|
+
<xs:sequence>
|
2218
|
+
<xs:element name="item" type="tns:CustomerGatewayIdSetItemType" minOccurs="0" maxOccurs="unbounded" />
|
2219
|
+
</xs:sequence>
|
2220
|
+
</xs:complexType>
|
2221
|
+
<xs:complexType name="VpnGatewayIdSetItemType">
|
2222
|
+
<xs:sequence>
|
2223
|
+
<xs:element name="vpnGatewayId" type="xs:string" />
|
2224
|
+
</xs:sequence>
|
2225
|
+
</xs:complexType>
|
2226
|
+
<xs:complexType name="VpnGatewayIdSetType">
|
2227
|
+
<xs:sequence>
|
2228
|
+
<xs:element name="item" type="tns:VpnGatewayIdSetItemType" minOccurs="0" maxOccurs="unbounded" />
|
2229
|
+
</xs:sequence>
|
2230
|
+
</xs:complexType>
|
2231
|
+
<xs:complexType name="VpnConnectionIdSetItemType">
|
2232
|
+
<xs:sequence>
|
2233
|
+
<xs:element name="vpnConnectionId" type="xs:string" />
|
2234
|
+
</xs:sequence>
|
2235
|
+
</xs:complexType>
|
2236
|
+
<xs:complexType name="VpnConnectionIdSetType">
|
2237
|
+
<xs:sequence>
|
2238
|
+
<xs:element name="item" type="tns:VpnConnectionIdSetItemType" minOccurs="0" maxOccurs="unbounded" />
|
2239
|
+
</xs:sequence>
|
2240
|
+
</xs:complexType>
|
2241
|
+
<xs:complexType name="VpcIdSetItemType">
|
2242
|
+
<xs:sequence>
|
2243
|
+
<xs:element name="vpcId" type="xs:string" />
|
2244
|
+
</xs:sequence>
|
2245
|
+
</xs:complexType>
|
2246
|
+
<xs:complexType name="VpcIdSetType">
|
2247
|
+
<xs:sequence>
|
2248
|
+
<xs:element name="item" type="tns:VpcIdSetItemType" minOccurs="0" maxOccurs="unbounded" />
|
2249
|
+
</xs:sequence>
|
2250
|
+
</xs:complexType>
|
2251
|
+
<xs:complexType name="SubnetIdSetItemType">
|
2252
|
+
<xs:sequence>
|
2253
|
+
<xs:element name="subnetId" type="xs:string" />
|
2254
|
+
</xs:sequence>
|
2255
|
+
</xs:complexType>
|
2256
|
+
<xs:complexType name="SubnetIdSetType">
|
2257
|
+
<xs:sequence>
|
2258
|
+
<xs:element name="item" type="tns:SubnetIdSetItemType" minOccurs="0" maxOccurs="unbounded" />
|
2259
|
+
</xs:sequence>
|
2260
|
+
</xs:complexType>
|
2261
|
+
<xs:complexType name="DhcpOptionsIdSetItemType">
|
2262
|
+
<xs:sequence>
|
2263
|
+
<xs:element name="dhcpOptionsId" type="xs:string" />
|
2264
|
+
</xs:sequence>
|
2265
|
+
</xs:complexType>
|
2266
|
+
<xs:complexType name="DhcpOptionsIdSetType">
|
2267
|
+
<xs:sequence>
|
2268
|
+
<xs:element name="item" type="tns:DhcpOptionsIdSetItemType" minOccurs="0" maxOccurs="unbounded" />
|
2269
|
+
</xs:sequence>
|
2270
|
+
</xs:complexType>
|
2271
|
+
<xs:complexType name="DhcpConfigurationItemSetType">
|
2272
|
+
<xs:sequence>
|
2273
|
+
<xs:element name="item" type="tns:DhcpConfigurationItemType" minOccurs="0" maxOccurs="unbounded" />
|
2274
|
+
</xs:sequence>
|
2275
|
+
</xs:complexType>
|
2276
|
+
<xs:complexType name="DhcpOptionsSetType">
|
2277
|
+
<xs:sequence>
|
2278
|
+
<xs:element name="item" type="tns:DhcpOptionsType" minOccurs="0" maxOccurs="unbounded" />
|
2279
|
+
</xs:sequence>
|
2280
|
+
</xs:complexType>
|
2281
|
+
<xs:complexType name="DhcpConfigurationItemType">
|
2282
|
+
<xs:sequence>
|
2283
|
+
<xs:element name="key" type="xs:string" />
|
2284
|
+
<xs:element name="valueSet" type="tns:DhcpValueSetType" />
|
2285
|
+
</xs:sequence>
|
2286
|
+
</xs:complexType>
|
2287
|
+
<xs:complexType name="DhcpOptionsType">
|
2288
|
+
<xs:sequence>
|
2289
|
+
<xs:element name="dhcpOptionsId" type="xs:string" />
|
2290
|
+
<xs:element name="dhcpConfigurationSet" type="tns:DhcpConfigurationItemSetType" />
|
2291
|
+
</xs:sequence>
|
2292
|
+
</xs:complexType>
|
2293
|
+
<xs:complexType name="DhcpValueType">
|
2294
|
+
<xs:sequence>
|
2295
|
+
<xs:element name="value" type="xs:string" />
|
2296
|
+
</xs:sequence>
|
2297
|
+
</xs:complexType>
|
2298
|
+
<xs:complexType name="DhcpValueSetType">
|
2299
|
+
<xs:sequence>
|
2300
|
+
<xs:element name="item" type="tns:DhcpValueType" minOccurs="0" maxOccurs="unbounded" />
|
2301
|
+
</xs:sequence>
|
2302
|
+
</xs:complexType>
|
2303
|
+
<xs:complexType name="FilterType">
|
2304
|
+
<xs:sequence>
|
2305
|
+
<xs:element name="name" type="xs:string" />
|
2306
|
+
<xs:element name="valueSet" type="tns:ValueSetType" />
|
2307
|
+
</xs:sequence>
|
2308
|
+
</xs:complexType>
|
2309
|
+
<xs:complexType name="FilterSetType">
|
2310
|
+
<xs:sequence>
|
2311
|
+
<xs:element name="item" type="tns:FilterType" minOccurs="0" maxOccurs="unbounded" />
|
2312
|
+
</xs:sequence>
|
2313
|
+
</xs:complexType>
|
2314
|
+
<xs:complexType name="ValueType">
|
2315
|
+
<xs:sequence>
|
2316
|
+
<xs:element name="value" type="xs:string" />
|
2317
|
+
</xs:sequence>
|
2318
|
+
</xs:complexType>
|
2319
|
+
<xs:complexType name="ValueSetType">
|
2320
|
+
<xs:sequence>
|
2321
|
+
<xs:element name="item" type="tns:ValueType" minOccurs="0" maxOccurs="unbounded" />
|
2322
|
+
</xs:sequence>
|
2323
|
+
</xs:complexType>
|
2324
|
+
<xs:element name="CreateCustomerGateway" type="tns:CreateCustomerGatewayType" />
|
2325
|
+
<xs:element name="CreateCustomerGatewayResponse" type="tns:CreateCustomerGatewayResponseType" />
|
2326
|
+
<xs:element name="DeleteCustomerGateway" type="tns:DeleteCustomerGatewayType" />
|
2327
|
+
<xs:element name="DeleteCustomerGatewayResponse" type="tns:DeleteCustomerGatewayResponseType" />
|
2328
|
+
<xs:element name="DescribeCustomerGateways" type="tns:DescribeCustomerGatewaysType" />
|
2329
|
+
<xs:element name="DescribeCustomerGatewaysResponse" type="tns:DescribeCustomerGatewaysResponseType" />
|
2330
|
+
<xs:element name="CreateVpnGateway" type="tns:CreateVpnGatewayType" />
|
2331
|
+
<xs:element name="CreateVpnGatewayResponse" type="tns:CreateVpnGatewayResponseType" />
|
2332
|
+
<xs:element name="DeleteVpnGateway" type="tns:DeleteVpnGatewayType" />
|
2333
|
+
<xs:element name="DeleteVpnGatewayResponse" type="tns:DeleteVpnGatewayResponseType" />
|
2334
|
+
<xs:element name="DescribeVpnGateways" type="tns:DescribeVpnGatewaysType" />
|
2335
|
+
<xs:element name="DescribeVpnGatewaysResponse" type="tns:DescribeVpnGatewaysResponseType" />
|
2336
|
+
<xs:element name="CreateVpnConnection" type="tns:CreateVpnConnectionType" />
|
2337
|
+
<xs:element name="CreateVpnConnectionResponse" type="tns:CreateVpnConnectionResponseType" />
|
2338
|
+
<xs:element name="DeleteVpnConnection" type="tns:DeleteVpnConnectionType" />
|
2339
|
+
<xs:element name="DeleteVpnConnectionResponse" type="tns:DeleteVpnConnectionResponseType" />
|
2340
|
+
<xs:element name="DescribeVpnConnections" type="tns:DescribeVpnConnectionsType" />
|
2341
|
+
<xs:element name="DescribeVpnConnectionsResponse" type="tns:DescribeVpnConnectionsResponseType" />
|
2342
|
+
<xs:element name="AttachVpnGateway" type="tns:AttachVpnGatewayType" />
|
2343
|
+
<xs:element name="AttachVpnGatewayResponse" type="tns:AttachVpnGatewayResponseType" />
|
2344
|
+
<xs:element name="DetachVpnGateway" type="tns:DetachVpnGatewayType" />
|
2345
|
+
<xs:element name="DetachVpnGatewayResponse" type="tns:DetachVpnGatewayResponseType" />
|
2346
|
+
<xs:element name="CreateVpc" type="tns:CreateVpcType" />
|
2347
|
+
<xs:element name="CreateVpcResponse" type="tns:CreateVpcResponseType" />
|
2348
|
+
<xs:element name="DescribeVpcs" type="tns:DescribeVpcsType" />
|
2349
|
+
<xs:element name="DescribeVpcsResponse" type="tns:DescribeVpcsResponseType" />
|
2350
|
+
<xs:element name="DeleteVpc" type="tns:DeleteVpcType" />
|
2351
|
+
<xs:element name="DeleteVpcResponse" type="tns:DeleteVpcResponseType" />
|
2352
|
+
<xs:element name="CreateSubnet" type="tns:CreateSubnetType" />
|
2353
|
+
<xs:element name="CreateSubnetResponse" type="tns:CreateSubnetResponseType" />
|
2354
|
+
<xs:element name="DescribeSubnets" type="tns:DescribeSubnetsType" />
|
2355
|
+
<xs:element name="DescribeSubnetsResponse" type="tns:DescribeSubnetsResponseType" />
|
2356
|
+
<xs:element name="DeleteSubnet" type="tns:DeleteSubnetType" />
|
2357
|
+
<xs:element name="DeleteSubnetResponse" type="tns:DeleteSubnetResponseType" />
|
2358
|
+
<xs:element name="DeleteDhcpOptions" type="tns:DeleteDhcpOptionsType" />
|
2359
|
+
<xs:element name="DeleteDhcpOptionsResponse" type="tns:DeleteDhcpOptionsResponseType" />
|
2360
|
+
<xs:element name="DescribeDhcpOptions" type="tns:DescribeDhcpOptionsType" />
|
2361
|
+
<xs:element name="DescribeDhcpOptionsResponse" type="tns:DescribeDhcpOptionsResponseType" />
|
2362
|
+
<xs:element name="CreateDhcpOptions" type="tns:CreateDhcpOptionsType" />
|
2363
|
+
<xs:element name="CreateDhcpOptionsResponse" type="tns:CreateDhcpOptionsResponseType" />
|
2364
|
+
<xs:element name="AssociateDhcpOptions" type="tns:AssociateDhcpOptionsType" />
|
2365
|
+
<xs:element name="AssociateDhcpOptionsResponse" type="tns:AssociateDhcpOptionsResponseType" />
|
2366
|
+
<xs:complexType name="CreateCustomerGatewayType">
|
2367
|
+
<xs:sequence>
|
2368
|
+
<xs:element name="type" type="xs:string" />
|
2369
|
+
<xs:element name="ipAddress" type="xs:string" />
|
2370
|
+
<xs:element name="bgpAsn" type="xs:int" />
|
2371
|
+
</xs:sequence>
|
2372
|
+
</xs:complexType>
|
2373
|
+
<xs:complexType name="CreateCustomerGatewayResponseType">
|
2374
|
+
<xs:sequence>
|
2375
|
+
<xs:element name="requestId" type="xs:string" />
|
2376
|
+
<xs:element name="customerGateway" type="tns:CustomerGatewayType" />
|
2377
|
+
</xs:sequence>
|
2378
|
+
</xs:complexType>
|
2379
|
+
<xs:complexType name="DeleteCustomerGatewayType">
|
2380
|
+
<xs:sequence>
|
2381
|
+
<xs:element name="customerGatewayId" type="xs:string" />
|
2382
|
+
</xs:sequence>
|
2383
|
+
</xs:complexType>
|
2384
|
+
<xs:complexType name="DeleteCustomerGatewayResponseType">
|
2385
|
+
<xs:sequence>
|
2386
|
+
<xs:element name="requestId" type="xs:string" />
|
2387
|
+
<xs:element name="return" type="xs:boolean" />
|
2388
|
+
</xs:sequence>
|
2389
|
+
</xs:complexType>
|
2390
|
+
<xs:complexType name="DescribeCustomerGatewaysType">
|
2391
|
+
<xs:sequence>
|
2392
|
+
<xs:element name="customerGatewaySet" type="tns:CustomerGatewayIdSetType" minOccurs="0" />
|
2393
|
+
<xs:element name="filterSet" type="tns:FilterSetType" minOccurs="0" />
|
2394
|
+
</xs:sequence>
|
2395
|
+
</xs:complexType>
|
2396
|
+
<xs:complexType name="DescribeCustomerGatewaysResponseType">
|
2397
|
+
<xs:sequence>
|
2398
|
+
<xs:element name="requestId" type="xs:string" />
|
2399
|
+
<xs:element name="customerGatewaySet" type="tns:CustomerGatewaySetType" />
|
2400
|
+
</xs:sequence>
|
2401
|
+
</xs:complexType>
|
2402
|
+
<xs:complexType name="CreateVpnGatewayType">
|
2403
|
+
<xs:sequence>
|
2404
|
+
<xs:element name="type" type="xs:string" />
|
2405
|
+
<xs:element name="availabilityZone" type="xs:string" minOccurs="0" />
|
2406
|
+
</xs:sequence>
|
2407
|
+
</xs:complexType>
|
2408
|
+
<xs:complexType name="CreateVpnGatewayResponseType">
|
2409
|
+
<xs:sequence>
|
2410
|
+
<xs:element name="requestId" type="xs:string" />
|
2411
|
+
<xs:element name="vpnGateway" type="tns:VpnGatewayType" />
|
2412
|
+
</xs:sequence>
|
2413
|
+
</xs:complexType>
|
2414
|
+
<xs:complexType name="DeleteVpnGatewayType">
|
2415
|
+
<xs:sequence>
|
2416
|
+
<xs:element name="vpnGatewayId" type="xs:string" />
|
2417
|
+
</xs:sequence>
|
2418
|
+
</xs:complexType>
|
2419
|
+
<xs:complexType name="DeleteVpnGatewayResponseType">
|
2420
|
+
<xs:sequence>
|
2421
|
+
<xs:element name="requestId" type="xs:string" />
|
2422
|
+
<xs:element name="return" type="xs:boolean" />
|
2423
|
+
</xs:sequence>
|
2424
|
+
</xs:complexType>
|
2425
|
+
<xs:complexType name="DescribeVpnGatewaysType">
|
2426
|
+
<xs:sequence>
|
2427
|
+
<xs:element name="vpnGatewaySet" type="tns:VpnGatewayIdSetType" minOccurs="0" />
|
2428
|
+
<xs:element name="filterSet" type="tns:FilterSetType" minOccurs="0" />
|
2429
|
+
</xs:sequence>
|
2430
|
+
</xs:complexType>
|
2431
|
+
<xs:complexType name="DescribeVpnGatewaysResponseType">
|
2432
|
+
<xs:sequence>
|
2433
|
+
<xs:element name="requestId" type="xs:string" />
|
2434
|
+
<xs:element name="vpnGatewaySet" type="tns:VpnGatewaySetType" />
|
2435
|
+
</xs:sequence>
|
2436
|
+
</xs:complexType>
|
2437
|
+
<xs:complexType name="CreateVpnConnectionType">
|
2438
|
+
<xs:sequence>
|
2439
|
+
<xs:element name="type" type="xs:string" />
|
2440
|
+
<xs:element name="customerGatewayId" type="xs:string" />
|
2441
|
+
<xs:element name="vpnGatewayId" type="xs:string" />
|
2442
|
+
</xs:sequence>
|
2443
|
+
</xs:complexType>
|
2444
|
+
<xs:complexType name="CreateVpnConnectionResponseType">
|
2445
|
+
<xs:sequence>
|
2446
|
+
<xs:element name="requestId" type="xs:string" />
|
2447
|
+
<xs:element name="vpnConnection" type="tns:VpnConnectionType" />
|
2448
|
+
</xs:sequence>
|
2449
|
+
</xs:complexType>
|
2450
|
+
<xs:complexType name="DeleteVpnConnectionType">
|
2451
|
+
<xs:sequence>
|
2452
|
+
<xs:element name="vpnConnectionId" type="xs:string" />
|
2453
|
+
</xs:sequence>
|
2454
|
+
</xs:complexType>
|
2455
|
+
<xs:complexType name="DeleteVpnConnectionResponseType">
|
2456
|
+
<xs:sequence>
|
2457
|
+
<xs:element name="requestId" type="xs:string" />
|
2458
|
+
<xs:element name="return" type="xs:boolean" />
|
2459
|
+
</xs:sequence>
|
2460
|
+
</xs:complexType>
|
2461
|
+
<xs:complexType name="DescribeVpnConnectionsType">
|
2462
|
+
<xs:sequence>
|
2463
|
+
<xs:element name="vpnConnectionSet" type="tns:VpnConnectionIdSetType" minOccurs="0" />
|
2464
|
+
<xs:element name="filterSet" type="tns:FilterSetType" minOccurs="0" />
|
2465
|
+
</xs:sequence>
|
2466
|
+
</xs:complexType>
|
2467
|
+
<xs:complexType name="DescribeVpnConnectionsResponseType">
|
2468
|
+
<xs:sequence>
|
2469
|
+
<xs:element name="requestId" type="xs:string" />
|
2470
|
+
<xs:element name="vpnConnectionSet" type="tns:VpnConnectionSetType" />
|
2471
|
+
</xs:sequence>
|
2472
|
+
</xs:complexType>
|
2473
|
+
<xs:complexType name="AttachVpnGatewayType">
|
2474
|
+
<xs:sequence>
|
2475
|
+
<xs:element name="vpnGatewayId" type="xs:string" />
|
2476
|
+
<xs:element name="vpcId" type="xs:string" />
|
2477
|
+
</xs:sequence>
|
2478
|
+
</xs:complexType>
|
2479
|
+
<xs:complexType name="AttachVpnGatewayResponseType">
|
2480
|
+
<xs:sequence>
|
2481
|
+
<xs:element name="requestId" type="xs:string" />
|
2482
|
+
<xs:element name="attachment" type="tns:AttachmentType" />
|
2483
|
+
</xs:sequence>
|
2484
|
+
</xs:complexType>
|
2485
|
+
<xs:complexType name="DetachVpnGatewayType">
|
2486
|
+
<xs:sequence>
|
2487
|
+
<xs:element name="vpnGatewayId" type="xs:string" />
|
2488
|
+
<xs:element name="vpcId" type="xs:string" />
|
2489
|
+
</xs:sequence>
|
2490
|
+
</xs:complexType>
|
2491
|
+
<xs:complexType name="DetachVpnGatewayResponseType">
|
2492
|
+
<xs:sequence>
|
2493
|
+
<xs:element name="requestId" type="xs:string" />
|
2494
|
+
<xs:element name="return" type="xs:boolean" />
|
2495
|
+
</xs:sequence>
|
2496
|
+
</xs:complexType>
|
2497
|
+
<xs:complexType name="CreateVpcType">
|
2498
|
+
<xs:sequence>
|
2499
|
+
<xs:element name="cidrBlock" type="xs:string" />
|
2500
|
+
</xs:sequence>
|
2501
|
+
</xs:complexType>
|
2502
|
+
<xs:complexType name="CreateVpcResponseType">
|
2503
|
+
<xs:sequence>
|
2504
|
+
<xs:element name="requestId" type="xs:string" />
|
2505
|
+
<xs:element name="vpc" type="tns:VpcType" />
|
2506
|
+
</xs:sequence>
|
2507
|
+
</xs:complexType>
|
2508
|
+
<xs:complexType name="DescribeVpcsType">
|
2509
|
+
<xs:sequence>
|
2510
|
+
<xs:element name="vpcSet" type="tns:VpcIdSetType" minOccurs="0" />
|
2511
|
+
<xs:element name="filterSet" type="tns:FilterSetType" minOccurs="0" />
|
2512
|
+
</xs:sequence>
|
2513
|
+
</xs:complexType>
|
2514
|
+
<xs:complexType name="DescribeVpcsResponseType">
|
2515
|
+
<xs:sequence>
|
2516
|
+
<xs:element name="requestId" type="xs:string" />
|
2517
|
+
<xs:element name="vpcSet" type="tns:VpcSetType" />
|
2518
|
+
</xs:sequence>
|
2519
|
+
</xs:complexType>
|
2520
|
+
<xs:complexType name="DeleteVpcType">
|
2521
|
+
<xs:sequence>
|
2522
|
+
<xs:element name="vpcId" type="xs:string" />
|
2523
|
+
</xs:sequence>
|
2524
|
+
</xs:complexType>
|
2525
|
+
<xs:complexType name="DeleteVpcResponseType">
|
2526
|
+
<xs:sequence>
|
2527
|
+
<xs:element name="requestId" type="xs:string" />
|
2528
|
+
<xs:element name="return" type="xs:boolean" />
|
2529
|
+
</xs:sequence>
|
2530
|
+
</xs:complexType>
|
2531
|
+
<xs:complexType name="CreateSubnetType">
|
2532
|
+
<xs:sequence>
|
2533
|
+
<xs:element name="vpcId" type="xs:string" />
|
2534
|
+
<xs:element name="cidrBlock" type="xs:string" />
|
2535
|
+
<xs:element name="availabilityZone" type="xs:string" minOccurs="0" />
|
2536
|
+
</xs:sequence>
|
2537
|
+
</xs:complexType>
|
2538
|
+
<xs:complexType name="CreateSubnetResponseType">
|
2539
|
+
<xs:sequence>
|
2540
|
+
<xs:element name="requestId" type="xs:string" />
|
2541
|
+
<xs:element name="subnet" type="tns:SubnetType" />
|
2542
|
+
</xs:sequence>
|
2543
|
+
</xs:complexType>
|
2544
|
+
<xs:complexType name="DescribeSubnetsType">
|
2545
|
+
<xs:sequence>
|
2546
|
+
<xs:element name="subnetSet" type="tns:SubnetIdSetType" minOccurs="0" />
|
2547
|
+
<xs:element name="filterSet" type="tns:FilterSetType" minOccurs="0" />
|
2548
|
+
</xs:sequence>
|
2549
|
+
</xs:complexType>
|
2550
|
+
<xs:complexType name="DescribeSubnetsResponseType">
|
2551
|
+
<xs:sequence>
|
2552
|
+
<xs:element name="requestId" type="xs:string" />
|
2553
|
+
<xs:element name="subnetSet" type="tns:SubnetSetType" />
|
2554
|
+
</xs:sequence>
|
2555
|
+
</xs:complexType>
|
2556
|
+
<xs:complexType name="DeleteSubnetType">
|
2557
|
+
<xs:sequence>
|
2558
|
+
<xs:element name="subnetId" type="xs:string" />
|
2559
|
+
</xs:sequence>
|
2560
|
+
</xs:complexType>
|
2561
|
+
<xs:complexType name="DeleteSubnetResponseType">
|
2562
|
+
<xs:sequence>
|
2563
|
+
<xs:element name="requestId" type="xs:string" />
|
2564
|
+
<xs:element name="return" type="xs:boolean" />
|
2565
|
+
</xs:sequence>
|
2566
|
+
</xs:complexType>
|
2567
|
+
<xs:complexType name="DeleteDhcpOptionsType">
|
2568
|
+
<xs:sequence>
|
2569
|
+
<xs:element name="dhcpOptionsId" type="xs:string" />
|
2570
|
+
</xs:sequence>
|
2571
|
+
</xs:complexType>
|
2572
|
+
<xs:complexType name="DeleteDhcpOptionsResponseType">
|
2573
|
+
<xs:sequence>
|
2574
|
+
<xs:element name="requestId" type="xs:string" />
|
2575
|
+
<xs:element name="return" type="xs:boolean" />
|
2576
|
+
</xs:sequence>
|
2577
|
+
</xs:complexType>
|
2578
|
+
<xs:complexType name="DescribeDhcpOptionsType">
|
2579
|
+
<xs:sequence>
|
2580
|
+
<xs:element name="dhcpOptionsSet" type="tns:DhcpOptionsIdSetType" minOccurs="0" />
|
2581
|
+
</xs:sequence>
|
2582
|
+
</xs:complexType>
|
2583
|
+
<xs:complexType name="DescribeDhcpOptionsResponseType">
|
2584
|
+
<xs:sequence>
|
2585
|
+
<xs:element name="requestId" type="xs:string" />
|
2586
|
+
<xs:element name="dhcpOptionsSet" type="tns:DhcpOptionsSetType" />
|
2587
|
+
</xs:sequence>
|
2588
|
+
</xs:complexType>
|
2589
|
+
<xs:complexType name="CreateDhcpOptionsType">
|
2590
|
+
<xs:sequence>
|
2591
|
+
<xs:element name="dhcpConfigurationSet" type="tns:DhcpConfigurationItemSetType" />
|
2592
|
+
</xs:sequence>
|
2593
|
+
</xs:complexType>
|
2594
|
+
<xs:complexType name="CreateDhcpOptionsResponseType">
|
2595
|
+
<xs:sequence>
|
2596
|
+
<xs:element name="requestId" type="xs:string" />
|
2597
|
+
<xs:element name="dhcpOptions" type="tns:DhcpOptionsType" />
|
2598
|
+
</xs:sequence>
|
2599
|
+
</xs:complexType>
|
2600
|
+
<xs:complexType name="AssociateDhcpOptionsType">
|
2601
|
+
<xs:sequence>
|
2602
|
+
<xs:element name="dhcpOptionsId" type="xs:string" />
|
2603
|
+
<xs:element name="vpcId" type="xs:string" />
|
2604
|
+
</xs:sequence>
|
2605
|
+
</xs:complexType>
|
2606
|
+
<xs:complexType name="AssociateDhcpOptionsResponseType">
|
2607
|
+
<xs:sequence>
|
2608
|
+
<xs:element name="requestId" type="xs:string" />
|
2609
|
+
<xs:element name="return" type="xs:boolean" />
|
2610
|
+
</xs:sequence>
|
2611
|
+
</xs:complexType>
|
2612
|
+
|
2613
|
+
</xs:schema>
|
2614
|
+
</types>
|
2615
|
+
|
2616
|
+
<!-- message definitions -->
|
2617
|
+
|
2618
|
+
<message name="CreateImageRequestMsg">
|
2619
|
+
<part name="CreateImageRequestMsgReq" element="tns:CreateImage" />
|
2620
|
+
</message>
|
2621
|
+
|
2622
|
+
<message name="CreateImageResponseMsg">
|
2623
|
+
<part name="CreateImageResponseMsgResp" element="tns:CreateImageResponse" />
|
2624
|
+
</message>
|
2625
|
+
|
2626
|
+
<message name="RegisterImageRequestMsg">
|
2627
|
+
<part name="RegisterImageRequestMsgReq" element="tns:RegisterImage" />
|
2628
|
+
</message>
|
2629
|
+
|
2630
|
+
<message name="RegisterImageResponseMsg">
|
2631
|
+
<part name="RegisterImageResponseMsgResp" element="tns:RegisterImageResponse" />
|
2632
|
+
</message>
|
2633
|
+
|
2634
|
+
<message name="DeregisterImageRequestMsg">
|
2635
|
+
<part name="DeregisterImageRequestMsgReq" element="tns:DeregisterImage" />
|
2636
|
+
</message>
|
2637
|
+
|
2638
|
+
<message name="DeregisterImageResponseMsg">
|
2639
|
+
<part name="DeregisterImageResponseMsgResp" element="tns:DeregisterImageResponse" />
|
2640
|
+
</message>
|
2641
|
+
|
2642
|
+
<message name="RunInstancesRequestMsg">
|
2643
|
+
<part name="RunInstancesRequestMsgReq" element="tns:RunInstances" />
|
2644
|
+
</message>
|
2645
|
+
|
2646
|
+
<message name="RunInstancesResponseMsg">
|
2647
|
+
<part name="RunInstancesResponseMsgResp" element="tns:RunInstancesResponse" />
|
2648
|
+
</message>
|
2649
|
+
|
2650
|
+
<message name="CreateKeyPairRequestMsg">
|
2651
|
+
<part name="CreateKeyPairRequestMsgReq" element="tns:CreateKeyPair" />
|
2652
|
+
</message>
|
2653
|
+
|
2654
|
+
<message name="CreateKeyPairResponseMsg">
|
2655
|
+
<part name="CreateKeyPairResponseMsgResp" element="tns:CreateKeyPairResponse" />
|
2656
|
+
</message>
|
2657
|
+
|
2658
|
+
<message name="DescribeKeyPairsRequestMsg">
|
2659
|
+
<part name="DescribeKeyPairsRequestMsgReq" element="tns:DescribeKeyPairs" />
|
2660
|
+
</message>
|
2661
|
+
|
2662
|
+
<message name="DescribeKeyPairsResponseMsg">
|
2663
|
+
<part name="DescribeKeyPairsResponseMsgResp" element="tns:DescribeKeyPairsResponse" />
|
2664
|
+
</message>
|
2665
|
+
|
2666
|
+
<message name="DeleteKeyPairRequestMsg">
|
2667
|
+
<part name="DeleteKeyPairRequestMsgReq" element="tns:DeleteKeyPair" />
|
2668
|
+
</message>
|
2669
|
+
|
2670
|
+
<message name="DeleteKeyPairResponseMsg">
|
2671
|
+
<part name="DeleteKeyPairResponseMsgResp" element="tns:DeleteKeyPairResponse" />
|
2672
|
+
</message>
|
2673
|
+
|
2674
|
+
<message name="GetConsoleOutputRequestMsg">
|
2675
|
+
<part name="GetConsoleOutputRequestMsgReq" element="tns:GetConsoleOutput" />
|
2676
|
+
</message>
|
2677
|
+
|
2678
|
+
<message name="GetConsoleOutputResponseMsg">
|
2679
|
+
<part name="GetConsoleOutputResponseMsgResp" element="tns:GetConsoleOutputResponse" />
|
2680
|
+
</message>
|
2681
|
+
|
2682
|
+
<message name="GetPasswordDataRequestMsg">
|
2683
|
+
<part name="GetPasswordDataRequestMsgReq" element="tns:GetPasswordData" />
|
2684
|
+
</message>
|
2685
|
+
|
2686
|
+
<message name="GetPasswordDataResponseMsg">
|
2687
|
+
<part name="GetPasswordDataResponseMsgResp" element="tns:GetPasswordDataResponse" />
|
2688
|
+
</message>
|
2689
|
+
|
2690
|
+
<message name="TerminateInstancesRequestMsg">
|
2691
|
+
<part name="TerminateInstancesRequestMsgReq" element="tns:TerminateInstances" />
|
2692
|
+
</message>
|
2693
|
+
|
2694
|
+
<message name="TerminateInstancesResponseMsg">
|
2695
|
+
<part name="TerminateInstancesResponseMsgResp" element="tns:TerminateInstancesResponse" />
|
2696
|
+
</message>
|
2697
|
+
|
2698
|
+
|
2699
|
+
<message name="StopInstancesRequestMsg">
|
2700
|
+
<part name="StopInstancesRequestMsgReq" element="tns:StopInstances" />
|
2701
|
+
</message>
|
2702
|
+
|
2703
|
+
<message name="StopInstancesResponseMsg">
|
2704
|
+
<part name="StopInstancesResponseMsgResp" element="tns:StopInstancesResponse" />
|
2705
|
+
</message>
|
2706
|
+
|
2707
|
+
<message name="StartInstancesRequestMsg">
|
2708
|
+
<part name="StartInstancesRequestMsgReq" element="tns:StartInstances" />
|
2709
|
+
</message>
|
2710
|
+
|
2711
|
+
<message name="StartInstancesResponseMsg">
|
2712
|
+
<part name="StartInstancesResponseMsgResp" element="tns:StartInstancesResponse" />
|
2713
|
+
</message>
|
2714
|
+
|
2715
|
+
<message name="RebootInstancesRequestMsg">
|
2716
|
+
<part name="RebootInstancesRequestMsgReq" element="tns:RebootInstances" />
|
2717
|
+
</message>
|
2718
|
+
|
2719
|
+
<message name="RebootInstancesResponseMsg">
|
2720
|
+
<part name="RebootInstancesRequestMsgResp" element="tns:RebootInstancesResponse" />
|
2721
|
+
</message>
|
2722
|
+
|
2723
|
+
<message name="DescribeInstancesRequestMsg">
|
2724
|
+
<part name="DescribeInstancesRequestMsgReq" element="tns:DescribeInstances" />
|
2725
|
+
</message>
|
2726
|
+
|
2727
|
+
<message name="DescribeInstancesResponseMsg">
|
2728
|
+
<part name="DescribeInstancesRequestMsgResp" element="tns:DescribeInstancesResponse" />
|
2729
|
+
</message>
|
2730
|
+
|
2731
|
+
<message name="DescribeImagesRequestMsg">
|
2732
|
+
<part name="DescribeImagesRequestMsgReq" element="tns:DescribeImages" />
|
2733
|
+
</message>
|
2734
|
+
|
2735
|
+
<message name="DescribeImagesResponseMsg">
|
2736
|
+
<part name="DescribeImagesRequestMsgResp" element="tns:DescribeImagesResponse" />
|
2737
|
+
</message>
|
2738
|
+
|
2739
|
+
<message name="CreateSecurityGroupRequestMsg">
|
2740
|
+
<part name="CreateSecurityGroupRequestMsgReq" element="tns:CreateSecurityGroup" />
|
2741
|
+
</message>
|
2742
|
+
|
2743
|
+
<message name="CreateSecurityGroupResponseMsg">
|
2744
|
+
<part name="CreateSecurityGroupRequestMsgResp" element="tns:CreateSecurityGroupResponse" />
|
2745
|
+
</message>
|
2746
|
+
|
2747
|
+
<message name="DeleteSecurityGroupRequestMsg">
|
2748
|
+
<part name="DeleteSecurityGroupRequestMsgReq" element="tns:DeleteSecurityGroup" />
|
2749
|
+
</message>
|
2750
|
+
|
2751
|
+
<message name="DeleteSecurityGroupResponseMsg">
|
2752
|
+
<part name="DeleteSecurityGroupRequestMsgResp" element="tns:DeleteSecurityGroupResponse" />
|
2753
|
+
</message>
|
2754
|
+
|
2755
|
+
<message name="DescribeSecurityGroupsRequestMsg">
|
2756
|
+
<part name="DescribeSecurityGroupsRequestMsgReq" element="tns:DescribeSecurityGroups" />
|
2757
|
+
</message>
|
2758
|
+
|
2759
|
+
<message name="DescribeSecurityGroupsResponseMsg">
|
2760
|
+
<part name="DescribeSecurityGroupsRequestMsgResp" element="tns:DescribeSecurityGroupsResponse" />
|
2761
|
+
</message>
|
2762
|
+
|
2763
|
+
<message name="AuthorizeSecurityGroupIngressRequestMsg">
|
2764
|
+
<part name="AuthorizeSecurityGroupIngressRequestMsgReq" element="tns:AuthorizeSecurityGroupIngress" />
|
2765
|
+
</message>
|
2766
|
+
|
2767
|
+
<message name="AuthorizeSecurityGroupIngressResponseMsg">
|
2768
|
+
<part name="AuthorizeSecurityGroupIngressRequestMsgResp" element="tns:AuthorizeSecurityGroupIngressResponse" />
|
2769
|
+
</message>
|
2770
|
+
|
2771
|
+
<message name="RevokeSecurityGroupIngressRequestMsg">
|
2772
|
+
<part name="RevokeSecurityGroupIngressRequestMsgReq" element="tns:RevokeSecurityGroupIngress" />
|
2773
|
+
</message>
|
2774
|
+
|
2775
|
+
<message name="RevokeSecurityGroupIngressResponseMsg">
|
2776
|
+
<part name="RevokeSecurityGroupIngressRequestMsgResp" element="tns:RevokeSecurityGroupIngressResponse" />
|
2777
|
+
</message>
|
2778
|
+
|
2779
|
+
<message name="ModifyInstanceAttributeRequestMsg">
|
2780
|
+
<part name="ModifyInstanceAttributeRequestMsgReq" element="tns:ModifyInstanceAttribute" />
|
2781
|
+
</message>
|
2782
|
+
|
2783
|
+
<message name="ModifyInstanceAttributeResponseMsg">
|
2784
|
+
<part name="ModifyInstanceAttributeRequestMsgResp" element="tns:ModifyInstanceAttributeResponse" />
|
2785
|
+
</message>
|
2786
|
+
|
2787
|
+
<message name="ResetInstanceAttributeRequestMsg">
|
2788
|
+
<part name="ResetInstanceAttributeRequestMsgReq" element="tns:ResetInstanceAttribute" />
|
2789
|
+
</message>
|
2790
|
+
|
2791
|
+
<message name="ResetInstanceAttributeResponseMsg">
|
2792
|
+
<part name="ResetInstanceAttributeRequestMsgResp" element="tns:ResetInstanceAttributeResponse" />
|
2793
|
+
</message>
|
2794
|
+
|
2795
|
+
<message name="DescribeInstanceAttributeRequestMsg">
|
2796
|
+
<part name="DescribeInstanceAttributeRequestMsgReq" element="tns:DescribeInstanceAttribute" />
|
2797
|
+
</message>
|
2798
|
+
|
2799
|
+
<message name="DescribeInstanceAttributeResponseMsg">
|
2800
|
+
<part name="DescribeInstanceAttributeRequestMsgResp" element="tns:DescribeInstanceAttributeResponse"/>
|
2801
|
+
</message>
|
2802
|
+
|
2803
|
+
<message name="ModifyImageAttributeRequestMsg">
|
2804
|
+
<part name="ModifyImageAttributeRequestMsgReq" element="tns:ModifyImageAttribute" />
|
2805
|
+
</message>
|
2806
|
+
|
2807
|
+
<message name="ModifyImageAttributeResponseMsg">
|
2808
|
+
<part name="ModifyImageAttributeRequestMsgResp" element="tns:ModifyImageAttributeResponse" />
|
2809
|
+
</message>
|
2810
|
+
|
2811
|
+
<message name="ResetImageAttributeRequestMsg">
|
2812
|
+
<part name="ResetImageAttributeRequestMsgReq" element="tns:ResetImageAttribute" />
|
2813
|
+
</message>
|
2814
|
+
|
2815
|
+
<message name="ResetImageAttributeResponseMsg">
|
2816
|
+
<part name="ResetImageAttributeRequestMsgResp" element="tns:ResetImageAttributeResponse" />
|
2817
|
+
</message>
|
2818
|
+
|
2819
|
+
<message name="DescribeImageAttributeRequestMsg">
|
2820
|
+
<part name="DescribeImageAttributeRequestMsgReq" element="tns:DescribeImageAttribute" />
|
2821
|
+
</message>
|
2822
|
+
|
2823
|
+
<message name="DescribeImageAttributeResponseMsg">
|
2824
|
+
<part name="DescribeImageAttributeRequestMsgResp" element="tns:DescribeImageAttributeResponse"/>
|
2825
|
+
</message>
|
2826
|
+
|
2827
|
+
<message name="ConfirmProductInstanceRequestMsg">
|
2828
|
+
<part name="ConfirmProductInstanceRequestMsgReq" element="tns:ConfirmProductInstance"/>
|
2829
|
+
</message>
|
2830
|
+
|
2831
|
+
<message name="ConfirmProductInstanceResponseMsg">
|
2832
|
+
<part name="ConfirmProductInstanceRequestMsgResp" element="tns:ConfirmProductInstanceResponse"/>
|
2833
|
+
</message>
|
2834
|
+
|
2835
|
+
<message name="DescribeAvailabilityZonesRequestMsg">
|
2836
|
+
<part name="DescribeAvailabilityZonesRequestMsgReq" element="tns:DescribeAvailabilityZones"/>
|
2837
|
+
</message>
|
2838
|
+
|
2839
|
+
<message name="DescribeAvailabilityZonesResponseMsg">
|
2840
|
+
<part name="DescribeAvailabilityZonesRequestMsgResp" element="tns:DescribeAvailabilityZonesResponse"/>
|
2841
|
+
</message>
|
2842
|
+
|
2843
|
+
<message name="DescribeRegionsRequestMsg">
|
2844
|
+
<part name="DescribeRegionsRequestMsgReq" element="tns:DescribeRegions"/>
|
2845
|
+
</message>
|
2846
|
+
|
2847
|
+
<message name="DescribeRegionsResponseMsg">
|
2848
|
+
<part name="DescribeRegionsRequestMsgResp" element="tns:DescribeRegionsResponse"/>
|
2849
|
+
</message>
|
2850
|
+
|
2851
|
+
<message name='AllocateAddressRequestMsg'>
|
2852
|
+
<part name='AllocateAddressRequestMsgReq' element='tns:AllocateAddress'/>
|
2853
|
+
</message>
|
2854
|
+
|
2855
|
+
<message name='AllocateAddressResponseMsg'>
|
2856
|
+
<part name='AllocateAddressResponseMsgResp' element='tns:AllocateAddressResponse'/>
|
2857
|
+
</message>
|
2858
|
+
|
2859
|
+
<message name='ReleaseAddressRequestMsg'>
|
2860
|
+
<part name='ReleaseAddressRequestMsgReq' element='tns:ReleaseAddress'/>
|
2861
|
+
</message>
|
2862
|
+
|
2863
|
+
<message name='ReleaseAddressResponseMsg'>
|
2864
|
+
<part name='ReleaseAddressResponseMsgResp' element='tns:ReleaseAddressResponse'/>
|
2865
|
+
</message>
|
2866
|
+
|
2867
|
+
<message name='DescribeAddressesRequestMsg'>
|
2868
|
+
<part name='DescribeAddressesRequestMsgReq' element='tns:DescribeAddresses'/>
|
2869
|
+
</message>
|
2870
|
+
|
2871
|
+
<message name='DescribeAddressesResponseMsg'>
|
2872
|
+
<part name='DescribeAddressesResponseMsgResp' element='tns:DescribeAddressesResponse'/>
|
2873
|
+
</message>
|
2874
|
+
|
2875
|
+
<message name='AssociateAddressRequestMsg'>
|
2876
|
+
<part name='AssociateAddressRequestMsgReq' element='tns:AssociateAddress'/>
|
2877
|
+
</message>
|
2878
|
+
|
2879
|
+
<message name='AssociateAddressResponseMsg'>
|
2880
|
+
<part name='AssociateAddressResponseMsgResp' element='tns:AssociateAddressResponse'/>
|
2881
|
+
</message>
|
2882
|
+
|
2883
|
+
<message name='DisassociateAddressRequestMsg'>
|
2884
|
+
<part name='DisassociateAddressRequestMsgReq' element='tns:DisassociateAddress'/>
|
2885
|
+
</message>
|
2886
|
+
|
2887
|
+
<message name='DisassociateAddressResponseMsg'>
|
2888
|
+
<part name='DisassociateAddressResponseMsgResp' element='tns:DisassociateAddressResponse'/>
|
2889
|
+
</message>
|
2890
|
+
|
2891
|
+
<message name="CreateVolumeRequestMsg">
|
2892
|
+
<part name="CreateVolumeRequestMsgReq" element="tns:CreateVolume"/>
|
2893
|
+
</message>
|
2894
|
+
|
2895
|
+
<message name="CreateVolumeResponseMsg">
|
2896
|
+
<part name="CreateVolumeRequestMsgResp" element="tns:CreateVolumeResponse"/>
|
2897
|
+
</message>
|
2898
|
+
|
2899
|
+
<message name="DeleteVolumeRequestMsg">
|
2900
|
+
<part name="DeleteVolumeRequestMsgReq" element="tns:DeleteVolume"/>
|
2901
|
+
</message>
|
2902
|
+
|
2903
|
+
<message name="DeleteVolumeResponseMsg">
|
2904
|
+
<part name="DeleteVolumeRequestMsgResp" element="tns:DeleteVolumeResponse"/>
|
2905
|
+
</message>
|
2906
|
+
|
2907
|
+
<message name="DescribeVolumesRequestMsg">
|
2908
|
+
<part name="DescribeVolumesRequestMsgReq" element="tns:DescribeVolumes"/>
|
2909
|
+
</message>
|
2910
|
+
|
2911
|
+
<message name="DescribeVolumesResponseMsg">
|
2912
|
+
<part name="DescribeVolumesRequestMsgResp" element="tns:DescribeVolumesResponse"/>
|
2913
|
+
</message>
|
2914
|
+
|
2915
|
+
<message name="AttachVolumeRequestMsg">
|
2916
|
+
<part name="AttachVolumeRequestMsgReq" element="tns:AttachVolume"/>
|
2917
|
+
</message>
|
2918
|
+
|
2919
|
+
<message name="AttachVolumeResponseMsg">
|
2920
|
+
<part name="AttachVolumeResponseMsgResp" element="tns:AttachVolumeResponse"/>
|
2921
|
+
</message>
|
2922
|
+
|
2923
|
+
<message name="DetachVolumeRequestMsg">
|
2924
|
+
<part name="DetachVolumeRequestMsgReq" element="tns:DetachVolume"/>
|
2925
|
+
</message>
|
2926
|
+
|
2927
|
+
<message name="DetachVolumeResponseMsg">
|
2928
|
+
<part name="DetachVolumeResponseMsgResp" element="tns:DetachVolumeResponse"/>
|
2929
|
+
</message>
|
2930
|
+
|
2931
|
+
<message name="CreateSnapshotRequestMsg">
|
2932
|
+
<part name="CreateSnapshotRequestMsgReq" element="tns:CreateSnapshot"/>
|
2933
|
+
</message>
|
2934
|
+
|
2935
|
+
<message name="CreateSnapshotResponseMsg">
|
2936
|
+
<part name="CreateSnapshotRequestMsgResp" element="tns:CreateSnapshotResponse"/>
|
2937
|
+
</message>
|
2938
|
+
|
2939
|
+
<message name="DeleteSnapshotRequestMsg">
|
2940
|
+
<part name="DeleteSnapshotRequestMsgReq" element="tns:DeleteSnapshot"/>
|
2941
|
+
</message>
|
2942
|
+
|
2943
|
+
<message name="DeleteSnapshotResponseMsg">
|
2944
|
+
<part name="DeleteSnapshotRequestMsgResp" element="tns:DeleteSnapshotResponse"/>
|
2945
|
+
</message>
|
2946
|
+
|
2947
|
+
<message name="DescribeSnapshotsRequestMsg">
|
2948
|
+
<part name="DescribeSnapshotsRequestMsgReq" element="tns:DescribeSnapshots"/>
|
2949
|
+
</message>
|
2950
|
+
|
2951
|
+
<message name="DescribeSnapshotsResponseMsg">
|
2952
|
+
<part name="DescribeSnapshotsRequestMsgResp" element="tns:DescribeSnapshotsResponse"/>
|
2953
|
+
</message>
|
2954
|
+
|
2955
|
+
<message name="ModifySnapshotAttributeRequestMsg">
|
2956
|
+
<part name="ModifySnapshotAttributeRequestMsgReq" element="tns:ModifySnapshotAttribute"/>
|
2957
|
+
</message>
|
2958
|
+
|
2959
|
+
<message name="ModifySnapshotAttributeResponseMsg">
|
2960
|
+
<part name="ModifySnapshotAttributeResponseMsgResp" element="tns:ModifySnapshotAttributeResponse"/>
|
2961
|
+
</message>
|
2962
|
+
|
2963
|
+
<message name="ResetSnapshotAttributeRequestMsg">
|
2964
|
+
<part name="ResetSnapshotAttributeRequestMsgReq" element="tns:ResetSnapshotAttribute"/>
|
2965
|
+
</message>
|
2966
|
+
|
2967
|
+
<message name="ResetSnapshotAttributeResponseMsg">
|
2968
|
+
<part name="ResetSnapshotAttributeResponseMsgResp" element="tns:ResetSnapshotAttributeResponse"/>
|
2969
|
+
</message>
|
2970
|
+
|
2971
|
+
<message name="DescribeSnapshotAttributeRequestMsg">
|
2972
|
+
<part name="DescribeSnapshotAttributeRequestMsgReq" element="tns:DescribeSnapshotAttribute"/>
|
2973
|
+
</message>
|
2974
|
+
|
2975
|
+
<message name="DescribeSnapshotAttributeResponseMsg">
|
2976
|
+
<part name="DescribeSnapshotAttributeResponseMsgResp" element="tns:DescribeSnapshotAttributeResponse"/>
|
2977
|
+
</message>
|
2978
|
+
|
2979
|
+
<message name="BundleInstanceRequestMsg">
|
2980
|
+
<part name="BundleInstanceRequestMsgReq" element="tns:BundleInstance" />
|
2981
|
+
</message>
|
2982
|
+
|
2983
|
+
<message name="BundleInstanceResponseMsg">
|
2984
|
+
<part name="BundleInstanceResponseMsgResp" element="tns:BundleInstanceResponse" />
|
2985
|
+
</message>
|
2986
|
+
|
2987
|
+
<message name="DescribeBundleTasksRequestMsg">
|
2988
|
+
<part name="DescribeBundleTasksRequestMsgReq" element="tns:DescribeBundleTasks" />
|
2989
|
+
</message>
|
2990
|
+
|
2991
|
+
<message name="DescribeBundleTasksResponseMsg">
|
2992
|
+
<part name="DescribeBundleTasksResponseMsgResp" element="tns:DescribeBundleTasksResponse" />
|
2993
|
+
</message>
|
2994
|
+
|
2995
|
+
<message name="CancelBundleTaskRequestMsg">
|
2996
|
+
<part name="CancelBundleTaskRequestMsgReq" element="tns:CancelBundleTask" />
|
2997
|
+
</message>
|
2998
|
+
|
2999
|
+
<message name="CancelBundleTaskResponseMsg">
|
3000
|
+
<part name="CancelBundleTaskResponseMsgResp" element="tns:CancelBundleTaskResponse" />
|
3001
|
+
</message>
|
3002
|
+
|
3003
|
+
<message name="DescribeReservedInstancesOfferingsRequestMsg">
|
3004
|
+
<part name="DescribeReservedInstancesOfferingsRequestMsgReq" element="tns:DescribeReservedInstancesOfferings" />
|
3005
|
+
</message>
|
3006
|
+
|
3007
|
+
<message name="DescribeReservedInstancesOfferingsResponseMsg">
|
3008
|
+
<part name="DescribeReservedInstancesOfferingsResponseMsgResp" element="tns:DescribeReservedInstancesOfferingsResponse" />
|
3009
|
+
</message>
|
3010
|
+
|
3011
|
+
<message name="PurchaseReservedInstancesOfferingRequestMsg">
|
3012
|
+
<part name="PurchaseReservedInstancesOfferingRequestMsgReq" element="tns:PurchaseReservedInstancesOffering" />
|
3013
|
+
</message>
|
3014
|
+
|
3015
|
+
<message name="PurchaseReservedInstancesOfferingResponseMsg">
|
3016
|
+
<part name="PurchaseReservedInstancesOfferingResponseMsgResp" element="tns:PurchaseReservedInstancesOfferingResponse" />
|
3017
|
+
</message>
|
3018
|
+
|
3019
|
+
<message name="DescribeReservedInstancesRequestMsg">
|
3020
|
+
<part name="DescribeReservedInstancesRequestMsgReq" element="tns:DescribeReservedInstances" />
|
3021
|
+
</message>
|
3022
|
+
|
3023
|
+
<message name="DescribeReservedInstancesResponseMsg">
|
3024
|
+
<part name="DescribeReservedInstancesResponseMsgResp" element="tns:DescribeReservedInstancesResponse" />
|
3025
|
+
</message>
|
3026
|
+
|
3027
|
+
<message name="MonitorInstancesRequestMsg">
|
3028
|
+
<part name="MonitorInstancesRequestMsgReq" element="tns:MonitorInstances" />
|
3029
|
+
</message>
|
3030
|
+
|
3031
|
+
<message name="MonitorInstancesResponseMsg">
|
3032
|
+
<part name="MonitorInstancesResponseMsgResp" element="tns:MonitorInstancesResponse" />
|
3033
|
+
</message>
|
3034
|
+
|
3035
|
+
<message name="UnmonitorInstancesRequestMsg">
|
3036
|
+
<part name="UnmonitorInstancesRequestMsgReq" element="tns:UnmonitorInstances" />
|
3037
|
+
</message>
|
3038
|
+
|
3039
|
+
<message name="UnmonitorInstancesResponseMsg">
|
3040
|
+
<part name="UnmonitorInstancesResponseMsgResp" element="tns:UnmonitorInstancesResponse" />
|
3041
|
+
</message>
|
3042
|
+
|
3043
|
+
<message name="CreateCustomerGatewayRequestMsg">
|
3044
|
+
<part name="CreateCustomerGatewayRequestMsgReq" element="tns:CreateCustomerGateway" />
|
3045
|
+
</message>
|
3046
|
+
|
3047
|
+
<message name="CreateCustomerGatewayResponseMsg">
|
3048
|
+
<part name="CreateCustomerGatewayResponseMsgResp" element="tns:CreateCustomerGatewayResponse" />
|
3049
|
+
</message>
|
3050
|
+
|
3051
|
+
<message name="DeleteCustomerGatewayRequestMsg">
|
3052
|
+
<part name="DeleteCustomerGatewayRequestMsgReq" element="tns:DeleteCustomerGateway" />
|
3053
|
+
</message>
|
3054
|
+
|
3055
|
+
<message name="DeleteCustomerGatewayResponseMsg">
|
3056
|
+
<part name="DeleteCustomerGatewayResponseMsgResp" element="tns:DeleteCustomerGatewayResponse" />
|
3057
|
+
</message>
|
3058
|
+
|
3059
|
+
<message name="DescribeCustomerGatewaysRequestMsg">
|
3060
|
+
<part name="DescribeCustomerGatewaysRequestMsgReq" element="tns:DescribeCustomerGateways" />
|
3061
|
+
</message>
|
3062
|
+
|
3063
|
+
<message name="DescribeCustomerGatewaysResponseMsg">
|
3064
|
+
<part name="DescribeCustomerGatewaysResponseMsgResp" element="tns:DescribeCustomerGatewaysResponse" />
|
3065
|
+
</message>
|
3066
|
+
|
3067
|
+
<message name="CreateVpnGatewayRequestMsg">
|
3068
|
+
<part name="CreateVpnGatewayRequestMsgReq" element="tns:CreateVpnGateway" />
|
3069
|
+
</message>
|
3070
|
+
|
3071
|
+
<message name="CreateVpnGatewayResponseMsg">
|
3072
|
+
<part name="CreateVpnGatewayResponseMsgResp" element="tns:CreateVpnGatewayResponse" />
|
3073
|
+
</message>
|
3074
|
+
|
3075
|
+
<message name="DeleteVpnGatewayRequestMsg">
|
3076
|
+
<part name="DeleteVpnGatewayRequestMsgReq" element="tns:DeleteVpnGateway" />
|
3077
|
+
</message>
|
3078
|
+
|
3079
|
+
<message name="DeleteVpnGatewayResponseMsg">
|
3080
|
+
<part name="DeleteVpnGatewayResponseMsgResp" element="tns:DeleteVpnGatewayResponse" />
|
3081
|
+
</message>
|
3082
|
+
|
3083
|
+
<message name="DescribeVpnGatewaysRequestMsg">
|
3084
|
+
<part name="DescribeVpnGatewaysRequestMsgReq" element="tns:DescribeVpnGateways" />
|
3085
|
+
</message>
|
3086
|
+
|
3087
|
+
<message name="DescribeVpnGatewaysResponseMsg">
|
3088
|
+
<part name="DescribeVpnGatewaysResponseMsgResp" element="tns:DescribeVpnGatewaysResponse" />
|
3089
|
+
</message>
|
3090
|
+
|
3091
|
+
<message name="CreateVpnConnectionRequestMsg">
|
3092
|
+
<part name="CreateVpnConnectionRequestMsgReq" element="tns:CreateVpnConnection" />
|
3093
|
+
</message>
|
3094
|
+
|
3095
|
+
<message name="CreateVpnConnectionResponseMsg">
|
3096
|
+
<part name="CreateVpnConnectionResponseMsgResp" element="tns:CreateVpnConnectionResponse" />
|
3097
|
+
</message>
|
3098
|
+
|
3099
|
+
<message name="DeleteVpnConnectionRequestMsg">
|
3100
|
+
<part name="DeleteVpnConnectionRequestMsgReq" element="tns:DeleteVpnConnection" />
|
3101
|
+
</message>
|
3102
|
+
|
3103
|
+
<message name="DeleteVpnConnectionResponseMsg">
|
3104
|
+
<part name="DeleteVpnConnectionResponseMsgResp" element="tns:DeleteVpnConnectionResponse" />
|
3105
|
+
</message>
|
3106
|
+
|
3107
|
+
<message name="DescribeVpnConnectionsRequestMsg">
|
3108
|
+
<part name="DescribeVpnConnectionsRequestMsgReq" element="tns:DescribeVpnConnections" />
|
3109
|
+
</message>
|
3110
|
+
|
3111
|
+
<message name="DescribeVpnConnectionsResponseMsg">
|
3112
|
+
<part name="DescribeVpnConnectionsResponseMsgResp" element="tns:DescribeVpnConnectionsResponse" />
|
3113
|
+
</message>
|
3114
|
+
|
3115
|
+
<message name="AttachVpnGatewayRequestMsg">
|
3116
|
+
<part name="AttachVpnGatewayRequestMsgReq" element="tns:AttachVpnGateway" />
|
3117
|
+
</message>
|
3118
|
+
|
3119
|
+
<message name="AttachVpnGatewayResponseMsg">
|
3120
|
+
<part name="AttachVpnGatewayResponseMsgResp" element="tns:AttachVpnGatewayResponse" />
|
3121
|
+
</message>
|
3122
|
+
|
3123
|
+
<message name="DetachVpnGatewayRequestMsg">
|
3124
|
+
<part name="DetachVpnGatewayRequestMsgReq" element="tns:DetachVpnGateway" />
|
3125
|
+
</message>
|
3126
|
+
|
3127
|
+
<message name="DetachVpnGatewayResponseMsg">
|
3128
|
+
<part name="DetachVpnGatewayResponseMsgResp" element="tns:DetachVpnGatewayResponse" />
|
3129
|
+
</message>
|
3130
|
+
|
3131
|
+
<message name="CreateVpcRequestMsg">
|
3132
|
+
<part name="CreateVpcRequestMsgReq" element="tns:CreateVpc" />
|
3133
|
+
</message>
|
3134
|
+
|
3135
|
+
<message name="CreateVpcResponseMsg">
|
3136
|
+
<part name="CreateVpcResponseMsgResp" element="tns:CreateVpcResponse" />
|
3137
|
+
</message>
|
3138
|
+
|
3139
|
+
<message name="DeleteVpcRequestMsg">
|
3140
|
+
<part name="DeleteVpcRequestMsgReq" element="tns:DeleteVpc" />
|
3141
|
+
</message>
|
3142
|
+
|
3143
|
+
<message name="DeleteVpcResponseMsg">
|
3144
|
+
<part name="DeleteVpcResponseMsgResp" element="tns:DeleteVpcResponse" />
|
3145
|
+
</message>
|
3146
|
+
|
3147
|
+
<message name="DescribeVpcsRequestMsg">
|
3148
|
+
<part name="DescribeVpcsRequestMsgReq" element="tns:DescribeVpcs" />
|
3149
|
+
</message>
|
3150
|
+
|
3151
|
+
<message name="DescribeVpcsResponseMsg">
|
3152
|
+
<part name="DescribeVpcsResponseMsgResp" element="tns:DescribeVpcsResponse" />
|
3153
|
+
</message>
|
3154
|
+
|
3155
|
+
<message name="CreateSubnetRequestMsg">
|
3156
|
+
<part name="CreateSubnetRequestMsgReq" element="tns:CreateSubnet" />
|
3157
|
+
</message>
|
3158
|
+
|
3159
|
+
<message name="CreateSubnetResponseMsg">
|
3160
|
+
<part name="CreateSubnetResponseMsgResp" element="tns:CreateSubnetResponse" />
|
3161
|
+
</message>
|
3162
|
+
|
3163
|
+
<message name="DeleteSubnetRequestMsg">
|
3164
|
+
<part name="DeleteSubnetRequestMsgReq" element="tns:DeleteSubnet" />
|
3165
|
+
</message>
|
3166
|
+
|
3167
|
+
<message name="DeleteSubnetResponseMsg">
|
3168
|
+
<part name="DeleteSubnetResponseMsgResp" element="tns:DeleteSubnetResponse" />
|
3169
|
+
</message>
|
3170
|
+
|
3171
|
+
<message name="DescribeSubnetsRequestMsg">
|
3172
|
+
<part name="DescribeSubnetsRequestMsgReq" element="tns:DescribeSubnets" />
|
3173
|
+
</message>
|
3174
|
+
|
3175
|
+
<message name="DescribeSubnetsResponseMsg">
|
3176
|
+
<part name="DescribeSubnetsResponseMsgResp" element="tns:DescribeSubnetsResponse" />
|
3177
|
+
</message>
|
3178
|
+
|
3179
|
+
<message name="CreateDhcpOptionsRequestMsg">
|
3180
|
+
<part name="CreateDhcpOptionsRequestMsgReq" element="tns:CreateDhcpOptions" />
|
3181
|
+
</message>
|
3182
|
+
|
3183
|
+
<message name="CreateDhcpOptionsResponseMsg">
|
3184
|
+
<part name="CreateDhcpOptionsResponseMsgResp" element="tns:CreateDhcpOptionsResponse" />
|
3185
|
+
</message>
|
3186
|
+
|
3187
|
+
<message name="DescribeDhcpOptionsRequestMsg">
|
3188
|
+
<part name="DescribeDhcpOptionsRequestMsgReq" element="tns:DescribeDhcpOptions" />
|
3189
|
+
</message>
|
3190
|
+
|
3191
|
+
<message name="DescribeDhcpOptionsResponseMsg">
|
3192
|
+
<part name="DescribeDhcpOptionsResponseMsgResp" element="tns:DescribeDhcpOptionsResponse" />
|
3193
|
+
</message>
|
3194
|
+
|
3195
|
+
<message name="DeleteDhcpOptionsRequestMsg">
|
3196
|
+
<part name="DeleteDhcpOptionsRequestMsgReq" element="tns:DeleteDhcpOptions" />
|
3197
|
+
</message>
|
3198
|
+
|
3199
|
+
<message name="DeleteDhcpOptionsResponseMsg">
|
3200
|
+
<part name="DeleteDhcpOptionsResponseMsgResp" element="tns:DeleteDhcpOptionsResponse" />
|
3201
|
+
</message>
|
3202
|
+
|
3203
|
+
<message name="AssociateDhcpOptionsRequestMsg">
|
3204
|
+
<part name="AssociateDhcpOptionsRequestMsgReq" element="tns:AssociateDhcpOptions" />
|
3205
|
+
</message>
|
3206
|
+
|
3207
|
+
<message name="AssociateDhcpOptionsResponseMsg">
|
3208
|
+
<part name="AssociateDhcpOptionsResponseMsgResp" element="tns:AssociateDhcpOptionsResponse" />
|
3209
|
+
</message>
|
3210
|
+
|
3211
|
+
<portType name="AmazonEC2PortType">
|
3212
|
+
<operation name="CreateImage">
|
3213
|
+
<input message="tns:CreateImageRequestMsg" />
|
3214
|
+
<output message="tns:CreateImageResponseMsg" />
|
3215
|
+
</operation>
|
3216
|
+
<operation name="RegisterImage">
|
3217
|
+
<input message="tns:RegisterImageRequestMsg" />
|
3218
|
+
<output message="tns:RegisterImageResponseMsg" />
|
3219
|
+
</operation>
|
3220
|
+
<operation name="DeregisterImage">
|
3221
|
+
<input message="tns:DeregisterImageRequestMsg" />
|
3222
|
+
<output message="tns:DeregisterImageResponseMsg" />
|
3223
|
+
</operation>
|
3224
|
+
<operation name="RunInstances">
|
3225
|
+
<input message="tns:RunInstancesRequestMsg" />
|
3226
|
+
<output message="tns:RunInstancesResponseMsg" />
|
3227
|
+
</operation>
|
3228
|
+
<operation name="CreateKeyPair">
|
3229
|
+
<input message="tns:CreateKeyPairRequestMsg" />
|
3230
|
+
<output message="tns:CreateKeyPairResponseMsg" />
|
3231
|
+
</operation>
|
3232
|
+
<operation name="DescribeKeyPairs">
|
3233
|
+
<input message="tns:DescribeKeyPairsRequestMsg" />
|
3234
|
+
<output message="tns:DescribeKeyPairsResponseMsg" />
|
3235
|
+
</operation>
|
3236
|
+
<operation name="DeleteKeyPair">
|
3237
|
+
<input message="tns:DeleteKeyPairRequestMsg" />
|
3238
|
+
<output message="tns:DeleteKeyPairResponseMsg" />
|
3239
|
+
</operation>
|
3240
|
+
<operation name="GetConsoleOutput">
|
3241
|
+
<input message="tns:GetConsoleOutputRequestMsg" />
|
3242
|
+
<output message="tns:GetConsoleOutputResponseMsg" />
|
3243
|
+
</operation>
|
3244
|
+
<operation name="GetPasswordData">
|
3245
|
+
<input message="tns:GetPasswordDataRequestMsg" />
|
3246
|
+
<output message="tns:GetPasswordDataResponseMsg" />
|
3247
|
+
</operation>
|
3248
|
+
<operation name="TerminateInstances">
|
3249
|
+
<input message="tns:TerminateInstancesRequestMsg" />
|
3250
|
+
<output message="tns:TerminateInstancesResponseMsg" />
|
3251
|
+
</operation>
|
3252
|
+
<operation name="StopInstances">
|
3253
|
+
<input message="tns:StopInstancesRequestMsg" />
|
3254
|
+
<output message="tns:StopInstancesResponseMsg" />
|
3255
|
+
</operation>
|
3256
|
+
<operation name="StartInstances">
|
3257
|
+
<input message="tns:StartInstancesRequestMsg" />
|
3258
|
+
<output message="tns:StartInstancesResponseMsg" />
|
3259
|
+
</operation>
|
3260
|
+
<operation name="RebootInstances">
|
3261
|
+
<input message="tns:RebootInstancesRequestMsg" />
|
3262
|
+
<output message="tns:RebootInstancesResponseMsg" />
|
3263
|
+
</operation>
|
3264
|
+
<operation name="DescribeInstances">
|
3265
|
+
<input message="tns:DescribeInstancesRequestMsg" />
|
3266
|
+
<output message="tns:DescribeInstancesResponseMsg" />
|
3267
|
+
</operation>
|
3268
|
+
<operation name="DescribeImages">
|
3269
|
+
<input message="tns:DescribeImagesRequestMsg" />
|
3270
|
+
<output message="tns:DescribeImagesResponseMsg" />
|
3271
|
+
</operation>
|
3272
|
+
<operation name="CreateSecurityGroup">
|
3273
|
+
<input message="tns:CreateSecurityGroupRequestMsg" />
|
3274
|
+
<output message="tns:CreateSecurityGroupResponseMsg" />
|
3275
|
+
</operation>
|
3276
|
+
<operation name="DeleteSecurityGroup">
|
3277
|
+
<input message="tns:DeleteSecurityGroupRequestMsg" />
|
3278
|
+
<output message="tns:DeleteSecurityGroupResponseMsg" />
|
3279
|
+
</operation>
|
3280
|
+
<operation name="DescribeSecurityGroups">
|
3281
|
+
<input message="tns:DescribeSecurityGroupsRequestMsg" />
|
3282
|
+
<output message="tns:DescribeSecurityGroupsResponseMsg" />
|
3283
|
+
</operation>
|
3284
|
+
<operation name="AuthorizeSecurityGroupIngress">
|
3285
|
+
<input message="tns:AuthorizeSecurityGroupIngressRequestMsg" />
|
3286
|
+
<output message="tns:AuthorizeSecurityGroupIngressResponseMsg" />
|
3287
|
+
</operation>
|
3288
|
+
<operation name="RevokeSecurityGroupIngress">
|
3289
|
+
<input message="tns:RevokeSecurityGroupIngressRequestMsg" />
|
3290
|
+
<output message="tns:RevokeSecurityGroupIngressResponseMsg" />
|
3291
|
+
</operation>
|
3292
|
+
<operation name="ModifyInstanceAttribute">
|
3293
|
+
<input message="tns:ModifyInstanceAttributeRequestMsg"/>
|
3294
|
+
<output message="tns:ModifyInstanceAttributeResponseMsg"/>
|
3295
|
+
</operation>
|
3296
|
+
<operation name="ResetInstanceAttribute">
|
3297
|
+
<input message="tns:ResetInstanceAttributeRequestMsg"/>
|
3298
|
+
<output message="tns:ResetInstanceAttributeResponseMsg"/>
|
3299
|
+
</operation>
|
3300
|
+
<operation name="DescribeInstanceAttribute">
|
3301
|
+
<input message="tns:DescribeInstanceAttributeRequestMsg"/>
|
3302
|
+
<output message="tns:DescribeInstanceAttributeResponseMsg"/>
|
3303
|
+
</operation>
|
3304
|
+
<operation name="ModifyImageAttribute">
|
3305
|
+
<input message="tns:ModifyImageAttributeRequestMsg"/>
|
3306
|
+
<output message="tns:ModifyImageAttributeResponseMsg"/>
|
3307
|
+
</operation>
|
3308
|
+
<operation name="ResetImageAttribute">
|
3309
|
+
<input message="tns:ResetImageAttributeRequestMsg"/>
|
3310
|
+
<output message="tns:ResetImageAttributeResponseMsg"/>
|
3311
|
+
</operation>
|
3312
|
+
<operation name="DescribeImageAttribute">
|
3313
|
+
<input message="tns:DescribeImageAttributeRequestMsg"/>
|
3314
|
+
<output message="tns:DescribeImageAttributeResponseMsg"/>
|
3315
|
+
</operation>
|
3316
|
+
<operation name="ConfirmProductInstance">
|
3317
|
+
<input message="tns:ConfirmProductInstanceRequestMsg"/>
|
3318
|
+
<output message="tns:ConfirmProductInstanceResponseMsg"/>
|
3319
|
+
</operation>
|
3320
|
+
<operation name="DescribeAvailabilityZones">
|
3321
|
+
<input message="tns:DescribeAvailabilityZonesRequestMsg"/>
|
3322
|
+
<output message="tns:DescribeAvailabilityZonesResponseMsg"/>
|
3323
|
+
</operation>
|
3324
|
+
<operation name='AllocateAddress'>
|
3325
|
+
<input message='tns:AllocateAddressRequestMsg'/>
|
3326
|
+
<output message='tns:AllocateAddressResponseMsg'/>
|
3327
|
+
</operation>
|
3328
|
+
<operation name='ReleaseAddress'>
|
3329
|
+
<input message='tns:ReleaseAddressRequestMsg'/>
|
3330
|
+
<output message='tns:ReleaseAddressResponseMsg'/>
|
3331
|
+
</operation>
|
3332
|
+
<operation name='DescribeAddresses'>
|
3333
|
+
<input message='tns:DescribeAddressesRequestMsg'/>
|
3334
|
+
<output message='tns:DescribeAddressesResponseMsg'/>
|
3335
|
+
</operation>
|
3336
|
+
<operation name='AssociateAddress'>
|
3337
|
+
<input message='tns:AssociateAddressRequestMsg'/>
|
3338
|
+
<output message='tns:AssociateAddressResponseMsg'/>
|
3339
|
+
</operation>
|
3340
|
+
<operation name='DisassociateAddress'>
|
3341
|
+
<input message='tns:DisassociateAddressRequestMsg'/>
|
3342
|
+
<output message='tns:DisassociateAddressResponseMsg'/>
|
3343
|
+
</operation>
|
3344
|
+
<operation name="CreateVolume">
|
3345
|
+
<input message="tns:CreateVolumeRequestMsg"/>
|
3346
|
+
<output message="tns:CreateVolumeResponseMsg"/>
|
3347
|
+
</operation>
|
3348
|
+
<operation name="DeleteVolume">
|
3349
|
+
<input message="tns:DeleteVolumeRequestMsg"/>
|
3350
|
+
<output message="tns:DeleteVolumeResponseMsg"/>
|
3351
|
+
</operation>
|
3352
|
+
<operation name="DescribeVolumes">
|
3353
|
+
<input message="tns:DescribeVolumesRequestMsg"/>
|
3354
|
+
<output message="tns:DescribeVolumesResponseMsg"/>
|
3355
|
+
</operation>
|
3356
|
+
<operation name="AttachVolume">
|
3357
|
+
<input message="tns:AttachVolumeRequestMsg"/>
|
3358
|
+
<output message="tns:AttachVolumeResponseMsg"/>
|
3359
|
+
</operation>
|
3360
|
+
<operation name="DetachVolume">
|
3361
|
+
<input message="tns:DetachVolumeRequestMsg"/>
|
3362
|
+
<output message="tns:DetachVolumeResponseMsg"/>
|
3363
|
+
</operation>
|
3364
|
+
<operation name="CreateSnapshot">
|
3365
|
+
<input message="tns:CreateSnapshotRequestMsg"/>
|
3366
|
+
<output message="tns:CreateSnapshotResponseMsg"/>
|
3367
|
+
</operation>
|
3368
|
+
<operation name="DeleteSnapshot">
|
3369
|
+
<input message="tns:DeleteSnapshotRequestMsg"/>
|
3370
|
+
<output message="tns:DeleteSnapshotResponseMsg"/>
|
3371
|
+
</operation>
|
3372
|
+
<operation name="DescribeSnapshots">
|
3373
|
+
<input message="tns:DescribeSnapshotsRequestMsg"/>
|
3374
|
+
<output message="tns:DescribeSnapshotsResponseMsg"/>
|
3375
|
+
</operation>
|
3376
|
+
<operation name="ModifySnapshotAttribute">
|
3377
|
+
<input message="tns:ModifySnapshotAttributeRequestMsg"/>
|
3378
|
+
<output message="tns:ModifySnapshotAttributeResponseMsg"/>
|
3379
|
+
</operation>
|
3380
|
+
<operation name="ResetSnapshotAttribute">
|
3381
|
+
<input message="tns:ResetSnapshotAttributeRequestMsg"/>
|
3382
|
+
<output message="tns:ResetSnapshotAttributeResponseMsg"/>
|
3383
|
+
</operation>
|
3384
|
+
<operation name="DescribeSnapshotAttribute">
|
3385
|
+
<input message="tns:DescribeSnapshotAttributeRequestMsg"/>
|
3386
|
+
<output message="tns:DescribeSnapshotAttributeResponseMsg"/>
|
3387
|
+
</operation>
|
3388
|
+
<operation name="BundleInstance">
|
3389
|
+
<input message="tns:BundleInstanceRequestMsg" />
|
3390
|
+
<output message="tns:BundleInstanceResponseMsg" />
|
3391
|
+
</operation>
|
3392
|
+
<operation name="DescribeBundleTasks">
|
3393
|
+
<input message="tns:DescribeBundleTasksRequestMsg" />
|
3394
|
+
<output message="tns:DescribeBundleTasksResponseMsg" />
|
3395
|
+
</operation>
|
3396
|
+
<operation name="CancelBundleTask">
|
3397
|
+
<input message="tns:CancelBundleTaskRequestMsg" />
|
3398
|
+
<output message="tns:CancelBundleTaskResponseMsg" />
|
3399
|
+
</operation>
|
3400
|
+
<operation name="DescribeRegions">
|
3401
|
+
<input message="tns:DescribeRegionsRequestMsg"/>
|
3402
|
+
<output message="tns:DescribeRegionsResponseMsg"/>
|
3403
|
+
</operation>
|
3404
|
+
<operation name="DescribeReservedInstancesOfferings">
|
3405
|
+
<input message="tns:DescribeReservedInstancesOfferingsRequestMsg"/>
|
3406
|
+
<output message="tns:DescribeReservedInstancesOfferingsResponseMsg"/>
|
3407
|
+
</operation>
|
3408
|
+
<operation name="PurchaseReservedInstancesOffering">
|
3409
|
+
<input message="tns:PurchaseReservedInstancesOfferingRequestMsg"/>
|
3410
|
+
<output message="tns:PurchaseReservedInstancesOfferingResponseMsg"/>
|
3411
|
+
</operation>
|
3412
|
+
<operation name="DescribeReservedInstances">
|
3413
|
+
<input message="tns:DescribeReservedInstancesRequestMsg"/>
|
3414
|
+
<output message="tns:DescribeReservedInstancesResponseMsg"/>
|
3415
|
+
</operation>
|
3416
|
+
<operation name="MonitorInstances">
|
3417
|
+
<input message="tns:MonitorInstancesRequestMsg"/>
|
3418
|
+
<output message="tns:MonitorInstancesResponseMsg"/>
|
3419
|
+
</operation>
|
3420
|
+
<operation name="UnmonitorInstances">
|
3421
|
+
<input message="tns:UnmonitorInstancesRequestMsg"/>
|
3422
|
+
<output message="tns:UnmonitorInstancesResponseMsg"/>
|
3423
|
+
</operation>
|
3424
|
+
<operation name="CreateCustomerGateway">
|
3425
|
+
<input message="tns:CreateCustomerGatewayRequestMsg"/>
|
3426
|
+
<output message="tns:CreateCustomerGatewayResponseMsg"/>
|
3427
|
+
</operation>
|
3428
|
+
<operation name="DeleteCustomerGateway">
|
3429
|
+
<input message="tns:DeleteCustomerGatewayRequestMsg"/>
|
3430
|
+
<output message="tns:DeleteCustomerGatewayResponseMsg"/>
|
3431
|
+
</operation>
|
3432
|
+
<operation name="DescribeCustomerGateways">
|
3433
|
+
<input message="tns:DescribeCustomerGatewaysRequestMsg"/>
|
3434
|
+
<output message="tns:DescribeCustomerGatewaysResponseMsg"/>
|
3435
|
+
</operation>
|
3436
|
+
<operation name="CreateVpnGateway">
|
3437
|
+
<input message="tns:CreateVpnGatewayRequestMsg"/>
|
3438
|
+
<output message="tns:CreateVpnGatewayResponseMsg"/>
|
3439
|
+
</operation>
|
3440
|
+
<operation name="DeleteVpnGateway">
|
3441
|
+
<input message="tns:DeleteVpnGatewayRequestMsg"/>
|
3442
|
+
<output message="tns:DeleteVpnGatewayResponseMsg"/>
|
3443
|
+
</operation>
|
3444
|
+
<operation name="DescribeVpnGateways">
|
3445
|
+
<input message="tns:DescribeVpnGatewaysRequestMsg"/>
|
3446
|
+
<output message="tns:DescribeVpnGatewaysResponseMsg"/>
|
3447
|
+
</operation>
|
3448
|
+
<operation name="CreateVpnConnection">
|
3449
|
+
<input message="tns:CreateVpnConnectionRequestMsg"/>
|
3450
|
+
<output message="tns:CreateVpnConnectionResponseMsg"/>
|
3451
|
+
</operation>
|
3452
|
+
<operation name="DeleteVpnConnection">
|
3453
|
+
<input message="tns:DeleteVpnConnectionRequestMsg"/>
|
3454
|
+
<output message="tns:DeleteVpnConnectionResponseMsg"/>
|
3455
|
+
</operation>
|
3456
|
+
<operation name="DescribeVpnConnections">
|
3457
|
+
<input message="tns:DescribeVpnConnectionsRequestMsg"/>
|
3458
|
+
<output message="tns:DescribeVpnConnectionsResponseMsg"/>
|
3459
|
+
</operation>
|
3460
|
+
<operation name="AttachVpnGateway">
|
3461
|
+
<input message="tns:AttachVpnGatewayRequestMsg"/>
|
3462
|
+
<output message="tns:AttachVpnGatewayResponseMsg"/>
|
3463
|
+
</operation>
|
3464
|
+
<operation name="DetachVpnGateway">
|
3465
|
+
<input message="tns:DetachVpnGatewayRequestMsg"/>
|
3466
|
+
<output message="tns:DetachVpnGatewayResponseMsg"/>
|
3467
|
+
</operation>
|
3468
|
+
<operation name="CreateVpc">
|
3469
|
+
<input message="tns:CreateVpcRequestMsg"/>
|
3470
|
+
<output message="tns:CreateVpcResponseMsg"/>
|
3471
|
+
</operation>
|
3472
|
+
<operation name="DeleteVpc">
|
3473
|
+
<input message="tns:DeleteVpcRequestMsg"/>
|
3474
|
+
<output message="tns:DeleteVpcResponseMsg"/>
|
3475
|
+
</operation>
|
3476
|
+
<operation name="DescribeVpcs">
|
3477
|
+
<input message="tns:DescribeVpcsRequestMsg"/>
|
3478
|
+
<output message="tns:DescribeVpcsResponseMsg"/>
|
3479
|
+
</operation>
|
3480
|
+
<operation name="CreateSubnet">
|
3481
|
+
<input message="tns:CreateSubnetRequestMsg"/>
|
3482
|
+
<output message="tns:CreateSubnetResponseMsg"/>
|
3483
|
+
</operation>
|
3484
|
+
<operation name="DeleteSubnet">
|
3485
|
+
<input message="tns:DeleteSubnetRequestMsg"/>
|
3486
|
+
<output message="tns:DeleteSubnetResponseMsg"/>
|
3487
|
+
</operation>
|
3488
|
+
<operation name="DescribeSubnets">
|
3489
|
+
<input message="tns:DescribeSubnetsRequestMsg"/>
|
3490
|
+
<output message="tns:DescribeSubnetsResponseMsg"/>
|
3491
|
+
</operation>
|
3492
|
+
<operation name="CreateDhcpOptions">
|
3493
|
+
<input message="tns:CreateDhcpOptionsRequestMsg"/>
|
3494
|
+
<output message="tns:CreateDhcpOptionsResponseMsg"/>
|
3495
|
+
</operation>
|
3496
|
+
<operation name="DescribeDhcpOptions">
|
3497
|
+
<input message="tns:DescribeDhcpOptionsRequestMsg"/>
|
3498
|
+
<output message="tns:DescribeDhcpOptionsResponseMsg"/>
|
3499
|
+
</operation>
|
3500
|
+
<operation name="DeleteDhcpOptions">
|
3501
|
+
<input message="tns:DeleteDhcpOptionsRequestMsg"/>
|
3502
|
+
<output message="tns:DeleteDhcpOptionsResponseMsg"/>
|
3503
|
+
</operation>
|
3504
|
+
<operation name="AssociateDhcpOptions">
|
3505
|
+
<input message="tns:AssociateDhcpOptionsRequestMsg"/>
|
3506
|
+
<output message="tns:AssociateDhcpOptionsResponseMsg"/>
|
3507
|
+
</operation>
|
3508
|
+
</portType>
|
3509
|
+
|
3510
|
+
<binding name="AmazonEC2Binding" type="tns:AmazonEC2PortType">
|
3511
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
|
3512
|
+
|
3513
|
+
<operation name="CreateImage">
|
3514
|
+
<soap:operation soapAction="CreateImage" />
|
3515
|
+
<input>
|
3516
|
+
<soap:body use="literal" />
|
3517
|
+
</input>
|
3518
|
+
<output>
|
3519
|
+
<soap:body use="literal" />
|
3520
|
+
</output>
|
3521
|
+
</operation>
|
3522
|
+
|
3523
|
+
<operation name="RegisterImage">
|
3524
|
+
<soap:operation soapAction="RegisterImage" />
|
3525
|
+
<input>
|
3526
|
+
<soap:body use="literal" />
|
3527
|
+
</input>
|
3528
|
+
<output>
|
3529
|
+
<soap:body use="literal" />
|
3530
|
+
</output>
|
3531
|
+
</operation>
|
3532
|
+
|
3533
|
+
<operation name="DeregisterImage">
|
3534
|
+
<soap:operation soapAction="DeregisterImage" />
|
3535
|
+
<input>
|
3536
|
+
<soap:body use="literal" />
|
3537
|
+
</input>
|
3538
|
+
<output>
|
3539
|
+
<soap:body use="literal" />
|
3540
|
+
</output>
|
3541
|
+
</operation>
|
3542
|
+
|
3543
|
+
<operation name="CreateKeyPair">
|
3544
|
+
<soap:operation soapAction="CreateKeyPair" />
|
3545
|
+
<input>
|
3546
|
+
<soap:body use="literal" />
|
3547
|
+
</input>
|
3548
|
+
<output>
|
3549
|
+
<soap:body use="literal" />
|
3550
|
+
</output>
|
3551
|
+
</operation>
|
3552
|
+
|
3553
|
+
<operation name="DescribeKeyPairs">
|
3554
|
+
<soap:operation soapAction="DescribeKeyPairs" />
|
3555
|
+
<input>
|
3556
|
+
<soap:body use="literal" />
|
3557
|
+
</input>
|
3558
|
+
<output>
|
3559
|
+
<soap:body use="literal" />
|
3560
|
+
</output>
|
3561
|
+
</operation>
|
3562
|
+
|
3563
|
+
<operation name="DeleteKeyPair">
|
3564
|
+
<soap:operation soapAction="DeleteKeyPair" />
|
3565
|
+
<input>
|
3566
|
+
<soap:body use="literal" />
|
3567
|
+
</input>
|
3568
|
+
<output>
|
3569
|
+
<soap:body use="literal" />
|
3570
|
+
</output>
|
3571
|
+
</operation>
|
3572
|
+
|
3573
|
+
<operation name="RunInstances">
|
3574
|
+
<soap:operation soapAction="RunInstances" />
|
3575
|
+
<input>
|
3576
|
+
<soap:body use="literal" />
|
3577
|
+
</input>
|
3578
|
+
<output>
|
3579
|
+
<soap:body use="literal" />
|
3580
|
+
</output>
|
3581
|
+
</operation>
|
3582
|
+
|
3583
|
+
<operation name="GetConsoleOutput">
|
3584
|
+
<soap:operation soapAction="GetConsoleOutput" />
|
3585
|
+
<input>
|
3586
|
+
<soap:body use="literal" />
|
3587
|
+
</input>
|
3588
|
+
<output>
|
3589
|
+
<soap:body use="literal" />
|
3590
|
+
</output>
|
3591
|
+
</operation>
|
3592
|
+
|
3593
|
+
<operation name="GetPasswordData">
|
3594
|
+
<soap:operation soapAction="GetPasswordData" />
|
3595
|
+
<input>
|
3596
|
+
<soap:body use="literal" />
|
3597
|
+
</input>
|
3598
|
+
<output>
|
3599
|
+
<soap:body use="literal" />
|
3600
|
+
</output>
|
3601
|
+
</operation>
|
3602
|
+
|
3603
|
+
<operation name="TerminateInstances">
|
3604
|
+
<soap:operation soapAction="TerminateInstances" />
|
3605
|
+
<input>
|
3606
|
+
<soap:body use="literal" />
|
3607
|
+
</input>
|
3608
|
+
<output>
|
3609
|
+
<soap:body use="literal" />
|
3610
|
+
</output>
|
3611
|
+
</operation>
|
3612
|
+
|
3613
|
+
|
3614
|
+
<operation name="StopInstances">
|
3615
|
+
<soap:operation soapAction="StopInstances" />
|
3616
|
+
<input>
|
3617
|
+
<soap:body use="literal" />
|
3618
|
+
</input>
|
3619
|
+
<output>
|
3620
|
+
<soap:body use="literal" />
|
3621
|
+
</output>
|
3622
|
+
</operation>
|
3623
|
+
|
3624
|
+
<operation name="StartInstances">
|
3625
|
+
<soap:operation soapAction="StartInstances" />
|
3626
|
+
<input>
|
3627
|
+
<soap:body use="literal" />
|
3628
|
+
</input>
|
3629
|
+
<output>
|
3630
|
+
<soap:body use="literal" />
|
3631
|
+
</output>
|
3632
|
+
</operation>
|
3633
|
+
|
3634
|
+
<operation name="RebootInstances">
|
3635
|
+
<soap:operation soapAction="RebootInstances" />
|
3636
|
+
<input>
|
3637
|
+
<soap:body use="literal" />
|
3638
|
+
</input>
|
3639
|
+
<output>
|
3640
|
+
<soap:body use="literal" />
|
3641
|
+
</output>
|
3642
|
+
</operation>
|
3643
|
+
|
3644
|
+
<operation name="DescribeInstances">
|
3645
|
+
<soap:operation soapAction="DescribeInstances" />
|
3646
|
+
<input>
|
3647
|
+
<soap:body use="literal" />
|
3648
|
+
</input>
|
3649
|
+
<output>
|
3650
|
+
<soap:body use="literal" />
|
3651
|
+
</output>
|
3652
|
+
</operation>
|
3653
|
+
|
3654
|
+
<operation name="DescribeImages">
|
3655
|
+
<soap:operation soapAction="DescribeImages" />
|
3656
|
+
<input>
|
3657
|
+
<soap:body use="literal" />
|
3658
|
+
</input>
|
3659
|
+
<output>
|
3660
|
+
<soap:body use="literal" />
|
3661
|
+
</output>
|
3662
|
+
</operation>
|
3663
|
+
|
3664
|
+
<operation name="CreateSecurityGroup">
|
3665
|
+
<soap:operation soapAction="CreateSecurityGroup" />
|
3666
|
+
<input>
|
3667
|
+
<soap:body use="literal" />
|
3668
|
+
</input>
|
3669
|
+
<output>
|
3670
|
+
<soap:body use="literal" />
|
3671
|
+
</output>
|
3672
|
+
</operation>
|
3673
|
+
|
3674
|
+
<operation name="DeleteSecurityGroup">
|
3675
|
+
<soap:operation soapAction="DeleteSecurityGroup" />
|
3676
|
+
<input>
|
3677
|
+
<soap:body use="literal" />
|
3678
|
+
</input>
|
3679
|
+
<output>
|
3680
|
+
<soap:body use="literal" />
|
3681
|
+
</output>
|
3682
|
+
</operation>
|
3683
|
+
|
3684
|
+
<operation name="DescribeSecurityGroups">
|
3685
|
+
<soap:operation soapAction="DescribeSecurityGroups" />
|
3686
|
+
<input>
|
3687
|
+
<soap:body use="literal" />
|
3688
|
+
</input>
|
3689
|
+
<output>
|
3690
|
+
<soap:body use="literal" />
|
3691
|
+
</output>
|
3692
|
+
</operation>
|
3693
|
+
|
3694
|
+
<operation name="AuthorizeSecurityGroupIngress">
|
3695
|
+
<soap:operation soapAction="AuthorizeSecurityGroupIngress" />
|
3696
|
+
<input>
|
3697
|
+
<soap:body use="literal" />
|
3698
|
+
</input>
|
3699
|
+
<output>
|
3700
|
+
<soap:body use="literal" />
|
3701
|
+
</output>
|
3702
|
+
</operation>
|
3703
|
+
|
3704
|
+
<operation name="RevokeSecurityGroupIngress">
|
3705
|
+
<soap:operation soapAction="RevokeSecurityGroupIngress" />
|
3706
|
+
<input>
|
3707
|
+
<soap:body use="literal" />
|
3708
|
+
</input>
|
3709
|
+
<output>
|
3710
|
+
<soap:body use="literal" />
|
3711
|
+
</output>
|
3712
|
+
</operation>
|
3713
|
+
|
3714
|
+
<operation name="ModifyInstanceAttribute">
|
3715
|
+
<soap:operation soapAction="ModifyInstanceAttribute" />
|
3716
|
+
<input>
|
3717
|
+
<soap:body use="literal"/>
|
3718
|
+
</input>
|
3719
|
+
<output>
|
3720
|
+
<soap:body use="literal"/>
|
3721
|
+
</output>
|
3722
|
+
</operation>
|
3723
|
+
|
3724
|
+
<operation name="ResetInstanceAttribute">
|
3725
|
+
<soap:operation soapAction="ResetInstanceAttribute" />
|
3726
|
+
<input>
|
3727
|
+
<soap:body use="literal"/>
|
3728
|
+
</input>
|
3729
|
+
<output>
|
3730
|
+
<soap:body use="literal"/>
|
3731
|
+
</output>
|
3732
|
+
</operation>
|
3733
|
+
|
3734
|
+
<operation name="DescribeInstanceAttribute">
|
3735
|
+
<soap:operation soapAction="DescribeInstanceAttribute" />
|
3736
|
+
<input>
|
3737
|
+
<soap:body use="literal"/>
|
3738
|
+
</input>
|
3739
|
+
<output>
|
3740
|
+
<soap:body use="literal"/>
|
3741
|
+
</output>
|
3742
|
+
</operation>
|
3743
|
+
|
3744
|
+
<operation name="ModifyImageAttribute">
|
3745
|
+
<soap:operation soapAction="ModifyImageAttribute" />
|
3746
|
+
<input>
|
3747
|
+
<soap:body use="literal"/>
|
3748
|
+
</input>
|
3749
|
+
<output>
|
3750
|
+
<soap:body use="literal"/>
|
3751
|
+
</output>
|
3752
|
+
</operation>
|
3753
|
+
|
3754
|
+
<operation name="ResetImageAttribute">
|
3755
|
+
<soap:operation soapAction="ResetImageAttribute" />
|
3756
|
+
<input>
|
3757
|
+
<soap:body use="literal"/>
|
3758
|
+
</input>
|
3759
|
+
<output>
|
3760
|
+
<soap:body use="literal"/>
|
3761
|
+
</output>
|
3762
|
+
</operation>
|
3763
|
+
|
3764
|
+
<operation name="DescribeImageAttribute">
|
3765
|
+
<soap:operation soapAction="DescribeImageAttribute" />
|
3766
|
+
<input>
|
3767
|
+
<soap:body use="literal"/>
|
3768
|
+
</input>
|
3769
|
+
<output>
|
3770
|
+
<soap:body use="literal"/>
|
3771
|
+
</output>
|
3772
|
+
</operation>
|
3773
|
+
|
3774
|
+
<operation name="ConfirmProductInstance">
|
3775
|
+
<soap:operation soapAction="ConfirmProductInstance" />
|
3776
|
+
<input>
|
3777
|
+
<soap:body use="literal"/>
|
3778
|
+
</input>
|
3779
|
+
<output>
|
3780
|
+
<soap:body use="literal"/>
|
3781
|
+
</output>
|
3782
|
+
</operation>
|
3783
|
+
|
3784
|
+
<operation name="DescribeAvailabilityZones">
|
3785
|
+
<soap:operation soapAction="DescribeAvailabilityZones" />
|
3786
|
+
<input>
|
3787
|
+
<soap:body use="literal"/>
|
3788
|
+
</input>
|
3789
|
+
<output>
|
3790
|
+
<soap:body use="literal"/>
|
3791
|
+
</output>
|
3792
|
+
</operation>
|
3793
|
+
|
3794
|
+
<operation name='AllocateAddress'>
|
3795
|
+
<soap:operation soapAction='AllocateAddress'/>
|
3796
|
+
<input>
|
3797
|
+
<soap:body use='literal'/>
|
3798
|
+
</input>
|
3799
|
+
<output>
|
3800
|
+
<soap:body use='literal'/>
|
3801
|
+
</output>
|
3802
|
+
</operation>
|
3803
|
+
|
3804
|
+
<operation name='ReleaseAddress'>
|
3805
|
+
<soap:operation soapAction='ReleaseAddress'/>
|
3806
|
+
<input>
|
3807
|
+
<soap:body use='literal'/>
|
3808
|
+
</input>
|
3809
|
+
<output>
|
3810
|
+
<soap:body use='literal'/>
|
3811
|
+
</output>
|
3812
|
+
</operation>
|
3813
|
+
|
3814
|
+
<operation name='DescribeAddresses'>
|
3815
|
+
<soap:operation soapAction='DescribeAddresses'/>
|
3816
|
+
<input>
|
3817
|
+
<soap:body use='literal'/>
|
3818
|
+
</input>
|
3819
|
+
<output>
|
3820
|
+
<soap:body use='literal'/>
|
3821
|
+
</output>
|
3822
|
+
</operation>
|
3823
|
+
|
3824
|
+
<operation name='AssociateAddress'>
|
3825
|
+
<soap:operation soapAction='AssociateAddress'/>
|
3826
|
+
<input>
|
3827
|
+
<soap:body use='literal'/>
|
3828
|
+
</input>
|
3829
|
+
<output>
|
3830
|
+
<soap:body use='literal'/>
|
3831
|
+
</output>
|
3832
|
+
</operation>
|
3833
|
+
|
3834
|
+
<operation name='DisassociateAddress'>
|
3835
|
+
<soap:operation soapAction='DisassociateAddress'/>
|
3836
|
+
<input>
|
3837
|
+
<soap:body use='literal'/>
|
3838
|
+
</input>
|
3839
|
+
<output>
|
3840
|
+
<soap:body use='literal'/>
|
3841
|
+
</output>
|
3842
|
+
</operation>
|
3843
|
+
|
3844
|
+
<operation name="CreateVolume">
|
3845
|
+
<soap:operation soapAction="CreateVolume" />
|
3846
|
+
<input>
|
3847
|
+
<soap:body use="literal"/>
|
3848
|
+
</input>
|
3849
|
+
<output>
|
3850
|
+
<soap:body use="literal"/>
|
3851
|
+
</output>
|
3852
|
+
</operation>
|
3853
|
+
|
3854
|
+
<operation name="DeleteVolume">
|
3855
|
+
<soap:operation soapAction="DeleteVolume" />
|
3856
|
+
<input>
|
3857
|
+
<soap:body use="literal"/>
|
3858
|
+
</input>
|
3859
|
+
<output>
|
3860
|
+
<soap:body use="literal"/>
|
3861
|
+
</output>
|
3862
|
+
</operation>
|
3863
|
+
|
3864
|
+
<operation name="DescribeVolumes">
|
3865
|
+
<soap:operation soapAction="DescribeVolumes" />
|
3866
|
+
<input>
|
3867
|
+
<soap:body use="literal"/>
|
3868
|
+
</input>
|
3869
|
+
<output>
|
3870
|
+
<soap:body use="literal"/>
|
3871
|
+
</output>
|
3872
|
+
</operation>
|
3873
|
+
|
3874
|
+
<operation name="AttachVolume">
|
3875
|
+
<soap:operation soapAction="AttachVolume" />
|
3876
|
+
<input>
|
3877
|
+
<soap:body use="literal"/>
|
3878
|
+
</input>
|
3879
|
+
<output>
|
3880
|
+
<soap:body use="literal"/>
|
3881
|
+
</output>
|
3882
|
+
</operation>
|
3883
|
+
|
3884
|
+
<operation name="DetachVolume">
|
3885
|
+
<soap:operation soapAction="DetachVolume" />
|
3886
|
+
<input>
|
3887
|
+
<soap:body use="literal"/>
|
3888
|
+
</input>
|
3889
|
+
<output>
|
3890
|
+
<soap:body use="literal"/>
|
3891
|
+
</output>
|
3892
|
+
</operation>
|
3893
|
+
|
3894
|
+
<operation name="CreateSnapshot">
|
3895
|
+
<soap:operation soapAction="CreateSnapshot" />
|
3896
|
+
<input>
|
3897
|
+
<soap:body use="literal"/>
|
3898
|
+
</input>
|
3899
|
+
<output>
|
3900
|
+
<soap:body use="literal"/>
|
3901
|
+
</output>
|
3902
|
+
</operation>
|
3903
|
+
|
3904
|
+
<operation name="DeleteSnapshot">
|
3905
|
+
<soap:operation soapAction="DeleteSnapshot" />
|
3906
|
+
<input>
|
3907
|
+
<soap:body use="literal"/>
|
3908
|
+
</input>
|
3909
|
+
<output>
|
3910
|
+
<soap:body use="literal"/>
|
3911
|
+
</output>
|
3912
|
+
</operation>
|
3913
|
+
|
3914
|
+
<operation name="DescribeSnapshots">
|
3915
|
+
<soap:operation soapAction="DescribeSnapshots" />
|
3916
|
+
<input>
|
3917
|
+
<soap:body use="literal"/>
|
3918
|
+
</input>
|
3919
|
+
<output>
|
3920
|
+
<soap:body use="literal"/>
|
3921
|
+
</output>
|
3922
|
+
</operation>
|
3923
|
+
|
3924
|
+
<operation name="ModifySnapshotAttribute">
|
3925
|
+
<soap:operation soapAction="ModifySnapshotAttribute" />
|
3926
|
+
<input>
|
3927
|
+
<soap:body use="literal"/>
|
3928
|
+
</input>
|
3929
|
+
<output>
|
3930
|
+
<soap:body use="literal"/>
|
3931
|
+
</output>
|
3932
|
+
</operation>
|
3933
|
+
|
3934
|
+
<operation name="ResetSnapshotAttribute">
|
3935
|
+
<soap:operation soapAction="ResetSnapshotAttribute" />
|
3936
|
+
<input>
|
3937
|
+
<soap:body use="literal"/>
|
3938
|
+
</input>
|
3939
|
+
<output>
|
3940
|
+
<soap:body use="literal"/>
|
3941
|
+
</output>
|
3942
|
+
</operation>
|
3943
|
+
|
3944
|
+
<operation name="DescribeSnapshotAttribute">
|
3945
|
+
<soap:operation soapAction="DescribeSnapshotAttribute" />
|
3946
|
+
<input>
|
3947
|
+
<soap:body use="literal"/>
|
3948
|
+
</input>
|
3949
|
+
<output>
|
3950
|
+
<soap:body use="literal"/>
|
3951
|
+
</output>
|
3952
|
+
</operation>
|
3953
|
+
|
3954
|
+
<operation name="BundleInstance">
|
3955
|
+
<soap:operation soapAction="BundleInstance" />
|
3956
|
+
<input>
|
3957
|
+
<soap:body use="literal" />
|
3958
|
+
</input>
|
3959
|
+
<output>
|
3960
|
+
<soap:body use="literal" />
|
3961
|
+
</output>
|
3962
|
+
</operation>
|
3963
|
+
|
3964
|
+
<operation name="DescribeBundleTasks">
|
3965
|
+
<soap:operation soapAction="DescribeBundleTasks" />
|
3966
|
+
<input>
|
3967
|
+
<soap:body use="literal" />
|
3968
|
+
</input>
|
3969
|
+
<output>
|
3970
|
+
<soap:body use="literal" />
|
3971
|
+
</output>
|
3972
|
+
</operation>
|
3973
|
+
|
3974
|
+
<operation name="CancelBundleTask">
|
3975
|
+
<soap:operation soapAction="CancelBundleTask" />
|
3976
|
+
<input>
|
3977
|
+
<soap:body use="literal" />
|
3978
|
+
</input>
|
3979
|
+
<output>
|
3980
|
+
<soap:body use="literal" />
|
3981
|
+
</output>
|
3982
|
+
</operation>
|
3983
|
+
|
3984
|
+
<operation name="DescribeRegions">
|
3985
|
+
<soap:operation soapAction="DescribeRegions" />
|
3986
|
+
<input>
|
3987
|
+
<soap:body use="literal"/>
|
3988
|
+
</input>
|
3989
|
+
<output>
|
3990
|
+
<soap:body use="literal"/>
|
3991
|
+
</output>
|
3992
|
+
</operation>
|
3993
|
+
|
3994
|
+
<operation name="DescribeReservedInstancesOfferings">
|
3995
|
+
<soap:operation soapAction="DescribeReservedInstancesOfferings" />
|
3996
|
+
<input>
|
3997
|
+
<soap:body use="literal"/>
|
3998
|
+
</input>
|
3999
|
+
<output>
|
4000
|
+
<soap:body use="literal"/>
|
4001
|
+
</output>
|
4002
|
+
</operation>
|
4003
|
+
|
4004
|
+
<operation name="PurchaseReservedInstancesOffering">
|
4005
|
+
<soap:operation soapAction="PurchaseReservedInstancesOffering" />
|
4006
|
+
<input>
|
4007
|
+
<soap:body use="literal"/>
|
4008
|
+
</input>
|
4009
|
+
<output>
|
4010
|
+
<soap:body use="literal"/>
|
4011
|
+
</output>
|
4012
|
+
</operation>
|
4013
|
+
|
4014
|
+
<operation name="DescribeReservedInstances">
|
4015
|
+
<soap:operation soapAction="DescribeReservedInstances" />
|
4016
|
+
<input>
|
4017
|
+
<soap:body use="literal"/>
|
4018
|
+
</input>
|
4019
|
+
<output>
|
4020
|
+
<soap:body use="literal"/>
|
4021
|
+
</output>
|
4022
|
+
</operation>
|
4023
|
+
|
4024
|
+
<operation name="MonitorInstances">
|
4025
|
+
<soap:operation soapAction="MonitorInstances" />
|
4026
|
+
<input>
|
4027
|
+
<soap:body use="literal"/>
|
4028
|
+
</input>
|
4029
|
+
<output>
|
4030
|
+
<soap:body use="literal"/>
|
4031
|
+
</output>
|
4032
|
+
</operation>
|
4033
|
+
|
4034
|
+
<operation name="UnmonitorInstances">
|
4035
|
+
<soap:operation soapAction="UnmonitorInstances" />
|
4036
|
+
<input>
|
4037
|
+
<soap:body use="literal"/>
|
4038
|
+
</input>
|
4039
|
+
<output>
|
4040
|
+
<soap:body use="literal"/>
|
4041
|
+
</output>
|
4042
|
+
</operation>
|
4043
|
+
|
4044
|
+
<operation name="CreateCustomerGateway">
|
4045
|
+
<soap:operation soapAction="CreateCustomerGateway" />
|
4046
|
+
<input>
|
4047
|
+
<soap:body use="literal"/>
|
4048
|
+
</input>
|
4049
|
+
<output>
|
4050
|
+
<soap:body use="literal"/>
|
4051
|
+
</output>
|
4052
|
+
</operation>
|
4053
|
+
|
4054
|
+
<operation name="DeleteCustomerGateway">
|
4055
|
+
<soap:operation soapAction="DeleteCustomerGateway" />
|
4056
|
+
<input>
|
4057
|
+
<soap:body use="literal"/>
|
4058
|
+
</input>
|
4059
|
+
<output>
|
4060
|
+
<soap:body use="literal"/>
|
4061
|
+
</output>
|
4062
|
+
</operation>
|
4063
|
+
|
4064
|
+
<operation name="DescribeCustomerGateways">
|
4065
|
+
<soap:operation soapAction="DescribeCustomerGateways" />
|
4066
|
+
<input>
|
4067
|
+
<soap:body use="literal"/>
|
4068
|
+
</input>
|
4069
|
+
<output>
|
4070
|
+
<soap:body use="literal"/>
|
4071
|
+
</output>
|
4072
|
+
</operation>
|
4073
|
+
|
4074
|
+
<operation name="CreateVpnGateway">
|
4075
|
+
<soap:operation soapAction="CreateVpnGateway" />
|
4076
|
+
<input>
|
4077
|
+
<soap:body use="literal"/>
|
4078
|
+
</input>
|
4079
|
+
<output>
|
4080
|
+
<soap:body use="literal"/>
|
4081
|
+
</output>
|
4082
|
+
</operation>
|
4083
|
+
|
4084
|
+
<operation name="DeleteVpnGateway">
|
4085
|
+
<soap:operation soapAction="DeleteVpnGateway" />
|
4086
|
+
<input>
|
4087
|
+
<soap:body use="literal"/>
|
4088
|
+
</input>
|
4089
|
+
<output>
|
4090
|
+
<soap:body use="literal"/>
|
4091
|
+
</output>
|
4092
|
+
</operation>
|
4093
|
+
|
4094
|
+
<operation name="DescribeVpnGateways">
|
4095
|
+
<soap:operation soapAction="DescribeVpnGateways" />
|
4096
|
+
<input>
|
4097
|
+
<soap:body use="literal"/>
|
4098
|
+
</input>
|
4099
|
+
<output>
|
4100
|
+
<soap:body use="literal"/>
|
4101
|
+
</output>
|
4102
|
+
</operation>
|
4103
|
+
|
4104
|
+
<operation name="CreateVpnConnection">
|
4105
|
+
<soap:operation soapAction="CreateVpnConnection" />
|
4106
|
+
<input>
|
4107
|
+
<soap:body use="literal"/>
|
4108
|
+
</input>
|
4109
|
+
<output>
|
4110
|
+
<soap:body use="literal"/>
|
4111
|
+
</output>
|
4112
|
+
</operation>
|
4113
|
+
|
4114
|
+
<operation name="DeleteVpnConnection">
|
4115
|
+
<soap:operation soapAction="DeleteVpnConnection" />
|
4116
|
+
<input>
|
4117
|
+
<soap:body use="literal"/>
|
4118
|
+
</input>
|
4119
|
+
<output>
|
4120
|
+
<soap:body use="literal"/>
|
4121
|
+
</output>
|
4122
|
+
</operation>
|
4123
|
+
|
4124
|
+
<operation name="DescribeVpnConnections">
|
4125
|
+
<soap:operation soapAction="DescribeVpnConnections" />
|
4126
|
+
<input>
|
4127
|
+
<soap:body use="literal"/>
|
4128
|
+
</input>
|
4129
|
+
<output>
|
4130
|
+
<soap:body use="literal"/>
|
4131
|
+
</output>
|
4132
|
+
</operation>
|
4133
|
+
|
4134
|
+
<operation name="AttachVpnGateway">
|
4135
|
+
<soap:operation soapAction="AttachVpnGateway" />
|
4136
|
+
<input>
|
4137
|
+
<soap:body use="literal"/>
|
4138
|
+
</input>
|
4139
|
+
<output>
|
4140
|
+
<soap:body use="literal"/>
|
4141
|
+
</output>
|
4142
|
+
</operation>
|
4143
|
+
|
4144
|
+
<operation name="DetachVpnGateway">
|
4145
|
+
<soap:operation soapAction="DetachVpnGateway" />
|
4146
|
+
<input>
|
4147
|
+
<soap:body use="literal"/>
|
4148
|
+
</input>
|
4149
|
+
<output>
|
4150
|
+
<soap:body use="literal"/>
|
4151
|
+
</output>
|
4152
|
+
</operation>
|
4153
|
+
|
4154
|
+
<operation name="CreateVpc">
|
4155
|
+
<soap:operation soapAction="CreateVpc" />
|
4156
|
+
<input>
|
4157
|
+
<soap:body use="literal"/>
|
4158
|
+
</input>
|
4159
|
+
<output>
|
4160
|
+
<soap:body use="literal"/>
|
4161
|
+
</output>
|
4162
|
+
</operation>
|
4163
|
+
|
4164
|
+
<operation name="DeleteVpc">
|
4165
|
+
<soap:operation soapAction="DeleteVpc" />
|
4166
|
+
<input>
|
4167
|
+
<soap:body use="literal"/>
|
4168
|
+
</input>
|
4169
|
+
<output>
|
4170
|
+
<soap:body use="literal"/>
|
4171
|
+
</output>
|
4172
|
+
</operation>
|
4173
|
+
|
4174
|
+
<operation name="DescribeVpcs">
|
4175
|
+
<soap:operation soapAction="DescribeVpcs" />
|
4176
|
+
<input>
|
4177
|
+
<soap:body use="literal"/>
|
4178
|
+
</input>
|
4179
|
+
<output>
|
4180
|
+
<soap:body use="literal"/>
|
4181
|
+
</output>
|
4182
|
+
</operation>
|
4183
|
+
|
4184
|
+
<operation name="CreateSubnet">
|
4185
|
+
<soap:operation soapAction="CreateSubnet" />
|
4186
|
+
<input>
|
4187
|
+
<soap:body use="literal"/>
|
4188
|
+
</input>
|
4189
|
+
<output>
|
4190
|
+
<soap:body use="literal"/>
|
4191
|
+
</output>
|
4192
|
+
</operation>
|
4193
|
+
|
4194
|
+
<operation name="DeleteSubnet">
|
4195
|
+
<soap:operation soapAction="DeleteSubnet" />
|
4196
|
+
<input>
|
4197
|
+
<soap:body use="literal"/>
|
4198
|
+
</input>
|
4199
|
+
<output>
|
4200
|
+
<soap:body use="literal"/>
|
4201
|
+
</output>
|
4202
|
+
</operation>
|
4203
|
+
|
4204
|
+
<operation name="DescribeSubnets">
|
4205
|
+
<soap:operation soapAction="DescribeSubnets" />
|
4206
|
+
<input>
|
4207
|
+
<soap:body use="literal"/>
|
4208
|
+
</input>
|
4209
|
+
<output>
|
4210
|
+
<soap:body use="literal"/>
|
4211
|
+
</output>
|
4212
|
+
</operation>
|
4213
|
+
|
4214
|
+
<operation name="CreateDhcpOptions">
|
4215
|
+
<soap:operation soapAction="CreateDhcpOptions" />
|
4216
|
+
<input>
|
4217
|
+
<soap:body use="literal"/>
|
4218
|
+
</input>
|
4219
|
+
<output>
|
4220
|
+
<soap:body use="literal"/>
|
4221
|
+
</output>
|
4222
|
+
</operation>
|
4223
|
+
|
4224
|
+
<operation name="DescribeDhcpOptions">
|
4225
|
+
<soap:operation soapAction="DescribeDhcpOptions" />
|
4226
|
+
<input>
|
4227
|
+
<soap:body use="literal"/>
|
4228
|
+
</input>
|
4229
|
+
<output>
|
4230
|
+
<soap:body use="literal"/>
|
4231
|
+
</output>
|
4232
|
+
</operation>
|
4233
|
+
|
4234
|
+
<operation name="DeleteDhcpOptions">
|
4235
|
+
<soap:operation soapAction="DeleteDhcpOptions" />
|
4236
|
+
<input>
|
4237
|
+
<soap:body use="literal"/>
|
4238
|
+
</input>
|
4239
|
+
<output>
|
4240
|
+
<soap:body use="literal"/>
|
4241
|
+
</output>
|
4242
|
+
</operation>
|
4243
|
+
|
4244
|
+
<operation name="AssociateDhcpOptions">
|
4245
|
+
<soap:operation soapAction="AssociateDhcpOptions" />
|
4246
|
+
<input>
|
4247
|
+
<soap:body use="literal"/>
|
4248
|
+
</input>
|
4249
|
+
<output>
|
4250
|
+
<soap:body use="literal"/>
|
4251
|
+
</output>
|
4252
|
+
</operation>
|
4253
|
+
</binding>
|
4254
|
+
|
4255
|
+
<service name="AmazonEC2">
|
4256
|
+
<port name="AmazonEC2Port" binding="tns:AmazonEC2Binding">
|
4257
|
+
<soap:address location="https://ec2.amazonaws.com/" />
|
4258
|
+
</port>
|
4259
|
+
</service>
|
4260
|
+
|
4261
|
+
</definitions>
|