ksyun-sdk-node 1.0.5 → 1.4.8

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