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