ksyun-sdk-node 1.0.2 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1841 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ 'protocol': 'http://',
6
+ 'endpoint': 'kec.api.ksyun.com',
7
+ 'config': {
8
+ 'timeout': 60, //设置timeout
9
+ 'headers': {
10
+ 'Accept': 'application/json'
11
+ },
12
+ 'credentials': {
13
+ 'region': 'cn-shanghai-3',
14
+ 'service': 'kec',
15
+ },
16
+ },
17
+ }
18
+ _apiList = {
19
+ 'DescribeInstances': {
20
+ 'url': '/',
21
+ 'method': 'GET',
22
+ 'config': {
23
+ 'query': {
24
+ 'Version': '2016-03-04',
25
+ 'Action': 'DescribeInstances',
26
+ },
27
+ 'headers': {
28
+ 'Content-Type': 'application/x-www-form-urlencoded'
29
+ },
30
+ },
31
+ 'paramsType': {
32
+ 'MaxResults': 'Int',
33
+ 'Marker': 'Int',
34
+ 'InstanceId': 'Filter',
35
+ 'ProjectId': 'Filter',
36
+ 'Filter': 'Filter',
37
+ 'Sort': 'String',
38
+ 'Search': 'String',
39
+ }
40
+ },
41
+ 'RunInstances': {
42
+ 'url': '/',
43
+ 'method': 'GET',
44
+ 'config': {
45
+ 'query': {
46
+ 'Version': '2016-03-04',
47
+ 'Action': 'RunInstances',
48
+ },
49
+ 'headers': {
50
+ 'Content-Type': 'application/x-www-form-urlencoded'
51
+ },
52
+ },
53
+ 'paramsType': {
54
+ 'ImageId': 'String',
55
+ 'DedicatedHostId': 'String',
56
+ 'InstanceConfigure.VCPU': 'String',
57
+ 'InstanceConfigure.MemoryGb': 'String',
58
+ 'InstanceType': 'String',
59
+ 'DataDiskGb': 'Int',
60
+ 'MaxCount': 'Int',
61
+ 'MinCount': 'Int',
62
+ 'SubnetId': 'String',
63
+ 'InstancePassword': 'String',
64
+ 'ChargeType': 'String',
65
+ 'PurchaseTime': 'Int',
66
+ 'SecurityGroupId': 'String',
67
+ 'PrivateIpAddress': 'String',
68
+ 'InstanceName': 'String',
69
+ 'InstanceNameSuffix': 'String',
70
+ 'ProjectId': 'Int',
71
+ 'DataDisk': 'Filter',
72
+ 'NetworkInterface': 'Filter',
73
+ 'Userdata': 'String',
74
+ 'SystemDisk.DiskType': 'String',
75
+ 'SystemDisk.DiskSize': 'Int',
76
+ }
77
+ },
78
+ 'StartInstances': {
79
+ 'url': '/',
80
+ 'method': 'GET',
81
+ 'config': {
82
+ 'query': {
83
+ 'Version': '2016-03-04',
84
+ 'Action': 'StartInstances',
85
+ },
86
+ 'headers': {
87
+ 'Content-Type': 'application/x-www-form-urlencoded'
88
+ },
89
+ },
90
+ 'paramsType': {
91
+ 'InstanceId': 'Filter',
92
+ }
93
+ },
94
+ 'StopInstances': {
95
+ 'url': '/',
96
+ 'method': 'GET',
97
+ 'config': {
98
+ 'query': {
99
+ 'Version': '2016-03-04',
100
+ 'Action': 'StopInstances',
101
+ },
102
+ 'headers': {
103
+ 'Content-Type': 'application/x-www-form-urlencoded'
104
+ },
105
+ },
106
+ 'paramsType': {
107
+ 'InstanceId': 'Filter',
108
+ 'ForceStop': 'Boolean',
109
+ 'StoppedMode': 'String',
110
+ }
111
+ },
112
+ 'RebootInstances': {
113
+ 'url': '/',
114
+ 'method': 'GET',
115
+ 'config': {
116
+ 'query': {
117
+ 'Version': '2016-03-04',
118
+ 'Action': 'RebootInstances',
119
+ },
120
+ 'headers': {
121
+ 'Content-Type': 'application/x-www-form-urlencoded'
122
+ },
123
+ },
124
+ 'paramsType': {
125
+ 'InstanceId': 'Filter',
126
+ 'ForceReboot': 'Boolean',
127
+ }
128
+ },
129
+ 'ModifyInstanceAttribute': {
130
+ 'url': '/',
131
+ 'method': 'GET',
132
+ 'config': {
133
+ 'query': {
134
+ 'Version': '2016-03-04',
135
+ 'Action': 'ModifyInstanceAttribute',
136
+ },
137
+ 'headers': {
138
+ 'Content-Type': 'application/x-www-form-urlencoded'
139
+ },
140
+ },
141
+ 'paramsType': {
142
+ 'InstanceId': 'String',
143
+ 'InstanceName': 'String',
144
+ 'InstancePassword': 'String',
145
+ 'HostName': 'String',
146
+ 'RestartMode': 'String',
147
+ }
148
+ },
149
+ 'ModifyInstanceType': {
150
+ 'url': '/',
151
+ 'method': 'GET',
152
+ 'config': {
153
+ 'query': {
154
+ 'Version': '2016-03-04',
155
+ 'Action': 'ModifyInstanceType',
156
+ },
157
+ 'headers': {
158
+ 'Content-Type': 'application/x-www-form-urlencoded'
159
+ },
160
+ },
161
+ 'paramsType': {
162
+ 'InstanceId': 'String',
163
+ 'InstanceType': 'String',
164
+ 'InstanceConfigure.VCPU': 'String',
165
+ 'InstanceConfigure.MemoryGb': 'String',
166
+ 'DataDiskGb': 'Int',
167
+ 'CrossInstanceMigrate': 'Boolean',
168
+ 'SystemDisk.DiskType': 'String',
169
+ 'DataDisk': 'Filter',
170
+ 'StopInstance': 'Boolean',
171
+ 'AutoRestart': 'Boolean',
172
+ 'SystemDisk.DiskSize': 'Int',
173
+ 'SystemDisk.ResizeType': 'String',
174
+ }
175
+ },
176
+ 'TerminateInstances': {
177
+ 'url': '/',
178
+ 'method': 'GET',
179
+ 'config': {
180
+ 'query': {
181
+ 'Version': '2016-03-04',
182
+ 'Action': 'TerminateInstances',
183
+ },
184
+ 'headers': {
185
+ 'Content-Type': 'application/x-www-form-urlencoded'
186
+ },
187
+ },
188
+ 'paramsType': {
189
+ 'InstanceId': 'Filter',
190
+ 'ForceDelete': 'Boolean',
191
+ }
192
+ },
193
+ 'DescribeImages': {
194
+ 'url': '/',
195
+ 'method': 'GET',
196
+ 'config': {
197
+ 'query': {
198
+ 'Version': '2016-03-04',
199
+ 'Action': 'DescribeImages',
200
+ },
201
+ 'headers': {
202
+ 'Content-Type': 'application/x-www-form-urlencoded'
203
+ },
204
+ },
205
+ 'paramsType': {
206
+ 'ImageId': 'String',
207
+ 'ImageType': 'String',
208
+ }
209
+ },
210
+ 'ModifyImageAttribute': {
211
+ 'url': '/',
212
+ 'method': 'GET',
213
+ 'config': {
214
+ 'query': {
215
+ 'Version': '2016-03-04',
216
+ 'Action': 'ModifyImageAttribute',
217
+ },
218
+ 'headers': {
219
+ 'Content-Type': 'application/x-www-form-urlencoded'
220
+ },
221
+ },
222
+ 'paramsType': {
223
+ 'ImageId': 'String',
224
+ 'Name': 'String',
225
+ 'OsVersion': 'String',
226
+ 'CloudInitSupport': 'Boolean',
227
+ }
228
+ },
229
+ 'ModifyInstanceImage': {
230
+ 'url': '/',
231
+ 'method': 'GET',
232
+ 'config': {
233
+ 'query': {
234
+ 'Version': '2016-03-04',
235
+ 'Action': 'ModifyInstanceImage',
236
+ },
237
+ 'headers': {
238
+ 'Content-Type': 'application/x-www-form-urlencoded'
239
+ },
240
+ },
241
+ 'paramsType': {
242
+ 'InstanceId': 'String',
243
+ 'ImageId': 'String',
244
+ 'SystemDisk.DiskSize': 'Int',
245
+ 'InstancePassword': 'String',
246
+ 'KeyId': 'Filter',
247
+ 'KeepImageLogin': 'Boolean',
248
+ 'SystemDisk.DiskType': 'String',
249
+ 'SystemDisk.ResizeType': 'String',
250
+ }
251
+ },
252
+ 'CreateImage': {
253
+ 'url': '/',
254
+ 'method': 'GET',
255
+ 'config': {
256
+ 'query': {
257
+ 'Version': '2016-03-04',
258
+ 'Action': 'CreateImage',
259
+ },
260
+ 'headers': {
261
+ 'Content-Type': 'application/x-www-form-urlencoded'
262
+ },
263
+ },
264
+ 'paramsType': {
265
+ 'InstanceId': 'String',
266
+ 'Name': 'String',
267
+ 'Type': 'String',
268
+ 'DataDiskIds': 'Filter',
269
+ 'SnapshotIds': 'Filter',
270
+ }
271
+ },
272
+ 'RemoveImages': {
273
+ 'url': '/',
274
+ 'method': 'GET',
275
+ 'config': {
276
+ 'query': {
277
+ 'Version': '2016-03-04',
278
+ 'Action': 'RemoveImages',
279
+ },
280
+ 'headers': {
281
+ 'Content-Type': 'application/x-www-form-urlencoded'
282
+ },
283
+ },
284
+ 'paramsType': {
285
+ 'ImageId': 'String',
286
+ }
287
+ },
288
+ 'ModifyNetworkInterfaceAttribute': {
289
+ 'url': '/',
290
+ 'method': 'GET',
291
+ 'config': {
292
+ 'query': {
293
+ 'Version': '2016-03-04',
294
+ 'Action': 'ModifyNetworkInterfaceAttribute',
295
+ },
296
+ 'headers': {
297
+ 'Content-Type': 'application/x-www-form-urlencoded'
298
+ },
299
+ },
300
+ 'paramsType': {
301
+ 'InstanceId': 'String',
302
+ 'NetworkInterfaceId': 'String',
303
+ 'SubnetId': 'String',
304
+ 'SecurityGroupId': 'String',
305
+ 'PrivateIpAddress': 'String',
306
+ 'DNS1': 'String',
307
+ 'DNS2': 'String',
308
+ }
309
+ },
310
+ 'AttachNetworkInterface': {
311
+ 'url': '/',
312
+ 'method': 'GET',
313
+ 'config': {
314
+ 'query': {
315
+ 'Version': '2016-03-04',
316
+ 'Action': 'AttachNetworkInterface',
317
+ },
318
+ 'headers': {
319
+ 'Content-Type': 'application/x-www-form-urlencoded'
320
+ },
321
+ },
322
+ 'paramsType': {
323
+ 'InstanceId': 'String',
324
+ 'NetworkInterfaceId': 'String',
325
+ 'SubnetId': 'String',
326
+ 'SecurityGroupId': 'String',
327
+ 'PrivateIpAddress': 'String',
328
+ 'SecurityGroupIds': 'Array',
329
+ 'VpcIpv6': 'String',
330
+ 'MacAddress': 'String',
331
+ }
332
+ },
333
+ 'DetachNetworkInterface': {
334
+ 'url': '/',
335
+ 'method': 'GET',
336
+ 'config': {
337
+ 'query': {
338
+ 'Version': '2016-03-04',
339
+ 'Action': 'DetachNetworkInterface',
340
+ },
341
+ 'headers': {
342
+ 'Content-Type': 'application/x-www-form-urlencoded'
343
+ },
344
+ },
345
+ 'paramsType': {
346
+ 'InstanceId': 'String',
347
+ 'NetworkInterfaceId': 'String',
348
+ }
349
+ },
350
+ 'DescribeLocalVolumes': {
351
+ 'url': '/',
352
+ 'method': 'GET',
353
+ 'config': {
354
+ 'query': {
355
+ 'Version': '2016-03-04',
356
+ 'Action': 'DescribeLocalVolumes',
357
+ },
358
+ 'headers': {
359
+ 'Content-Type': 'application/x-www-form-urlencoded'
360
+ },
361
+ },
362
+ 'paramsType': {
363
+ 'InstanceName': 'String',
364
+ }
365
+ },
366
+ 'CreateLocalVolumeSnapshot': {
367
+ 'url': '/',
368
+ 'method': 'GET',
369
+ 'config': {
370
+ 'query': {
371
+ 'Version': '2016-03-04',
372
+ 'Action': 'CreateLocalVolumeSnapshot',
373
+ },
374
+ 'headers': {
375
+ 'Content-Type': 'application/x-www-form-urlencoded'
376
+ },
377
+ },
378
+ 'paramsType': {
379
+ 'LocalVolumeId': 'String',
380
+ 'LocalVolumeSnapshotName': 'String',
381
+ 'LocalVolumeSnapshotDesc': 'String',
382
+ }
383
+ },
384
+ 'DescribeLocalVolumeSnapshots': {
385
+ 'url': '/',
386
+ 'method': 'GET',
387
+ 'config': {
388
+ 'query': {
389
+ 'Version': '2016-03-04',
390
+ 'Action': 'DescribeLocalVolumeSnapshots',
391
+ },
392
+ 'headers': {
393
+ 'Content-Type': 'application/x-www-form-urlencoded'
394
+ },
395
+ },
396
+ 'paramsType': {
397
+ 'Action': 'String',
398
+ 'Version': 'String',
399
+ 'LocalVolumeName': 'String',
400
+ 'SourceLocalVolumeId': 'String',
401
+ }
402
+ },
403
+ 'RollbackLocalVolume': {
404
+ 'url': '/',
405
+ 'method': 'GET',
406
+ 'config': {
407
+ 'query': {
408
+ 'Version': '2016-03-04',
409
+ 'Action': 'RollbackLocalVolume',
410
+ },
411
+ 'headers': {
412
+ 'Content-Type': 'application/x-www-form-urlencoded'
413
+ },
414
+ },
415
+ 'paramsType': {
416
+ 'LocalVolumeSnapshotId': 'String',
417
+ }
418
+ },
419
+ 'DeleteLocalVolumeSnapshot': {
420
+ 'url': '/',
421
+ 'method': 'GET',
422
+ 'config': {
423
+ 'query': {
424
+ 'Version': '2016-03-04',
425
+ 'Action': 'DeleteLocalVolumeSnapshot',
426
+ },
427
+ 'headers': {
428
+ 'Content-Type': 'application/x-www-form-urlencoded'
429
+ },
430
+ },
431
+ 'paramsType': {
432
+ 'LocalVolumeSnapshotId': 'Filter',
433
+ }
434
+ },
435
+ 'ModifyDataGuardGroups': {
436
+ 'url': '/',
437
+ 'method': 'GET',
438
+ 'config': {
439
+ 'query': {
440
+ 'Version': '2016-03-04',
441
+ 'Action': 'ModifyDataGuardGroups',
442
+ },
443
+ 'headers': {
444
+ 'Content-Type': 'application/x-www-form-urlencoded'
445
+ },
446
+ },
447
+ 'paramsType': {
448
+ 'DataGuardId': 'String',
449
+ 'DataGuardName': 'String',
450
+ }
451
+ },
452
+ 'DescribeDataGuardCapacity': {
453
+ 'url': '/',
454
+ 'method': 'GET',
455
+ 'config': {
456
+ 'query': {
457
+ 'Version': '2016-03-04',
458
+ 'Action': 'DescribeDataGuardCapacity',
459
+ },
460
+ 'headers': {
461
+ 'Content-Type': 'application/x-www-form-urlencoded'
462
+ },
463
+ },
464
+ 'paramsType': {
465
+ }
466
+ },
467
+ 'CreateDataGuardGroup': {
468
+ 'url': '/',
469
+ 'method': 'GET',
470
+ 'config': {
471
+ 'query': {
472
+ 'Version': '2016-03-04',
473
+ 'Action': 'CreateDataGuardGroup',
474
+ },
475
+ 'headers': {
476
+ 'Content-Type': 'application/x-www-form-urlencoded'
477
+ },
478
+ },
479
+ 'paramsType': {
480
+ 'DataGuardName': 'String',
481
+ }
482
+ },
483
+ 'DeleteDataGuardGroups': {
484
+ 'url': '/',
485
+ 'method': 'GET',
486
+ 'config': {
487
+ 'query': {
488
+ 'Version': '2016-03-04',
489
+ 'Action': 'DeleteDataGuardGroups',
490
+ },
491
+ 'headers': {
492
+ 'Content-Type': 'application/x-www-form-urlencoded'
493
+ },
494
+ },
495
+ 'paramsType': {
496
+ 'DataGuardId': 'Filter',
497
+ }
498
+ },
499
+ 'DescribeDataGuardGroup': {
500
+ 'url': '/',
501
+ 'method': 'GET',
502
+ 'config': {
503
+ 'query': {
504
+ 'Version': '2016-03-04',
505
+ 'Action': 'DescribeDataGuardGroup',
506
+ },
507
+ 'headers': {
508
+ 'Content-Type': 'application/x-www-form-urlencoded'
509
+ },
510
+ },
511
+ 'paramsType': {
512
+ 'DataGuardId': 'String',
513
+ 'DataGuardName': 'String',
514
+ }
515
+ },
516
+ 'RemoveVmFromDataGuard': {
517
+ 'url': '/',
518
+ 'method': 'GET',
519
+ 'config': {
520
+ 'query': {
521
+ 'Version': '2016-03-04',
522
+ 'Action': 'RemoveVmFromDataGuard',
523
+ },
524
+ 'headers': {
525
+ 'Content-Type': 'application/x-www-form-urlencoded'
526
+ },
527
+ },
528
+ 'paramsType': {
529
+ 'DataGuardId': 'String',
530
+ 'InstanceId': 'Filter',
531
+ }
532
+ },
533
+ 'CreateDedicatedHosts': {
534
+ 'url': '/',
535
+ 'method': 'GET',
536
+ 'config': {
537
+ 'query': {
538
+ 'Version': '2016-03-04',
539
+ 'Action': 'CreateDedicatedHosts',
540
+ },
541
+ 'headers': {
542
+ 'Content-Type': 'application/x-www-form-urlencoded'
543
+ },
544
+ },
545
+ 'paramsType': {
546
+ 'DedicatedType': 'String',
547
+ 'Number': 'Int',
548
+ 'Name': 'String',
549
+ 'ChargeType': 'String',
550
+ 'PurchaseTime': 'Int',
551
+ 'InstanceNameSuffix': 'String',
552
+ 'DedicatedClusterId': 'String',
553
+ 'Tag': 'Filter',
554
+ }
555
+ },
556
+ 'RenameDedicatedHost': {
557
+ 'url': '/',
558
+ 'method': 'GET',
559
+ 'config': {
560
+ 'query': {
561
+ 'Version': '2016-03-04',
562
+ 'Action': 'RenameDedicatedHost',
563
+ },
564
+ 'headers': {
565
+ 'Content-Type': 'application/x-www-form-urlencoded'
566
+ },
567
+ },
568
+ 'paramsType': {
569
+ 'DedicatedHostId': 'String',
570
+ 'NewDedicatedHostName': 'String',
571
+ }
572
+ },
573
+ 'DescribeDedicatedHosts': {
574
+ 'url': '/',
575
+ 'method': 'GET',
576
+ 'config': {
577
+ 'query': {
578
+ 'Version': '2016-03-04',
579
+ 'Action': 'DescribeDedicatedHosts',
580
+ },
581
+ 'headers': {
582
+ 'Content-Type': 'application/x-www-form-urlencoded'
583
+ },
584
+ },
585
+ 'paramsType': {
586
+ 'DedicatedHostId': 'String',
587
+ 'search': 'String',
588
+ 'ProjectId': 'Filter',
589
+ }
590
+ },
591
+ 'DescribeScalingConfiguration': {
592
+ 'url': '/',
593
+ 'method': 'GET',
594
+ 'config': {
595
+ 'query': {
596
+ 'Version': '2016-03-04',
597
+ 'Action': 'DescribeScalingConfiguration',
598
+ },
599
+ 'headers': {
600
+ 'Content-Type': 'application/x-www-form-urlencoded'
601
+ },
602
+ },
603
+ 'paramsType': {
604
+ 'ScalingConfigurationName': 'String',
605
+ 'ScalingConfigurationId': 'Filter',
606
+ 'Marker': 'Int',
607
+ 'ProjectId': 'Filter',
608
+ 'MaxResults': 'Int',
609
+ }
610
+ },
611
+ 'CreateScalingConfiguration': {
612
+ 'url': '/',
613
+ 'method': 'GET',
614
+ 'config': {
615
+ 'query': {
616
+ 'Version': '2016-03-04',
617
+ 'Action': 'CreateScalingConfiguration',
618
+ },
619
+ 'headers': {
620
+ 'Content-Type': 'application/x-www-form-urlencoded'
621
+ },
622
+ },
623
+ 'paramsType': {
624
+ 'ScalingConfigurationName': 'String',
625
+ 'ImageId': 'String',
626
+ 'Password': 'String',
627
+ 'InstanceType': 'String',
628
+ 'ChargeType': 'String',
629
+ 'DataDiskGb': 'Int',
630
+ 'ProjectId': 'Int',
631
+ 'KeepImageLogin': 'Boolean',
632
+ 'KeyId': 'Filter',
633
+ 'DataDisk': 'Filter',
634
+ 'SystemDisk.DiskSize': 'String',
635
+ 'AddressBandWidth': 'Int',
636
+ 'BandWidthShareId': 'String',
637
+ 'LineId': 'String',
638
+ 'AddressProjectId': 'Int',
639
+ 'InstanceName': 'String',
640
+ 'InstanceNameSuffix': 'String',
641
+ 'UserData': 'String',
642
+ 'InstanceNameTimeSuffix': 'Boolean',
643
+ 'Tag': 'Filter',
644
+ 'SystemDisk.DiskType': 'String',
645
+ 'SystemDisk.ResizeType': 'String',
646
+ }
647
+ },
648
+ 'DeleteScalingConfiguration': {
649
+ 'url': '/',
650
+ 'method': 'GET',
651
+ 'config': {
652
+ 'query': {
653
+ 'Version': '2016-03-04',
654
+ 'Action': 'DeleteScalingConfiguration',
655
+ },
656
+ 'headers': {
657
+ 'Content-Type': 'application/x-www-form-urlencoded'
658
+ },
659
+ },
660
+ 'paramsType': {
661
+ 'ScalingConfigurationId': 'Filter',
662
+ }
663
+ },
664
+ 'CreateScalingGroup': {
665
+ 'url': '/',
666
+ 'method': 'GET',
667
+ 'config': {
668
+ 'query': {
669
+ 'Version': '2016-03-04',
670
+ 'Action': 'CreateScalingGroup',
671
+ },
672
+ 'headers': {
673
+ 'Content-Type': 'application/x-www-form-urlencoded'
674
+ },
675
+ },
676
+ 'paramsType': {
677
+ 'ScalingGroupName': 'String',
678
+ 'ScalingConfigurationId': 'String',
679
+ 'MinSize': 'String',
680
+ 'DesiredCapacity': 'Int',
681
+ 'RemovePolicy': 'String',
682
+ 'SubnetId': 'Filter',
683
+ 'SubnetStrategy': 'String',
684
+ 'SecurityGroupId': 'String',
685
+ 'Slb': 'Filter',
686
+ }
687
+ },
688
+ 'DescribeScalingGroup': {
689
+ 'url': '/',
690
+ 'method': 'GET',
691
+ 'config': {
692
+ 'query': {
693
+ 'Version': '2016-03-04',
694
+ 'Action': 'DescribeScalingGroup',
695
+ },
696
+ 'headers': {
697
+ 'Content-Type': 'application/x-www-form-urlencoded'
698
+ },
699
+ },
700
+ 'paramsType': {
701
+ 'ScalingGroupId': 'Filter',
702
+ 'ScalingGroupName': 'String',
703
+ 'ScalingConfigurationId': 'String',
704
+ 'VpcId': 'String',
705
+ 'Marker': 'Int',
706
+ 'MaxResults': 'Int',
707
+ 'ScalingActivityId': 'Filter',
708
+ }
709
+ },
710
+ 'ModifyScalingGroup': {
711
+ 'url': '/',
712
+ 'method': 'GET',
713
+ 'config': {
714
+ 'query': {
715
+ 'Version': '2016-03-04',
716
+ 'Action': 'ModifyScalingGroup',
717
+ },
718
+ 'headers': {
719
+ 'Content-Type': 'application/x-www-form-urlencoded'
720
+ },
721
+ },
722
+ 'paramsType': {
723
+ 'ScalingGroupId': 'String',
724
+ 'MinSize': 'Int',
725
+ 'MaxSize': 'Int',
726
+ 'DesiredCapacity': 'Int',
727
+ 'RemovePolicy': 'String',
728
+ 'ScalingGroupName': 'String',
729
+ 'ScalingConfigurationId': 'String',
730
+ 'SubnetId': 'Filter',
731
+ 'SubnetStrategy': 'String',
732
+ 'Slb': 'Filter',
733
+ 'ContainerSubnetId': 'Filter',
734
+ }
735
+ },
736
+ 'SetKvmProtectedDetach': {
737
+ 'url': '/',
738
+ 'method': 'GET',
739
+ 'config': {
740
+ 'query': {
741
+ 'Version': '2016-03-04',
742
+ 'Action': 'SetKvmProtectedDetach',
743
+ },
744
+ 'headers': {
745
+ 'Content-Type': 'application/x-www-form-urlencoded'
746
+ },
747
+ },
748
+ 'paramsType': {
749
+ 'ScalingGroupId': 'String',
750
+ 'ScalingInstanceId': 'Filter',
751
+ 'ProtectedFromDetach': 'Int',
752
+ }
753
+ },
754
+ 'DescribeScalingInstance': {
755
+ 'url': '/',
756
+ 'method': 'GET',
757
+ 'config': {
758
+ 'query': {
759
+ 'Version': '2016-03-04',
760
+ 'Action': 'DescribeScalingInstance',
761
+ },
762
+ 'headers': {
763
+ 'Content-Type': 'application/x-www-form-urlencoded'
764
+ },
765
+ },
766
+ 'paramsType': {
767
+ 'ScalingGroupId': 'String',
768
+ 'ScalingInstanceId': 'Filter',
769
+ 'CreationType': 'String',
770
+ 'HealthStatus': 'String',
771
+ 'Marker': 'Int',
772
+ 'MaxResults': 'Int',
773
+ }
774
+ },
775
+ 'AttachInstance': {
776
+ 'url': '/',
777
+ 'method': 'GET',
778
+ 'config': {
779
+ 'query': {
780
+ 'Version': '2016-03-04',
781
+ 'Action': 'AttachInstance',
782
+ },
783
+ 'headers': {
784
+ 'Content-Type': 'application/x-www-form-urlencoded'
785
+ },
786
+ },
787
+ 'paramsType': {
788
+ 'ScalingGroupId': 'String',
789
+ 'ScalingInstanceId': 'Filter',
790
+ }
791
+ },
792
+ 'DetachInstance': {
793
+ 'url': '/',
794
+ 'method': 'GET',
795
+ 'config': {
796
+ 'query': {
797
+ 'Version': '2016-03-04',
798
+ 'Action': 'DetachInstance',
799
+ },
800
+ 'headers': {
801
+ 'Content-Type': 'application/x-www-form-urlencoded'
802
+ },
803
+ },
804
+ 'paramsType': {
805
+ 'ScalingGroupId': 'String',
806
+ 'ScalingInstanceId': 'Filter',
807
+ }
808
+ },
809
+ 'DescribeScalingActivity': {
810
+ 'url': '/',
811
+ 'method': 'GET',
812
+ 'config': {
813
+ 'query': {
814
+ 'Version': '2016-03-04',
815
+ 'Action': 'DescribeScalingActivity',
816
+ },
817
+ 'headers': {
818
+ 'Content-Type': 'application/x-www-form-urlencoded'
819
+ },
820
+ },
821
+ 'paramsType': {
822
+ 'ScalingGroupId': 'String',
823
+ 'ScalingActivityId': 'Filter',
824
+ 'Marker': 'Int',
825
+ 'MaxResults': 'Int',
826
+ 'StartTime': 'String',
827
+ 'EndTime': 'String',
828
+ }
829
+ },
830
+ 'DeleteScalingGroup': {
831
+ 'url': '/',
832
+ 'method': 'GET',
833
+ 'config': {
834
+ 'query': {
835
+ 'Version': '2016-03-04',
836
+ 'Action': 'DeleteScalingGroup',
837
+ },
838
+ 'headers': {
839
+ 'Content-Type': 'application/x-www-form-urlencoded'
840
+ },
841
+ },
842
+ 'paramsType': {
843
+ 'ScalingGroupId': 'String',
844
+ }
845
+ },
846
+ 'DisableScalingGroup': {
847
+ 'url': '/',
848
+ 'method': 'GET',
849
+ 'config': {
850
+ 'query': {
851
+ 'Version': '2016-03-04',
852
+ 'Action': 'DisableScalingGroup',
853
+ },
854
+ 'headers': {
855
+ 'Content-Type': 'application/x-www-form-urlencoded'
856
+ },
857
+ },
858
+ 'paramsType': {
859
+ 'ScalingGroupId': 'String',
860
+ }
861
+ },
862
+ 'EnableScalingGroup': {
863
+ 'url': '/',
864
+ 'method': 'GET',
865
+ 'config': {
866
+ 'query': {
867
+ 'Version': '2016-03-04',
868
+ 'Action': 'EnableScalingGroup',
869
+ },
870
+ 'headers': {
871
+ 'Content-Type': 'application/x-www-form-urlencoded'
872
+ },
873
+ },
874
+ 'paramsType': {
875
+ 'ScalingGroupId': 'String',
876
+ }
877
+ },
878
+ 'DescribeScalingNotification': {
879
+ 'url': '/',
880
+ 'method': 'GET',
881
+ 'config': {
882
+ 'query': {
883
+ 'Version': '2016-03-04',
884
+ 'Action': 'DescribeScalingNotification',
885
+ },
886
+ 'headers': {
887
+ 'Content-Type': 'application/x-www-form-urlencoded'
888
+ },
889
+ },
890
+ 'paramsType': {
891
+ 'ScalingGroupId': 'String',
892
+ 'ScalingNotificationId': 'Filter',
893
+ 'Marker': 'Int',
894
+ 'MaxResults': 'Int',
895
+ }
896
+ },
897
+ 'CreateScalingNotification': {
898
+ 'url': '/',
899
+ 'method': 'GET',
900
+ 'config': {
901
+ 'query': {
902
+ 'Version': '2016-03-04',
903
+ 'Action': 'CreateScalingNotification',
904
+ },
905
+ 'headers': {
906
+ 'Content-Type': 'application/x-www-form-urlencoded'
907
+ },
908
+ },
909
+ 'paramsType': {
910
+ 'ScalingNotificationType': 'Filter',
911
+ 'ScalingGroupId': 'String',
912
+ 'Description': 'String',
913
+ }
914
+ },
915
+ 'ModifyScalingNotification': {
916
+ 'url': '/',
917
+ 'method': 'GET',
918
+ 'config': {
919
+ 'query': {
920
+ 'Version': '2016-03-04',
921
+ 'Action': 'ModifyScalingNotification',
922
+ },
923
+ 'headers': {
924
+ 'Content-Type': 'application/x-www-form-urlencoded'
925
+ },
926
+ },
927
+ 'paramsType': {
928
+ 'ScalingGroupId': 'String',
929
+ 'ScalingNotificationId': 'Int',
930
+ 'NotificationType': 'Filter',
931
+ }
932
+ },
933
+ 'CreateScheduledTask': {
934
+ 'url': '/',
935
+ 'method': 'GET',
936
+ 'config': {
937
+ 'query': {
938
+ 'Version': '2016-03-04',
939
+ 'Action': 'CreateScheduledTask',
940
+ },
941
+ 'headers': {
942
+ 'Content-Type': 'application/x-www-form-urlencoded'
943
+ },
944
+ },
945
+ 'paramsType': {
946
+ 'ScalingGroupId': 'String',
947
+ 'ScalingScheduledTaskName': 'String',
948
+ 'ReadjustMinSize': 'Int',
949
+ 'ReadjustMaxSize': 'Int',
950
+ 'ReadjustExpectSize': 'Int',
951
+ 'StartTime': 'String',
952
+ 'EndTime': 'String',
953
+ 'Recurrence': 'String',
954
+ 'RepeatUnit': 'String',
955
+ 'RepeatCycle': 'String',
956
+ }
957
+ },
958
+ 'DescribeScheduledTask': {
959
+ 'url': '/',
960
+ 'method': 'GET',
961
+ 'config': {
962
+ 'query': {
963
+ 'Version': '2016-03-04',
964
+ 'Action': 'DescribeScheduledTask',
965
+ },
966
+ 'headers': {
967
+ 'Content-Type': 'application/x-www-form-urlencoded'
968
+ },
969
+ },
970
+ 'paramsType': {
971
+ 'ScalingGroupId': 'String',
972
+ 'ScalingScheduledTaskId': 'Filter',
973
+ 'ScalingScheduledTaskName': 'String',
974
+ 'Marker': 'Int',
975
+ 'MaxResults': 'Int',
976
+ }
977
+ },
978
+ 'ModifyScheduledTask': {
979
+ 'url': '/',
980
+ 'method': 'GET',
981
+ 'config': {
982
+ 'query': {
983
+ 'Version': '2016-03-04',
984
+ 'Action': 'ModifyScheduledTask',
985
+ },
986
+ 'headers': {
987
+ 'Content-Type': 'application/x-www-form-urlencoded'
988
+ },
989
+ },
990
+ 'paramsType': {
991
+ }
992
+ },
993
+ 'DeleteScheduledTask': {
994
+ 'url': '/',
995
+ 'method': 'GET',
996
+ 'config': {
997
+ 'query': {
998
+ 'Version': '2016-03-04',
999
+ 'Action': 'DeleteScheduledTask',
1000
+ },
1001
+ 'headers': {
1002
+ 'Content-Type': 'application/x-www-form-urlencoded'
1003
+ },
1004
+ },
1005
+ 'paramsType': {
1006
+ 'ScalingScheduledTaskId': 'String',
1007
+ 'ScalingGroupId': 'String',
1008
+ }
1009
+ },
1010
+ 'CreateScalingPolicy': {
1011
+ 'url': '/',
1012
+ 'method': 'GET',
1013
+ 'config': {
1014
+ 'query': {
1015
+ 'Version': '2016-03-04',
1016
+ 'Action': 'CreateScalingPolicy',
1017
+ },
1018
+ 'headers': {
1019
+ 'Content-Type': 'application/x-www-form-urlencoded'
1020
+ },
1021
+ },
1022
+ 'paramsType': {
1023
+ 'ScalingGroupId': 'String',
1024
+ 'ScalingPolicyName': 'String',
1025
+ 'Metric': 'String',
1026
+ 'AdjustmentType': 'String',
1027
+ 'AdjustmentValue': 'Int',
1028
+ 'CoolDown': 'Int',
1029
+ }
1030
+ },
1031
+ 'DescribeScalingPolicy': {
1032
+ 'url': '/',
1033
+ 'method': 'GET',
1034
+ 'config': {
1035
+ 'query': {
1036
+ 'Version': '2016-03-04',
1037
+ 'Action': 'DescribeScalingPolicy',
1038
+ },
1039
+ 'headers': {
1040
+ 'Content-Type': 'application/x-www-form-urlencoded'
1041
+ },
1042
+ },
1043
+ 'paramsType': {
1044
+ 'ScalingGroupId': 'String',
1045
+ 'ScalingPolicyId': 'Filter',
1046
+ 'ScalingPolicyName': 'String',
1047
+ 'Marker': 'Int',
1048
+ 'MaxResults': 'Int',
1049
+ }
1050
+ },
1051
+ 'ModifyScalingPolicy': {
1052
+ 'url': '/',
1053
+ 'method': 'GET',
1054
+ 'config': {
1055
+ 'query': {
1056
+ 'Version': '2016-03-04',
1057
+ 'Action': 'ModifyScalingPolicy',
1058
+ },
1059
+ 'headers': {
1060
+ 'Content-Type': 'application/x-www-form-urlencoded'
1061
+ },
1062
+ },
1063
+ 'paramsType': {
1064
+ 'ScalingPolicyId': 'String',
1065
+ 'ScalingGroupId': 'String',
1066
+ 'ScalingPolicyName': 'String',
1067
+ 'Metric': 'String',
1068
+ 'AdjustmentType': 'String',
1069
+ 'AdjustmentValue': 'Int',
1070
+ 'CoolDown': 'Int',
1071
+ }
1072
+ },
1073
+ 'DeleteScalingPolicy': {
1074
+ 'url': '/',
1075
+ 'method': 'GET',
1076
+ 'config': {
1077
+ 'query': {
1078
+ 'Version': '2016-03-04',
1079
+ 'Action': 'DeleteScalingPolicy',
1080
+ },
1081
+ 'headers': {
1082
+ 'Content-Type': 'application/x-www-form-urlencoded'
1083
+ },
1084
+ },
1085
+ 'paramsType': {
1086
+ 'ScalingGroupId': 'String',
1087
+ 'ScalingPolicyId': 'String',
1088
+ }
1089
+ },
1090
+ 'ImportImage': {
1091
+ 'url': '/',
1092
+ 'method': 'GET',
1093
+ 'config': {
1094
+ 'query': {
1095
+ 'Version': '2016-03-04',
1096
+ 'Action': 'ImportImage',
1097
+ },
1098
+ 'headers': {
1099
+ 'Content-Type': 'application/x-www-form-urlencoded'
1100
+ },
1101
+ },
1102
+ 'paramsType': {
1103
+ 'ImageName': 'String',
1104
+ 'Architecture': 'String',
1105
+ 'Platform': 'String',
1106
+ 'ImageUrl': 'String',
1107
+ 'ImageFormat': 'String',
1108
+ 'DataImageUrl': 'Filter',
1109
+ 'DataImageSize': 'Filter',
1110
+ 'DataImageFormat': 'Filter',
1111
+ }
1112
+ },
1113
+ 'CopyImage': {
1114
+ 'url': '/',
1115
+ 'method': 'GET',
1116
+ 'config': {
1117
+ 'query': {
1118
+ 'Version': '2016-03-04',
1119
+ 'Action': 'CopyImage',
1120
+ },
1121
+ 'headers': {
1122
+ 'Content-Type': 'application/x-www-form-urlencoded'
1123
+ },
1124
+ },
1125
+ 'paramsType': {
1126
+ 'ImageId': 'Filter',
1127
+ 'DestinationRegion': 'Filter',
1128
+ 'DestinationImageName': 'String',
1129
+ }
1130
+ },
1131
+ 'ModifyImageSharePermission': {
1132
+ 'url': '/',
1133
+ 'method': 'GET',
1134
+ 'config': {
1135
+ 'query': {
1136
+ 'Version': '2016-03-04',
1137
+ 'Action': 'ModifyImageSharePermission',
1138
+ },
1139
+ 'headers': {
1140
+ 'Content-Type': 'application/x-www-form-urlencoded'
1141
+ },
1142
+ },
1143
+ 'paramsType': {
1144
+ 'ImageId': 'String',
1145
+ 'AccountId': 'Filter',
1146
+ 'Permission': 'String',
1147
+ }
1148
+ },
1149
+ 'DescribeImageSharePermission': {
1150
+ 'url': '/',
1151
+ 'method': 'GET',
1152
+ 'config': {
1153
+ 'query': {
1154
+ 'Version': '2016-03-04',
1155
+ 'Action': 'DescribeImageSharePermission',
1156
+ },
1157
+ 'headers': {
1158
+ 'Content-Type': 'application/x-www-form-urlencoded'
1159
+ },
1160
+ },
1161
+ 'paramsType': {
1162
+ 'ImageId': 'String',
1163
+ }
1164
+ },
1165
+ 'DescribeRegions': {
1166
+ 'url': '/',
1167
+ 'method': 'GET',
1168
+ 'config': {
1169
+ 'query': {
1170
+ 'Version': '2016-03-04',
1171
+ 'Action': 'DescribeRegions',
1172
+ },
1173
+ 'headers': {
1174
+ 'Content-Type': 'application/x-www-form-urlencoded'
1175
+ },
1176
+ },
1177
+ 'paramsType': {
1178
+ }
1179
+ },
1180
+ 'AttachKey': {
1181
+ 'url': '/',
1182
+ 'method': 'GET',
1183
+ 'config': {
1184
+ 'query': {
1185
+ 'Version': '2016-03-04',
1186
+ 'Action': 'AttachKey',
1187
+ },
1188
+ 'headers': {
1189
+ 'Content-Type': 'application/x-www-form-urlencoded'
1190
+ },
1191
+ },
1192
+ 'paramsType': {
1193
+ 'Action': 'String',
1194
+ 'InstanceId': 'Filter',
1195
+ 'KeyId': 'Filter',
1196
+ }
1197
+ },
1198
+ 'DetachKey': {
1199
+ 'url': '/',
1200
+ 'method': 'GET',
1201
+ 'config': {
1202
+ 'query': {
1203
+ 'Version': '2016-03-04',
1204
+ 'Action': 'DetachKey',
1205
+ },
1206
+ 'headers': {
1207
+ 'Content-Type': 'application/x-www-form-urlencoded'
1208
+ },
1209
+ },
1210
+ 'paramsType': {
1211
+ 'Action': 'String',
1212
+ 'InstanceId': 'Filter',
1213
+ 'KeyId': 'Filter',
1214
+ }
1215
+ },
1216
+ 'DescribeAvailabilityZones': {
1217
+ 'url': '/',
1218
+ 'method': 'GET',
1219
+ 'config': {
1220
+ 'query': {
1221
+ 'Version': '2016-03-04',
1222
+ 'Action': 'DescribeAvailabilityZones',
1223
+ },
1224
+ 'headers': {
1225
+ 'Content-Type': 'application/x-www-form-urlencoded'
1226
+ },
1227
+ },
1228
+ 'paramsType': {
1229
+ }
1230
+ },
1231
+ 'DescribeInstanceTypeConfigs': {
1232
+ 'url': '/',
1233
+ 'method': 'GET',
1234
+ 'config': {
1235
+ 'query': {
1236
+ 'Version': '2016-03-04',
1237
+ 'Action': 'DescribeInstanceTypeConfigs',
1238
+ },
1239
+ 'headers': {
1240
+ 'Content-Type': 'application/x-www-form-urlencoded'
1241
+ },
1242
+ },
1243
+ 'paramsType': {
1244
+ }
1245
+ },
1246
+ 'DescribeInstanceFamilys': {
1247
+ 'url': '/',
1248
+ 'method': 'GET',
1249
+ 'config': {
1250
+ 'query': {
1251
+ 'Version': '2016-03-04',
1252
+ 'Action': 'DescribeInstanceFamilys',
1253
+ },
1254
+ 'headers': {
1255
+ 'Content-Type': 'application/x-www-form-urlencoded'
1256
+ },
1257
+ },
1258
+ 'paramsType': {
1259
+ }
1260
+ },
1261
+ 'AddVmIntoDataGuard': {
1262
+ 'url': '/',
1263
+ 'method': 'GET',
1264
+ 'config': {
1265
+ 'query': {
1266
+ 'Version': '2016-03-04',
1267
+ 'Action': 'AddVmIntoDataGuard',
1268
+ },
1269
+ 'headers': {
1270
+ 'Content-Type': 'application/x-www-form-urlencoded'
1271
+ },
1272
+ },
1273
+ 'paramsType': {
1274
+ 'DataGuardId': 'String',
1275
+ 'InstanceId': 'Filter',
1276
+ }
1277
+ },
1278
+ 'CreateFileSystem': {
1279
+ 'url': '/',
1280
+ 'method': 'GET',
1281
+ 'config': {
1282
+ 'query': {
1283
+ 'Version': '2016-03-04',
1284
+ 'Action': 'CreateFileSystem',
1285
+ },
1286
+ 'headers': {
1287
+ 'Content-Type': 'application/x-www-form-urlencoded'
1288
+ },
1289
+ },
1290
+ 'paramsType': {
1291
+ 'AvailabilityZone': 'String',
1292
+ 'VpcId': 'String',
1293
+ 'StorageType': 'String',
1294
+ 'ProtocolType': 'String',
1295
+ 'FileSystemName': 'String',
1296
+ }
1297
+ },
1298
+ 'DeleteFileSystem': {
1299
+ 'url': '/',
1300
+ 'method': 'GET',
1301
+ 'config': {
1302
+ 'query': {
1303
+ 'Version': '2016-03-04',
1304
+ 'Action': 'DeleteFileSystem',
1305
+ },
1306
+ 'headers': {
1307
+ 'Content-Type': 'application/x-www-form-urlencoded'
1308
+ },
1309
+ },
1310
+ 'paramsType': {
1311
+ 'FileSystemId': 'String',
1312
+ }
1313
+ },
1314
+ 'DescribeFileSystems': {
1315
+ 'url': '/',
1316
+ 'method': 'GET',
1317
+ 'config': {
1318
+ 'query': {
1319
+ 'Version': '2016-03-04',
1320
+ 'Action': 'DescribeFileSystems',
1321
+ },
1322
+ 'headers': {
1323
+ 'Content-Type': 'application/x-www-form-urlencoded'
1324
+ },
1325
+ },
1326
+ 'paramsType': {
1327
+ 'FileSystemId': 'String',
1328
+ 'MaxResults': 'Int',
1329
+ 'Marker': 'Int',
1330
+ }
1331
+ },
1332
+ 'ModifyFileSystem': {
1333
+ 'url': '/',
1334
+ 'method': 'GET',
1335
+ 'config': {
1336
+ 'query': {
1337
+ 'Version': '2016-03-04',
1338
+ 'Action': 'ModifyFileSystem',
1339
+ },
1340
+ 'headers': {
1341
+ 'Content-Type': 'application/x-www-form-urlencoded'
1342
+ },
1343
+ },
1344
+ 'paramsType': {
1345
+ 'FileSystemId': 'String',
1346
+ 'FileSystemName': 'String',
1347
+ }
1348
+ },
1349
+ 'CreateMountTarget': {
1350
+ 'url': '/',
1351
+ 'method': 'GET',
1352
+ 'config': {
1353
+ 'query': {
1354
+ 'Version': '2016-03-04',
1355
+ 'Action': 'CreateMountTarget',
1356
+ },
1357
+ 'headers': {
1358
+ 'Content-Type': 'application/x-www-form-urlencoded'
1359
+ },
1360
+ },
1361
+ 'paramsType': {
1362
+ 'FileSystemId': 'String',
1363
+ 'SubnetId': 'String',
1364
+ 'IpVersion': 'String',
1365
+ }
1366
+ },
1367
+ 'DeleteMountTarget': {
1368
+ 'url': '/',
1369
+ 'method': 'GET',
1370
+ 'config': {
1371
+ 'query': {
1372
+ 'Version': '2016-03-04',
1373
+ 'Action': 'DeleteMountTarget',
1374
+ },
1375
+ 'headers': {
1376
+ 'Content-Type': 'application/x-www-form-urlencoded'
1377
+ },
1378
+ },
1379
+ 'paramsType': {
1380
+ 'MountTargetId': 'String',
1381
+ }
1382
+ },
1383
+ 'DescribeMountTargets': {
1384
+ 'url': '/',
1385
+ 'method': 'GET',
1386
+ 'config': {
1387
+ 'query': {
1388
+ 'Version': '2016-03-04',
1389
+ 'Action': 'DescribeMountTargets',
1390
+ },
1391
+ 'headers': {
1392
+ 'Content-Type': 'application/x-www-form-urlencoded'
1393
+ },
1394
+ },
1395
+ 'paramsType': {
1396
+ 'FileSystemId': 'String',
1397
+ 'MountTargetId': 'String',
1398
+ 'MaxResults': 'Int',
1399
+ 'Marker': 'Int',
1400
+ }
1401
+ },
1402
+ 'CreateModel': {
1403
+ 'url': '/',
1404
+ 'method': 'GET',
1405
+ 'config': {
1406
+ 'query': {
1407
+ 'Version': '2016-03-04',
1408
+ 'Action': 'CreateModel',
1409
+ },
1410
+ 'headers': {
1411
+ 'Content-Type': 'application/x-www-form-urlencoded'
1412
+ },
1413
+ },
1414
+ 'paramsType': {
1415
+ 'ImageId': 'String',
1416
+ 'InstanceType': 'String',
1417
+ 'SystemDisk.DiskSize': 'String',
1418
+ 'DataDiskGb': 'Int',
1419
+ 'SubnetId': 'String',
1420
+ 'DataDisk': 'Filter',
1421
+ 'KeepImageLogin': 'Boolean',
1422
+ 'KeyId': 'String',
1423
+ 'ChargeType': 'String',
1424
+ 'PurchaseTime': 'Int',
1425
+ 'SecurityGroupId': 'String',
1426
+ 'PrivateIpAddress': 'String',
1427
+ 'InstanceName': 'String',
1428
+ 'InstanceNameSuffix': 'String',
1429
+ 'SriovNetSupport': 'String',
1430
+ 'ProjectId': 'Int',
1431
+ 'DataGuardId': 'String',
1432
+ 'AddressBandWidth': 'Int',
1433
+ 'LineId': 'String',
1434
+ 'AddressChargeType': 'String',
1435
+ 'AddressPurchaseTime': 'Int',
1436
+ 'AddressProjectId': 'String',
1437
+ 'ModelName': 'String',
1438
+ 'SystemDisk.DiskType': 'String',
1439
+ 'SystemDisk.ResizeType': 'String',
1440
+ }
1441
+ },
1442
+ 'TerminateModels': {
1443
+ 'url': '/',
1444
+ 'method': 'GET',
1445
+ 'config': {
1446
+ 'query': {
1447
+ 'Version': '2016-03-04',
1448
+ 'Action': 'TerminateModels',
1449
+ },
1450
+ 'headers': {
1451
+ 'Content-Type': 'application/x-www-form-urlencoded'
1452
+ },
1453
+ },
1454
+ 'paramsType': {
1455
+ 'ModelId': 'Filter',
1456
+ }
1457
+ },
1458
+ 'DescribeModels': {
1459
+ 'url': '/',
1460
+ 'method': 'GET',
1461
+ 'config': {
1462
+ 'query': {
1463
+ 'Version': '2016-03-04',
1464
+ 'Action': 'DescribeModels',
1465
+ },
1466
+ 'headers': {
1467
+ 'Content-Type': 'application/x-www-form-urlencoded'
1468
+ },
1469
+ },
1470
+ 'paramsType': {
1471
+ 'ModelId': 'Filter',
1472
+ 'MaxResults': 'Int',
1473
+ 'Marker': 'Int',
1474
+ }
1475
+ },
1476
+ 'DescribeDedicatedCluster': {
1477
+ 'url': '/',
1478
+ 'method': 'GET',
1479
+ 'config': {
1480
+ 'query': {
1481
+ 'Version': '2016-03-04',
1482
+ 'Action': 'DescribeDedicatedCluster',
1483
+ },
1484
+ 'headers': {
1485
+ 'Content-Type': 'application/x-www-form-urlencoded'
1486
+ },
1487
+ },
1488
+ 'paramsType': {
1489
+ 'DedicatedClusterId': 'Filter',
1490
+ }
1491
+ },
1492
+ 'CreateDedicatedCluster': {
1493
+ 'url': '/',
1494
+ 'method': 'GET',
1495
+ 'config': {
1496
+ 'query': {
1497
+ 'Version': '2016-03-04',
1498
+ 'Action': 'CreateDedicatedCluster',
1499
+ },
1500
+ 'headers': {
1501
+ 'Content-Type': 'application/x-www-form-urlencoded'
1502
+ },
1503
+ },
1504
+ 'paramsType': {
1505
+ 'DedicatedClusterName': 'String',
1506
+ 'Model': 'String',
1507
+ 'AvailabilityZone': 'String',
1508
+ }
1509
+ },
1510
+ 'DeleteDedicatedCluster': {
1511
+ 'url': '/',
1512
+ 'method': 'GET',
1513
+ 'config': {
1514
+ 'query': {
1515
+ 'Version': '2016-03-04',
1516
+ 'Action': 'DeleteDedicatedCluster',
1517
+ },
1518
+ 'headers': {
1519
+ 'Content-Type': 'application/x-www-form-urlencoded'
1520
+ },
1521
+ },
1522
+ 'paramsType': {
1523
+ 'DedicatedClusterId': 'Filter',
1524
+ }
1525
+ },
1526
+ 'SetvCPU': {
1527
+ 'url': '/',
1528
+ 'method': 'GET',
1529
+ 'config': {
1530
+ 'query': {
1531
+ 'Version': '2016-03-04',
1532
+ 'Action': 'SetvCPU',
1533
+ },
1534
+ 'headers': {
1535
+ 'Content-Type': 'application/x-www-form-urlencoded'
1536
+ },
1537
+ },
1538
+ 'paramsType': {
1539
+ 'DedicatedHostId': 'Filter',
1540
+ 'VCPU': 'Int',
1541
+ }
1542
+ },
1543
+ 'DedicatedHostMigrate': {
1544
+ 'url': '/',
1545
+ 'method': 'GET',
1546
+ 'config': {
1547
+ 'query': {
1548
+ 'Version': '2016-03-04',
1549
+ 'Action': 'DedicatedHostMigrate',
1550
+ },
1551
+ 'headers': {
1552
+ 'Content-Type': 'application/x-www-form-urlencoded'
1553
+ },
1554
+ },
1555
+ 'paramsType': {
1556
+ 'DedicatedClusterId': 'String',
1557
+ 'DedicatedHostId': 'Filter',
1558
+ }
1559
+ },
1560
+ 'ModifyDedicatedClusterName': {
1561
+ 'url': '/',
1562
+ 'method': 'GET',
1563
+ 'config': {
1564
+ 'query': {
1565
+ 'Version': '2016-03-04',
1566
+ 'Action': 'ModifyDedicatedClusterName',
1567
+ },
1568
+ 'headers': {
1569
+ 'Content-Type': 'application/x-www-form-urlencoded'
1570
+ },
1571
+ },
1572
+ 'paramsType': {
1573
+ 'DedicatedClusterId': 'String',
1574
+ 'DedicatedClusterName': 'String',
1575
+ }
1576
+ },
1577
+ 'ModifyInstanceAutoDeleteTime': {
1578
+ 'url': '/',
1579
+ 'method': 'GET',
1580
+ 'config': {
1581
+ 'query': {
1582
+ 'Version': '2016-03-04',
1583
+ 'Action': 'ModifyInstanceAutoDeleteTime',
1584
+ },
1585
+ 'headers': {
1586
+ 'Content-Type': 'application/x-www-form-urlencoded'
1587
+ },
1588
+ },
1589
+ 'paramsType': {
1590
+ 'InstanceId': 'Filter',
1591
+ 'AutoDeleteTime': 'String',
1592
+ 'AutoDeleteEip': 'Boolean',
1593
+ }
1594
+ },
1595
+ 'ModifyScalingConfiguration': {
1596
+ 'url': '/',
1597
+ 'method': 'GET',
1598
+ 'config': {
1599
+ 'query': {
1600
+ 'Version': '2016-03-04',
1601
+ 'Action': 'ModifyScalingConfiguration',
1602
+ },
1603
+ 'headers': {
1604
+ 'Content-Type': 'application/x-www-form-urlencoded'
1605
+ },
1606
+ },
1607
+ 'paramsType': {
1608
+ 'ScalingConfigurationId': 'String',
1609
+ 'ScalingConfigurationName': 'String',
1610
+ 'ImageId': 'String',
1611
+ 'Password': 'String',
1612
+ 'InstanceType': 'String',
1613
+ 'ChargeType': 'String',
1614
+ 'DataDiskGb': 'Int',
1615
+ 'ProjectId': 'Int',
1616
+ 'KeepImageLogin': 'Boolean',
1617
+ 'KeyId': 'Filter',
1618
+ 'DataDisk': 'Filter',
1619
+ 'SystemDisk.DiskSize': 'Int',
1620
+ 'AddressBandWidth': 'Int',
1621
+ 'BandWidthShareId': 'String',
1622
+ 'LineId': 'String',
1623
+ 'AddressProjectId': 'Int',
1624
+ 'InstanceName': 'String',
1625
+ 'InstanceNameSuffix': 'String',
1626
+ 'UserData': 'String',
1627
+ 'InstanceNameTimeSuffix': 'Boolean',
1628
+ 'Tag': 'Filter',
1629
+ 'LoginSetAfter': 'Boolean',
1630
+ 'IpBindAfter': 'Boolean',
1631
+ 'InstanceNameRandom': 'Boolean',
1632
+ 'SystemDisk.DiskType': 'String',
1633
+ 'SystemDisk.ResizeType': 'String',
1634
+ }
1635
+ },
1636
+ 'DescribeSpotPriceHistory': {
1637
+ 'url': '/',
1638
+ 'method': 'GET',
1639
+ 'config': {
1640
+ 'query': {
1641
+ 'Version': '2016-03-04',
1642
+ 'Action': 'DescribeSpotPriceHistory',
1643
+ },
1644
+ 'headers': {
1645
+ 'Content-Type': 'application/x-www-form-urlencoded'
1646
+ },
1647
+ },
1648
+ 'paramsType': {
1649
+ 'InstanceType': 'String',
1650
+ 'AvailabilityZone': 'String',
1651
+ 'StartTime': 'String',
1652
+ 'EndTime': 'String',
1653
+ }
1654
+ },
1655
+ 'DescribePrice': {
1656
+ 'url': '/',
1657
+ 'method': 'GET',
1658
+ 'config': {
1659
+ 'query': {
1660
+ 'Version': '2016-03-04',
1661
+ 'Action': 'DescribePrice',
1662
+ },
1663
+ 'headers': {
1664
+ 'Content-Type': 'application/x-www-form-urlencoded'
1665
+ },
1666
+ },
1667
+ 'paramsType': {
1668
+ 'InstanceType': 'String',
1669
+ 'SystemDisk.DiskSize': 'String',
1670
+ 'ImageId': 'String',
1671
+ 'ChargeType': 'String',
1672
+ 'PurchaseTime': 'Int',
1673
+ 'DataDiskGb': 'Int',
1674
+ 'DataDisk': 'Filter',
1675
+ 'MaxCount': 'Int',
1676
+ 'SystemDisk.DiskType': 'String',
1677
+ }
1678
+ },
1679
+ 'EnableImageCaching': {
1680
+ 'url': '/',
1681
+ 'method': 'GET',
1682
+ 'config': {
1683
+ 'query': {
1684
+ 'Version': '2016-03-04',
1685
+ 'Action': 'EnableImageCaching',
1686
+ },
1687
+ 'headers': {
1688
+ 'Content-Type': 'application/x-www-form-urlencoded'
1689
+ },
1690
+ },
1691
+ 'paramsType': {
1692
+ 'ImageId': 'Filter',
1693
+ }
1694
+ },
1695
+ 'DisableImageCaching': {
1696
+ 'url': '/',
1697
+ 'method': 'GET',
1698
+ 'config': {
1699
+ 'query': {
1700
+ 'Version': '2016-03-04',
1701
+ 'Action': 'DisableImageCaching',
1702
+ },
1703
+ 'headers': {
1704
+ 'Content-Type': 'application/x-www-form-urlencoded'
1705
+ },
1706
+ },
1707
+ 'paramsType': {
1708
+ 'ImageId': 'Filter',
1709
+ }
1710
+ },
1711
+ 'ModifyLoadBalancers': {
1712
+ 'url': '/',
1713
+ 'method': 'GET',
1714
+ 'config': {
1715
+ 'query': {
1716
+ 'Version': '2016-03-04',
1717
+ 'Action': 'ModifyLoadBalancers',
1718
+ },
1719
+ 'headers': {
1720
+ 'Content-Type': 'application/x-www-form-urlencoded'
1721
+ },
1722
+ },
1723
+ 'paramsType': {
1724
+ 'ScalingGroupId': 'String',
1725
+ }
1726
+ },
1727
+ 'AttachInstancesIamRole': {
1728
+ 'url': '/',
1729
+ 'method': 'GET',
1730
+ 'config': {
1731
+ 'query': {
1732
+ 'Version': '2016-03-04',
1733
+ 'Action': 'AttachInstancesIamRole',
1734
+ },
1735
+ 'headers': {
1736
+ 'Content-Type': 'application/x-www-form-urlencoded'
1737
+ },
1738
+ },
1739
+ 'paramsType': {
1740
+ 'InstanceId': 'Filter',
1741
+ 'IamRoleName': 'String',
1742
+ }
1743
+ },
1744
+ 'DetachInstancesIamRole': {
1745
+ 'url': '/',
1746
+ 'method': 'GET',
1747
+ 'config': {
1748
+ 'query': {
1749
+ 'Version': '2016-03-04',
1750
+ 'Action': 'DetachInstancesIamRole',
1751
+ },
1752
+ 'headers': {
1753
+ 'Content-Type': 'application/x-www-form-urlencoded'
1754
+ },
1755
+ },
1756
+ 'paramsType': {
1757
+ 'InstanceId': 'Filter',
1758
+ }
1759
+ },
1760
+ 'PreMigrateInstance': {
1761
+ 'url': '/',
1762
+ 'method': 'GET',
1763
+ 'config': {
1764
+ 'query': {
1765
+ 'Version': '2016-03-04',
1766
+ 'Action': 'PreMigrateInstance',
1767
+ },
1768
+ 'headers': {
1769
+ 'Content-Type': 'application/x-www-form-urlencoded'
1770
+ },
1771
+ },
1772
+ 'paramsType': {
1773
+ 'InstanceId': 'String',
1774
+ 'InstanceType': 'String',
1775
+ 'SystemDiskType': 'String',
1776
+ 'DataDiskType': 'String',
1777
+ }
1778
+ },
1779
+ 'CancelPreMigrateInstance': {
1780
+ 'url': '/',
1781
+ 'method': 'GET',
1782
+ 'config': {
1783
+ 'query': {
1784
+ 'Version': '2016-03-04',
1785
+ 'Action': 'CancelPreMigrateInstance',
1786
+ },
1787
+ 'headers': {
1788
+ 'Content-Type': 'application/x-www-form-urlencoded'
1789
+ },
1790
+ },
1791
+ 'paramsType': {
1792
+ 'InstanceId': 'String',
1793
+ }
1794
+ },
1795
+ 'DescribeInstanceKmr': {
1796
+ 'url': '/',
1797
+ 'method': 'GET',
1798
+ 'config': {
1799
+ 'query': {
1800
+ 'Version': '2016-03-04',
1801
+ 'Action': 'DescribeInstanceKmr',
1802
+ },
1803
+ 'headers': {
1804
+ 'Content-Type': 'application/json'
1805
+ },
1806
+ },
1807
+ 'paramsType': {
1808
+ }
1809
+ },
1810
+ 'DescribeMinFlavorCount': {
1811
+ 'url': '/',
1812
+ 'method': 'GET',
1813
+ 'config': {
1814
+ 'query': {
1815
+ 'Version': '2016-03-04',
1816
+ 'Action': 'DescribeMinFlavorCount',
1817
+ },
1818
+ 'headers': {
1819
+ 'Content-Type': 'application/json'
1820
+ },
1821
+ },
1822
+ 'paramsType': {
1823
+ }
1824
+ },
1825
+ 'DescribeProjectMaxNum': {
1826
+ 'url': '/',
1827
+ 'method': 'GET',
1828
+ 'config': {
1829
+ 'query': {
1830
+ 'Version': '2016-03-04',
1831
+ 'Action': 'DescribeProjectMaxNum',
1832
+ },
1833
+ 'headers': {
1834
+ 'Content-Type': 'application/x-www-form-urlencoded'
1835
+ },
1836
+ },
1837
+ 'paramsType': {
1838
+ }
1839
+ },
1840
+ }
1841
+ }