ksyun-sdk-node 1.0.2 → 1.0.4

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