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,1036 +1,1987 @@
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': 'epc.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': 'epc',
15
- },
16
- },
17
- }
18
- _apiList = {
19
- 'CreateEpc': {
20
- 'url': '/',
21
- 'method': 'GET',
22
- 'config': {
23
- 'query': {
24
- 'Version': '2015-11-01',
25
- 'Action': 'CreateEpc',
26
- },
27
- 'headers': {
28
- 'Content-Type': 'application/x-www-form-urlencoded'
29
- },
30
- },
31
- 'paramsType': {
32
- 'HostType': 'String',
33
- 'AvailabilityZone': 'String',
34
- 'Raid': 'String',
35
- 'RaidId': 'String',
36
- 'ImageId': 'String',
37
- 'NetworkInterfaceMode': 'String',
38
- 'SubnetId': 'String',
39
- 'PrivateIpAddress': 'String',
40
- 'keyId': 'String',
41
- 'SecurityGroupId': 'Filter',
42
- 'DNS1': 'String',
43
- 'DNS2': 'String',
44
- 'HostName': 'String',
45
- 'ProjectId': 'String',
46
- 'ChargeType': 'String',
47
- 'Sn': 'String',
48
- 'PurchaseTime': 'Int',
49
- 'Password': 'String',
50
- 'SecurityAgent': 'String',
51
- 'CloudMonitorAgent': 'String',
52
- 'ExtensionSubnetId': 'String',
53
- 'ExtensionPrivateIpAddress': 'String',
54
- 'ExtensionDNS1': 'String',
55
- 'ExtensionDNS2': 'String',
56
- 'Description': 'String',
57
- 'AddressBandWidth': 'String',
58
- 'LineId': 'String',
59
- 'BandWidthShareId': 'String',
60
- 'AddressChargeType': 'String',
61
- 'AddressPurchaseTime': 'String',
62
- 'AddressProjectId': 'String',
63
- 'SystemFileType': 'String',
64
- 'DataFileType': 'String',
65
- 'DataDiskCatalogue': 'String',
66
- 'DataDiskCatalogueSuffix': 'String',
67
- 'HyperThreading': 'String',
68
- 'NvmeDataFileType': 'String',
69
- 'NvmeDataDiskCatalogue': 'String',
70
- 'NvmeDataDiskCatalogueSuffix': 'String',
71
- 'bondAttribute': 'String',
72
- 'ContainerAgent': 'String',
73
- 'KesAgent': 'String',
74
- 'KmrAgent': 'String',
75
- 'ComputerName': 'String',
76
- 'OverclockingAttribute': 'String',
77
- 'GpuImageDriverId': 'String',
78
- 'SystemVolumeType': 'String',
79
- 'SystemVolumeSize': 'String',
80
- }
81
- },
82
- 'StartEpc': {
83
- 'url': '/',
84
- 'method': 'GET',
85
- 'config': {
86
- 'query': {
87
- 'Version': '2015-11-01',
88
- 'Action': 'StartEpc',
89
- },
90
- 'headers': {
91
- 'Content-Type': 'application/json'
92
- },
93
- },
94
- 'paramsType': {
95
- 'HostId': 'String',
96
- }
97
- },
98
- 'RebootEpc': {
99
- 'url': '/',
100
- 'method': 'GET',
101
- 'config': {
102
- 'query': {
103
- 'Version': '2015-11-01',
104
- 'Action': 'RebootEpc',
105
- },
106
- 'headers': {
107
- 'Content-Type': 'application/json'
108
- },
109
- },
110
- 'paramsType': {
111
- 'HostId': 'String',
112
- }
113
- },
114
- 'DeleteEpc': {
115
- 'url': '/',
116
- 'method': 'GET',
117
- 'config': {
118
- 'query': {
119
- 'Version': '2015-11-01',
120
- 'Action': 'DeleteEpc',
121
- },
122
- 'headers': {
123
- 'Content-Type': 'application/json'
124
- },
125
- },
126
- 'paramsType': {
127
- 'HostId': 'String',
128
- }
129
- },
130
- 'ReinstallEpc': {
131
- 'url': '/',
132
- 'method': 'GET',
133
- 'config': {
134
- 'query': {
135
- 'Version': '2015-11-01',
136
- 'Action': 'ReinstallEpc',
137
- },
138
- 'headers': {
139
- 'Content-Type': 'application/x-www-form-urlencoded'
140
- },
141
- },
142
- 'paramsType': {
143
- 'HostId': 'String',
144
- 'ImageId': 'String',
145
- 'keyId': 'String',
146
- 'Password': 'String',
147
- 'NetworkInterfaceMode': 'String',
148
- 'SecurityAgent': 'String',
149
- 'CloudMonitorAgent': 'String',
150
- 'Raid': 'String',
151
- 'RaidId': 'String',
152
- 'HostName': 'String',
153
- 'SystemFileType': 'String',
154
- 'DataFileType': 'String',
155
- 'DataDiskCatalogue': 'String',
156
- 'DataDiskCatalogueSuffix': 'String',
157
- 'HyperThreading': 'String',
158
- 'NvmeDataFileType': 'String',
159
- 'NvmeDataDiskCatalogue': 'String',
160
- 'NvmeDataDiskCatalogueSuffix': 'String',
161
- 'bondAttribute': 'String',
162
- 'KesAgent': 'String',
163
- 'KmrAgent': 'String',
164
- 'ComputerName': 'String',
165
- 'OverclockingAttribute': 'String',
166
- 'DelayStart': 'Int',
167
- 'AvailabilityZone': 'String',
168
- 'GpuImageDriverId': 'String',
169
- }
170
- },
171
- 'ModifySecurityGroup': {
172
- 'url': '/',
173
- 'method': 'GET',
174
- 'config': {
175
- 'query': {
176
- 'Version': '2015-11-01',
177
- 'Action': 'ModifySecurityGroup',
178
- },
179
- 'headers': {
180
- 'Content-Type': 'application/json'
181
- },
182
- },
183
- 'paramsType': {
184
- 'HostId': 'String',
185
- 'NetworkInterfaceId': 'String',
186
- 'SecurityGroupId': 'Filter',
187
- }
188
- },
189
- 'ImportKey': {
190
- 'url': '/',
191
- 'method': 'GET',
192
- 'config': {
193
- 'query': {
194
- 'Version': '2015-11-01',
195
- 'Action': 'ImportKey',
196
- },
197
- 'headers': {
198
- 'Content-Type': 'application/x-www-form-urlencoded'
199
- },
200
- },
201
- 'paramsType': {
202
- 'KeyName': 'String',
203
- 'PublicKey': 'String',
204
- 'Description': 'String',
205
- }
206
- },
207
- 'DeleteKey': {
208
- 'url': '/',
209
- 'method': 'GET',
210
- 'config': {
211
- 'query': {
212
- 'Version': '2015-11-01',
213
- 'Action': 'DeleteKey',
214
- },
215
- 'headers': {
216
- 'Content-Type': 'application/x-www-form-urlencoded'
217
- },
218
- },
219
- 'paramsType': {
220
- 'KeyId': 'String',
221
- }
222
- },
223
- 'CreateKey': {
224
- 'url': '/',
225
- 'method': 'GET',
226
- 'config': {
227
- 'query': {
228
- 'Version': '2015-11-01',
229
- 'Action': 'CreateKey',
230
- },
231
- 'headers': {
232
- 'Content-Type': 'application/x-www-form-urlencoded'
233
- },
234
- },
235
- 'paramsType': {
236
- 'KeyName': 'String',
237
- 'Description': 'String',
238
- }
239
- },
240
- 'DescribeKeys': {
241
- 'url': '/',
242
- 'method': 'GET',
243
- 'config': {
244
- 'query': {
245
- 'Version': '2015-11-01',
246
- 'Action': 'DescribeKeys',
247
- },
248
- 'headers': {
249
- 'Content-Type': 'application/x-www-form-urlencoded'
250
- },
251
- },
252
- 'paramsType': {
253
- 'KeyId': 'Filter',
254
- }
255
- },
256
- 'DescribeEpcs': {
257
- 'url': '/',
258
- 'method': 'GET',
259
- 'config': {
260
- 'query': {
261
- 'Version': '2015-11-01',
262
- 'Action': 'DescribeEpcs',
263
- },
264
- 'headers': {
265
- 'Content-Type': 'application/x-www-form-urlencoded'
266
- },
267
- },
268
- 'paramsType': {
269
- 'ProjectId': 'Filter',
270
- 'HostId': 'Filter',
271
- 'Filter': 'Filter',
272
- 'MaxResults': 'Int',
273
- 'NextToken': 'String',
274
- }
275
- },
276
- 'GetDynamicCode': {
277
- 'url': '/',
278
- 'method': 'GET',
279
- 'config': {
280
- 'query': {
281
- 'Version': '2015-11-01',
282
- 'Action': 'GetDynamicCode',
283
- },
284
- 'headers': {
285
- 'Content-Type': 'application/x-www-form-urlencoded'
286
- },
287
- },
288
- 'paramsType': {
289
- 'RemoteManagementId': 'String',
290
- }
291
- },
292
- 'DescribeVpns': {
293
- 'url': '/',
294
- 'method': 'GET',
295
- 'config': {
296
- 'query': {
297
- 'Version': '2015-11-01',
298
- 'Action': 'DescribeVpns',
299
- },
300
- 'headers': {
301
- 'Content-Type': 'application/x-www-form-urlencoded'
302
- },
303
- },
304
- 'paramsType': {
305
- 'DynamicCode': 'String',
306
- 'Pin': 'String',
307
- 'RemoteManagementId': 'String',
308
- }
309
- },
310
- 'CreateImage': {
311
- 'url': '/',
312
- 'method': 'GET',
313
- 'config': {
314
- 'query': {
315
- 'Version': '2015-11-01',
316
- 'Action': 'CreateImage',
317
- },
318
- 'headers': {
319
- 'Content-Type': 'application/x-www-form-urlencoded'
320
- },
321
- },
322
- 'paramsType': {
323
- 'HostId': 'String',
324
- 'ImageName': 'String',
325
- 'ImageMode': 'String',
326
- 'ImageInitialization': 'String',
327
- }
328
- },
329
- 'ModifyImage': {
330
- 'url': '/',
331
- 'method': 'GET',
332
- 'config': {
333
- 'query': {
334
- 'Version': '2015-11-01',
335
- 'Action': 'ModifyImage',
336
- },
337
- 'headers': {
338
- 'Content-Type': 'application/x-www-form-urlencoded'
339
- },
340
- },
341
- 'paramsType': {
342
- 'ImageName': 'String',
343
- 'ImageId': 'String',
344
- }
345
- },
346
- 'DeleteImage': {
347
- 'url': '/',
348
- 'method': 'GET',
349
- 'config': {
350
- 'query': {
351
- 'Version': '2015-11-01',
352
- 'Action': 'DeleteImage',
353
- },
354
- 'headers': {
355
- 'Content-Type': 'application/x-www-form-urlencoded'
356
- },
357
- },
358
- 'paramsType': {
359
- 'ImageId': 'String',
360
- }
361
- },
362
- 'DescribeImages': {
363
- 'url': '/',
364
- 'method': 'GET',
365
- 'config': {
366
- 'query': {
367
- 'Version': '2015-11-01',
368
- 'Action': 'DescribeImages',
369
- },
370
- 'headers': {
371
- 'Content-Type': 'application/x-www-form-urlencoded'
372
- },
373
- },
374
- 'paramsType': {
375
- 'MaxResults': 'Int',
376
- 'NextToken': 'String',
377
- }
378
- },
379
- 'ModifyDns': {
380
- 'url': '/',
381
- 'method': 'GET',
382
- 'config': {
383
- 'query': {
384
- 'Version': '2015-11-01',
385
- 'Action': 'ModifyDns',
386
- },
387
- 'headers': {
388
- 'Content-Type': 'application/x-www-form-urlencoded'
389
- },
390
- },
391
- 'paramsType': {
392
- 'NetworkInterfaceId': 'String',
393
- 'HostId': 'String',
394
- 'DNS1': 'String',
395
- 'DNS2': 'String',
396
- }
397
- },
398
- 'ModifyNetworkInterfaceAttribute': {
399
- 'url': '/',
400
- 'method': 'GET',
401
- 'config': {
402
- 'query': {
403
- 'Version': '2015-11-01',
404
- 'Action': 'ModifyNetworkInterfaceAttribute',
405
- },
406
- 'headers': {
407
- 'Content-Type': 'application/x-www-form-urlencoded'
408
- },
409
- },
410
- 'paramsType': {
411
- }
412
- },
413
- 'DescribePhysicalMonitor': {
414
- 'url': '/',
415
- 'method': 'GET',
416
- 'config': {
417
- 'query': {
418
- 'Version': '2015-11-01',
419
- 'Action': 'DescribePhysicalMonitor',
420
- },
421
- 'headers': {
422
- 'Content-Type': 'application/x-www-form-urlencoded'
423
- },
424
- },
425
- 'paramsType': {
426
- 'HostId': 'String',
427
- }
428
- },
429
- 'DescribeEpcManagements': {
430
- 'url': '/',
431
- 'method': 'GET',
432
- 'config': {
433
- 'query': {
434
- 'Version': '2015-11-01',
435
- 'Action': 'DescribeEpcManagements',
436
- },
437
- 'headers': {
438
- 'Content-Type': 'application/x-www-form-urlencoded'
439
- },
440
- },
441
- 'paramsType': {
442
- 'MaxResults': 'Int',
443
- 'NextToken': 'String',
444
- 'DynamicCode': 'String',
445
- 'Pin': 'String',
446
- 'EpcManagementId': 'Filter',
447
- 'RemoteManagementId': 'String',
448
- }
449
- },
450
- 'DescribeRemoteManagements': {
451
- 'url': '/',
452
- 'method': 'GET',
453
- 'config': {
454
- 'query': {
455
- 'Version': '2015-11-01',
456
- 'Action': 'DescribeRemoteManagements',
457
- },
458
- 'headers': {
459
- 'Content-Type': 'application/x-www-form-urlencoded'
460
- },
461
- },
462
- 'paramsType': {
463
- 'RemoteManagementId': 'Filter',
464
- }
465
- },
466
- 'StopEpc': {
467
- 'url': '/',
468
- 'method': 'GET',
469
- 'config': {
470
- 'query': {
471
- 'Version': '2015-11-01',
472
- 'Action': 'StopEpc',
473
- },
474
- 'headers': {
475
- 'Content-Type': 'application/x-www-form-urlencoded'
476
- },
477
- },
478
- 'paramsType': {
479
- 'HostId': 'String',
480
- }
481
- },
482
- 'ModifyEpc': {
483
- 'url': '/',
484
- 'method': 'GET',
485
- 'config': {
486
- 'query': {
487
- 'Version': '2015-11-01',
488
- 'Action': 'ModifyEpc',
489
- },
490
- 'headers': {
491
- 'Content-Type': 'application/x-www-form-urlencoded'
492
- },
493
- },
494
- 'paramsType': {
495
- 'HostId': 'String',
496
- 'HostName': 'String',
497
- 'Description': 'String',
498
- }
499
- },
500
- 'ModifyRemoteManagement': {
501
- 'url': '/',
502
- 'method': 'GET',
503
- 'config': {
504
- 'query': {
505
- 'Version': '2015-11-01',
506
- 'Action': 'ModifyRemoteManagement',
507
- },
508
- 'headers': {
509
- 'Content-Type': 'application/x-www-form-urlencoded'
510
- },
511
- },
512
- 'paramsType': {
513
- 'RemoteManagementId': 'String',
514
- 'DynamicCode': 'String',
515
- 'Pin': 'String',
516
- 'NewPhoneNumber': 'String',
517
- 'NewPin': 'String',
518
- 'Name': 'String',
519
- 'VersionId': 'Int',
520
- }
521
- },
522
- 'CreateRemoteManagement': {
523
- 'url': '/',
524
- 'method': 'GET',
525
- 'config': {
526
- 'query': {
527
- 'Version': '2015-11-01',
528
- 'Action': 'CreateRemoteManagement',
529
- },
530
- 'headers': {
531
- 'Content-Type': 'application/x-www-form-urlencoded'
532
- },
533
- },
534
- 'paramsType': {
535
- 'DynamicCode': 'String',
536
- 'Pin': 'String',
537
- 'PhoneNumber': 'String',
538
- 'Name': 'String',
539
- 'VersionId': 'Int',
540
- }
541
- },
542
- 'ReinstallCustomerEpc': {
543
- 'url': '/',
544
- 'method': 'GET',
545
- 'config': {
546
- 'query': {
547
- 'Version': '2015-11-01',
548
- 'Action': 'ReinstallCustomerEpc',
549
- },
550
- 'headers': {
551
- 'Content-Type': 'application/x-www-form-urlencoded'
552
- },
553
- },
554
- 'paramsType': {
555
- 'HostId': 'String',
556
- 'ServerIp': 'String',
557
- 'Path': 'String',
558
- }
559
- },
560
- 'DeleteRemoteManagement': {
561
- 'url': '/',
562
- 'method': 'GET',
563
- 'config': {
564
- 'query': {
565
- 'Version': '2015-11-01',
566
- 'Action': 'DeleteRemoteManagement',
567
- },
568
- 'headers': {
569
- 'Content-Type': 'application/x-www-form-urlencoded'
570
- },
571
- },
572
- 'paramsType': {
573
- }
574
- },
575
- 'ModifyHyperThreading': {
576
- 'url': '/',
577
- 'method': 'GET',
578
- 'config': {
579
- 'query': {
580
- 'Version': '2015-11-01',
581
- 'Action': 'ModifyHyperThreading',
582
- },
583
- 'headers': {
584
- 'Content-Type': 'application/x-www-form-urlencoded'
585
- },
586
- },
587
- 'paramsType': {
588
- 'HostId': 'String',
589
- 'HyperThreadingStatus': 'String',
590
- }
591
- },
592
- 'AssociateCluster': {
593
- 'url': '/',
594
- 'method': 'GET',
595
- 'config': {
596
- 'query': {
597
- 'Version': '2015-11-01',
598
- 'Action': 'AssociateCluster',
599
- },
600
- 'headers': {
601
- 'Content-Type': 'application/x-www-form-urlencoded'
602
- },
603
- },
604
- 'paramsType': {
605
- 'HostId': 'String',
606
- 'ClusterId': 'String',
607
- }
608
- },
609
- 'DisassociateCluster': {
610
- 'url': '/',
611
- 'method': 'GET',
612
- 'config': {
613
- 'query': {
614
- 'Version': '2015-11-01',
615
- 'Action': 'DisassociateCluster',
616
- },
617
- 'headers': {
618
- 'Content-Type': 'application/x-www-form-urlencoded'
619
- },
620
- },
621
- 'paramsType': {
622
- 'HostId': 'String',
623
- }
624
- },
625
- 'DescribeInspections': {
626
- 'url': '/',
627
- 'method': 'GET',
628
- 'config': {
629
- 'query': {
630
- 'Version': '2015-11-01',
631
- 'Action': 'DescribeInspections',
632
- },
633
- 'headers': {
634
- 'Content-Type': 'application/x-www-form-urlencoded'
635
- },
636
- },
637
- 'paramsType': {
638
- 'MaxResults': 'Int',
639
- 'NextToken': 'String',
640
- 'Filter': 'Filter',
641
- }
642
- },
643
- 'DescribeEpcStocks': {
644
- 'url': '/',
645
- 'method': 'GET',
646
- 'config': {
647
- 'query': {
648
- 'Version': '2015-11-01',
649
- 'Action': 'DescribeEpcStocks',
650
- },
651
- 'headers': {
652
- 'Content-Type': 'application/x-www-form-urlencoded'
653
- },
654
- },
655
- 'paramsType': {
656
- 'Filter': 'Filter',
657
- }
658
- },
659
- 'DescribeEpcDeviceAttributes': {
660
- 'url': '/',
661
- 'method': 'GET',
662
- 'config': {
663
- 'query': {
664
- 'Version': '2015-11-01',
665
- 'Action': 'DescribeEpcDeviceAttributes',
666
- },
667
- 'headers': {
668
- 'Content-Type': 'application/x-www-form-urlencoded'
669
- },
670
- },
671
- 'paramsType': {
672
- 'Filter': 'Filter',
673
- 'DeviceAttributeId': 'Filter',
674
- 'MaxResults': 'Int',
675
- 'NextToken': 'String',
676
- }
677
- },
678
- 'DescribeProcesses': {
679
- 'url': '/',
680
- 'method': 'GET',
681
- 'config': {
682
- 'query': {
683
- 'Version': '2015-11-01',
684
- 'Action': 'DescribeProcesses',
685
- },
686
- 'headers': {
687
- 'Content-Type': 'application/x-www-form-urlencoded'
688
- },
689
- },
690
- 'paramsType': {
691
- 'OperationProcessId': 'Filter',
692
- 'Filter': 'Filter',
693
- 'MaxResults': 'Int',
694
- 'NextToken': 'String',
695
- }
696
- },
697
- 'CreateProcess': {
698
- 'url': '/',
699
- 'method': 'GET',
700
- 'config': {
701
- 'query': {
702
- 'Version': '2015-11-01',
703
- 'Action': 'CreateProcess',
704
- },
705
- 'headers': {
706
- 'Content-Type': 'application/x-www-form-urlencoded'
707
- },
708
- },
709
- 'paramsType': {
710
- 'ProcessId': 'String',
711
- 'InstanceId': 'String',
712
- 'Sn': 'String',
713
- 'AvailabilityZone': 'String',
714
- 'CreateTime': 'String',
715
- 'Attribute': 'String',
716
- 'Content': 'String',
717
- 'MachineCount': 'Int',
718
- 'Title': 'String',
719
- 'Type': 'String',
720
- 'Confirm': 'String',
721
- 'ProcessSource': 'Int',
722
- }
723
- },
724
- 'DeleteProcess': {
725
- 'url': '/',
726
- 'method': 'GET',
727
- 'config': {
728
- 'query': {
729
- 'Version': '2015-11-01',
730
- 'Action': 'DeleteProcess',
731
- },
732
- 'headers': {
733
- 'Content-Type': 'application/x-www-form-urlencoded'
734
- },
735
- },
736
- 'paramsType': {
737
- 'OperationProcessId': 'String',
738
- }
739
- },
740
- 'ReplyProcess': {
741
- 'url': '/',
742
- 'method': 'GET',
743
- 'config': {
744
- 'query': {
745
- 'Version': '2015-11-01',
746
- 'Action': 'ReplyProcess',
747
- },
748
- 'headers': {
749
- 'Content-Type': 'application/x-www-form-urlencoded'
750
- },
751
- },
752
- 'paramsType': {
753
- 'OperationProcessId': 'String',
754
- 'Remarks': 'String',
755
- }
756
- },
757
- 'DescribeEpcTrashes': {
758
- 'url': '/',
759
- 'method': 'GET',
760
- 'config': {
761
- 'query': {
762
- 'Version': '2015-11-01',
763
- 'Action': 'DescribeEpcTrashes',
764
- },
765
- 'headers': {
766
- 'Content-Type': 'application/x-www-form-urlencoded'
767
- },
768
- },
769
- 'paramsType': {
770
- }
771
- },
772
- 'ReturnEpc': {
773
- 'url': '/',
774
- 'method': 'GET',
775
- 'config': {
776
- 'query': {
777
- 'Version': '2015-11-01',
778
- 'Action': 'ReturnEpc',
779
- },
780
- 'headers': {
781
- 'Content-Type': 'application/x-www-form-urlencoded'
782
- },
783
- },
784
- 'paramsType': {
785
- 'HostId': 'String',
786
- }
787
- },
788
- 'CreateResourceRequirement': {
789
- 'url': '/',
790
- 'method': 'GET',
791
- 'config': {
792
- 'query': {
793
- 'Version': '2015-11-01',
794
- 'Action': 'CreateResourceRequirement',
795
- },
796
- 'headers': {
797
- 'Content-Type': 'application/x-www-form-urlencoded'
798
- },
799
- },
800
- 'paramsType': {
801
- 'AvailabilityZone': 'String',
802
- 'RequirementCount': 'Int',
803
- 'ProjectName': 'String',
804
- 'UsageDate': 'String',
805
- 'Description': 'String',
806
- 'HostType': 'String',
807
- }
808
- },
809
- 'AttachVolume': {
810
- 'url': '/',
811
- 'method': 'GET',
812
- 'config': {
813
- 'query': {
814
- 'Version': '2015-11-01',
815
- 'Action': 'AttachVolume',
816
- },
817
- 'headers': {
818
- 'Content-Type': 'application/x-www-form-urlencoded'
819
- },
820
- },
821
- 'paramsType': {
822
- 'HostId': 'String',
823
- 'VolumeId': 'String',
824
- }
825
- },
826
- 'DetachVolume': {
827
- 'url': '/',
828
- 'method': 'GET',
829
- 'config': {
830
- 'query': {
831
- 'Version': '2015-11-01',
832
- 'Action': 'DetachVolume',
833
- },
834
- 'headers': {
835
- 'Content-Type': 'application/x-www-form-urlencoded'
836
- },
837
- },
838
- 'paramsType': {
839
- 'HostId': 'String',
840
- 'VolumeId': 'String',
841
- }
842
- },
843
- 'DescribePrice': {
844
- 'url': '/',
845
- 'method': 'GET',
846
- 'config': {
847
- 'query': {
848
- 'Version': '2015-11-01',
849
- 'Action': 'DescribePrice',
850
- },
851
- 'headers': {
852
- 'Content-Type': 'application/x-www-form-urlencoded'
853
- },
854
- },
855
- 'paramsType': {
856
- 'ChargeType': 'String',
857
- 'HostType': 'String',
858
- 'AvailabilityZone': 'String',
859
- 'PurchaseTime': 'Int',
860
- 'Amount': 'Int',
861
- }
862
- },
863
- 'ModifyOverclockingAttribute': {
864
- 'url': '/',
865
- 'method': 'GET',
866
- 'config': {
867
- 'query': {
868
- 'Version': '2015-11-01',
869
- 'Action': 'ModifyOverclockingAttribute',
870
- },
871
- 'headers': {
872
- 'Content-Type': 'application/x-www-form-urlencoded'
873
- },
874
- },
875
- 'paramsType': {
876
- 'HostId': 'String',
877
- 'OverclockingAttribute': 'String',
878
- }
879
- },
880
- 'CopyImage': {
881
- 'url': '/',
882
- 'method': 'GET',
883
- 'config': {
884
- 'query': {
885
- 'Version': '2015-11-01',
886
- 'Action': 'CopyImage',
887
- },
888
- 'headers': {
889
- 'Content-Type': 'application/x-www-form-urlencoded'
890
- },
891
- },
892
- 'paramsType': {
893
- 'DestinationName': 'String',
894
- 'ImageId': 'String',
895
- 'DestinationRegion': 'String',
896
- 'CopyTag': 'String',
897
- }
898
- },
899
- 'DescribeEpcRaidAttributes': {
900
- 'url': '/',
901
- 'method': 'GET',
902
- 'config': {
903
- 'query': {
904
- 'Version': '2015-11-01',
905
- 'Action': 'DescribeEpcRaidAttributes',
906
- },
907
- 'headers': {
908
- 'Content-Type': 'application/x-www-form-urlencoded'
909
- },
910
- },
911
- 'paramsType': {
912
- 'Filter': 'Filter',
913
- 'MaxResults': 'Int',
914
- 'NextToken': 'String',
915
- }
916
- },
917
- 'DescribeGpuImageDriver': {
918
- 'url': '/',
919
- 'method': 'GET',
920
- 'config': {
921
- 'query': {
922
- 'Version': '2015-11-01',
923
- 'Action': 'DescribeGpuImageDriver',
924
- },
925
- 'headers': {
926
- 'Content-Type': 'application/x-www-form-urlencoded'
927
- },
928
- },
929
- 'paramsType': {
930
- 'MaxResults': 'Int',
931
- 'NextToken': 'String',
932
- 'ImageId': 'String',
933
- 'HostType': 'String',
934
- }
935
- },
936
- 'CreateShareImage': {
937
- 'url': '/',
938
- 'method': 'GET',
939
- 'config': {
940
- 'query': {
941
- 'Version': '2015-11-01',
942
- 'Action': 'CreateShareImage',
943
- },
944
- 'headers': {
945
- 'Content-Type': 'application/x-www-form-urlencoded'
946
- },
947
- },
948
- 'paramsType': {
949
- 'ImageId': 'String',
950
- 'AccountId.N': 'String',
951
- }
952
- },
953
- 'DeleteShareImage': {
954
- 'url': '/',
955
- 'method': 'GET',
956
- 'config': {
957
- 'query': {
958
- 'Version': '2015-11-01',
959
- 'Action': 'DeleteShareImage',
960
- },
961
- 'headers': {
962
- 'Content-Type': 'application/x-www-form-urlencoded'
963
- },
964
- },
965
- 'paramsType': {
966
- 'ImageId': 'String',
967
- 'AccountId.N': 'String',
968
- }
969
- },
970
- 'DescribeShareImageAccountList': {
971
- 'url': '/',
972
- 'method': 'GET',
973
- 'config': {
974
- 'query': {
975
- 'Version': '2015-11-01',
976
- 'Action': 'DescribeShareImageAccountList',
977
- },
978
- 'headers': {
979
- 'Content-Type': 'application/json'
980
- },
981
- },
982
- 'paramsType': {
983
- 'ImageId': 'String',
984
- }
985
- },
986
- 'DescribeShareImage': {
987
- 'url': '/',
988
- 'method': 'GET',
989
- 'config': {
990
- 'query': {
991
- 'Version': '2015-11-01',
992
- 'Action': 'DescribeShareImage',
993
- },
994
- 'headers': {
995
- 'Content-Type': 'application/x-www-form-urlencoded'
996
- },
997
- },
998
- 'paramsType': {
999
- 'MaxResults': 'Int',
1000
- 'NextToken': 'String',
1001
- }
1002
- },
1003
- 'AcceptShareImage': {
1004
- 'url': '/',
1005
- 'method': 'GET',
1006
- 'config': {
1007
- 'query': {
1008
- 'Version': '2015-11-01',
1009
- 'Action': 'AcceptShareImage',
1010
- },
1011
- 'headers': {
1012
- 'Content-Type': 'application/x-www-form-urlencoded'
1013
- },
1014
- },
1015
- 'paramsType': {
1016
- 'ImageId': 'String',
1017
- }
1018
- },
1019
- 'RejectShareImage': {
1020
- 'url': '/',
1021
- 'method': 'GET',
1022
- 'config': {
1023
- 'query': {
1024
- 'Version': '2015-11-01',
1025
- 'Action': 'RejectShareImage',
1026
- },
1027
- 'headers': {
1028
- 'Content-Type': 'application/x-www-form-urlencoded'
1029
- },
1030
- },
1031
- 'paramsType': {
1032
- 'ImageId': 'String',
1033
- }
1034
- },
1035
- }
1036
- }
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "epc.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: "epc",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ CreateEpc: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2015-11-01",
25
+ Action: "CreateEpc",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ HostType: "String",
33
+ AvailabilityZone: "String",
34
+ Raid: "String",
35
+ RaidId: "String",
36
+ ImageId: "String",
37
+ NetworkInterfaceMode: "String",
38
+ SubnetId: "String",
39
+ PrivateIpAddress: "String",
40
+ keyId: "String",
41
+ SecurityGroupId: "Filter",
42
+ DNS1: "String",
43
+ DNS2: "String",
44
+ HostName: "String",
45
+ ProjectId: "String",
46
+ ChargeType: "String",
47
+ PurchaseTime: "Int",
48
+ Password: "String",
49
+ CloudMonitorAgent: "String",
50
+ ExtensionSubnetId: "String",
51
+ ExtensionPrivateIpAddress: "String",
52
+ ExtensionDNS1: "String",
53
+ ExtensionDNS2: "String",
54
+ Description: "String",
55
+ AddressBandWidth: "String",
56
+ LineId: "String",
57
+ BandWidthShareId: "String",
58
+ AddressChargeType: "String",
59
+ AddressPurchaseTime: "String",
60
+ AddressProjectId: "String",
61
+ SystemFileType: "String",
62
+ DataFileType: "String",
63
+ DataDiskCatalogue: "String",
64
+ DataDiskCatalogueSuffix: "String",
65
+ HyperThreading: "String",
66
+ NvmeDataFileType: "String",
67
+ NvmeDataDiskCatalogue: "String",
68
+ NvmeDataDiskCatalogueSuffix: "String",
69
+ BondAttribute: "String",
70
+ ContainerAgent: "String",
71
+ KesAgent: "String",
72
+ KmrAgent: "String",
73
+ ComputerName: "String",
74
+ OverclockingAttribute: "String",
75
+ GpuImageDriverId: "String",
76
+ SystemVolumeType: "String",
77
+ SystemVolumeSize: "String",
78
+ RoceNetwork: "String",
79
+ ZoneId: "String",
80
+ ZoneType: "String",
81
+ UseHotStandby: "String",
82
+ TimedRegularization: "String",
83
+ PasswordInherit: "String",
84
+ DataDiskMount: "String",
85
+ StorageRoceNetworkCardName: "String",
86
+ "Anaconda.N": "String",
87
+ "Framework.N": "String",
88
+ "Engine.N": "String",
89
+ "AiModel.N": "String",
90
+ UserData: "String",
91
+ StorageRoceNetworkInterfaceMode: "String",
92
+ },
93
+ },
94
+ StartEpc: {
95
+ url: "/",
96
+ method: "GET",
97
+ config: {
98
+ query: {
99
+ Version: "2015-11-01",
100
+ Action: "StartEpc",
101
+ },
102
+ headers: {
103
+ "Content-Type": "application/x-www-form-urlencoded",
104
+ },
105
+ },
106
+ paramsType: {
107
+ HostId: "String",
108
+ },
109
+ },
110
+ RebootEpc: {
111
+ url: "/",
112
+ method: "GET",
113
+ config: {
114
+ query: {
115
+ Version: "2015-11-01",
116
+ Action: "RebootEpc",
117
+ },
118
+ headers: {
119
+ "Content-Type": "application/x-www-form-urlencoded",
120
+ },
121
+ },
122
+ paramsType: {
123
+ HostId: "String",
124
+ },
125
+ },
126
+ DeleteEpc: {
127
+ url: "/",
128
+ method: "GET",
129
+ config: {
130
+ query: {
131
+ Version: "2015-11-01",
132
+ Action: "DeleteEpc",
133
+ },
134
+ headers: {
135
+ "Content-Type": "application/x-www-form-urlencoded",
136
+ },
137
+ },
138
+ paramsType: {
139
+ HostId: "String",
140
+ },
141
+ },
142
+ ReinstallEpc: {
143
+ url: "/",
144
+ method: "GET",
145
+ config: {
146
+ query: {
147
+ Version: "2015-11-01",
148
+ Action: "ReinstallEpc",
149
+ },
150
+ headers: {
151
+ "Content-Type": "application/x-www-form-urlencoded",
152
+ },
153
+ },
154
+ paramsType: {
155
+ HostId: "String",
156
+ ImageId: "String",
157
+ keyId: "String",
158
+ Password: "String",
159
+ NetworkInterfaceMode: "String",
160
+ CloudMonitorAgent: "String",
161
+ Raid: "String",
162
+ RaidId: "String",
163
+ HostName: "String",
164
+ SystemFileType: "String",
165
+ DataFileType: "String",
166
+ DataDiskCatalogue: "String",
167
+ DataDiskCatalogueSuffix: "String",
168
+ HyperThreading: "String",
169
+ NvmeDataFileType: "String",
170
+ NvmeDataDiskCatalogue: "String",
171
+ NvmeDataDiskCatalogueSuffix: "String",
172
+ BondAttribute: "String",
173
+ KesAgent: "String",
174
+ KmrAgent: "String",
175
+ ComputerName: "String",
176
+ OverclockingAttribute: "String",
177
+ DelayStart: "Int",
178
+ AvailabilityZone: "String",
179
+ GpuImageDriverId: "String",
180
+ ContainerAgent: "String",
181
+ PasswordInherit: "String",
182
+ DataDiskMount: "String",
183
+ StorageRoceNetworkCardName: "String",
184
+ },
185
+ },
186
+ ModifySecurityGroup: {
187
+ url: "/",
188
+ method: "GET",
189
+ config: {
190
+ query: {
191
+ Version: "2015-11-01",
192
+ Action: "ModifySecurityGroup",
193
+ },
194
+ headers: {
195
+ "Content-Type": "application/x-www-form-urlencoded",
196
+ },
197
+ },
198
+ paramsType: {
199
+ HostId: "String",
200
+ NetworkInterfaceId: "String",
201
+ SecurityGroupId: "Filter",
202
+ },
203
+ },
204
+ CreateKey: {
205
+ url: "/",
206
+ method: "GET",
207
+ config: {
208
+ query: {
209
+ Version: "2015-11-01",
210
+ Action: "CreateKey",
211
+ },
212
+ headers: {
213
+ "Content-Type": "application/x-www-form-urlencoded",
214
+ },
215
+ },
216
+ paramsType: {
217
+ KeyName: "String",
218
+ Description: "String",
219
+ },
220
+ },
221
+ DescribeEpcs: {
222
+ url: "/",
223
+ method: "GET",
224
+ config: {
225
+ query: {
226
+ Version: "2015-11-01",
227
+ Action: "DescribeEpcs",
228
+ },
229
+ headers: {
230
+ "Content-Type": "application/x-www-form-urlencoded",
231
+ },
232
+ },
233
+ paramsType: {
234
+ ProjectId: "Filter",
235
+ HostId: "Filter",
236
+ Filter: "Filter",
237
+ MaxResults: "Int",
238
+ NextToken: "String",
239
+ },
240
+ },
241
+ GetDynamicCode: {
242
+ url: "/",
243
+ method: "GET",
244
+ config: {
245
+ query: {
246
+ Version: "2015-11-01",
247
+ Action: "GetDynamicCode",
248
+ },
249
+ headers: {
250
+ "Content-Type": "application/x-www-form-urlencoded",
251
+ },
252
+ },
253
+ paramsType: {
254
+ RemoteManagementId: "String",
255
+ },
256
+ },
257
+ DescribeVpns: {
258
+ url: "/",
259
+ method: "GET",
260
+ config: {
261
+ query: {
262
+ Version: "2015-11-01",
263
+ Action: "DescribeVpns",
264
+ },
265
+ headers: {
266
+ "Content-Type": "application/x-www-form-urlencoded",
267
+ },
268
+ },
269
+ paramsType: {
270
+ DynamicCode: "String",
271
+ Pin: "String",
272
+ RemoteManagementId: "String",
273
+ },
274
+ },
275
+ CreateImage: {
276
+ url: "/",
277
+ method: "GET",
278
+ config: {
279
+ query: {
280
+ Version: "2015-11-01",
281
+ Action: "CreateImage",
282
+ },
283
+ headers: {
284
+ "Content-Type": "application/x-www-form-urlencoded",
285
+ },
286
+ },
287
+ paramsType: {
288
+ HostId: "String",
289
+ ImageName: "String",
290
+ ImageMode: "String",
291
+ ImageInitialization: "String",
292
+ },
293
+ },
294
+ ModifyImage: {
295
+ url: "/",
296
+ method: "GET",
297
+ config: {
298
+ query: {
299
+ Version: "2015-11-01",
300
+ Action: "ModifyImage",
301
+ },
302
+ headers: {
303
+ "Content-Type": "application/x-www-form-urlencoded",
304
+ },
305
+ },
306
+ paramsType: {
307
+ ImageName: "String",
308
+ ImageId: "String",
309
+ },
310
+ },
311
+ DeleteImage: {
312
+ url: "/",
313
+ method: "GET",
314
+ config: {
315
+ query: {
316
+ Version: "2015-11-01",
317
+ Action: "DeleteImage",
318
+ },
319
+ headers: {
320
+ "Content-Type": "application/x-www-form-urlencoded",
321
+ },
322
+ },
323
+ paramsType: {
324
+ ImageId: "String",
325
+ },
326
+ },
327
+ DescribeImages: {
328
+ url: "/",
329
+ method: "GET",
330
+ config: {
331
+ query: {
332
+ Version: "2015-11-01",
333
+ Action: "DescribeImages",
334
+ },
335
+ headers: {
336
+ "Content-Type": "application/x-www-form-urlencoded",
337
+ },
338
+ },
339
+ paramsType: {
340
+ MaxResults: "Int",
341
+ NextToken: "String",
342
+ "ImageId.N": "String",
343
+ },
344
+ },
345
+ ModifyDns: {
346
+ url: "/",
347
+ method: "GET",
348
+ config: {
349
+ query: {
350
+ Version: "2015-11-01",
351
+ Action: "ModifyDns",
352
+ },
353
+ headers: {
354
+ "Content-Type": "application/x-www-form-urlencoded",
355
+ },
356
+ },
357
+ paramsType: {
358
+ NetworkInterfaceId: "String",
359
+ HostId: "String",
360
+ DNS1: "String",
361
+ DNS2: "String",
362
+ },
363
+ },
364
+ ModifyNetworkInterfaceAttribute: {
365
+ url: "/",
366
+ method: "GET",
367
+ config: {
368
+ query: {
369
+ Version: "2015-11-01",
370
+ Action: "ModifyNetworkInterfaceAttribute",
371
+ },
372
+ headers: {
373
+ "Content-Type": "application/x-www-form-urlencoded",
374
+ },
375
+ },
376
+ paramsType: {
377
+ NetworkInterfaceId: "String",
378
+ HostId: "String",
379
+ SubnetId: "String",
380
+ IpAddress: "String",
381
+ SecurityGroupIdList: "Array",
382
+ SecurityGroupId: "Filter",
383
+ },
384
+ },
385
+ DescribePhysicalMonitor: {
386
+ url: "/",
387
+ method: "GET",
388
+ config: {
389
+ query: {
390
+ Version: "2015-11-01",
391
+ Action: "DescribePhysicalMonitor",
392
+ },
393
+ headers: {
394
+ "Content-Type": "application/x-www-form-urlencoded",
395
+ },
396
+ },
397
+ paramsType: {
398
+ HostId: "String",
399
+ },
400
+ },
401
+ DescribeEpcManagements: {
402
+ url: "/",
403
+ method: "GET",
404
+ config: {
405
+ query: {
406
+ Version: "2015-11-01",
407
+ Action: "DescribeEpcManagements",
408
+ },
409
+ headers: {
410
+ "Content-Type": "application/x-www-form-urlencoded",
411
+ },
412
+ },
413
+ paramsType: {
414
+ MaxResults: "Int",
415
+ NextToken: "String",
416
+ DynamicCode: "String",
417
+ Pin: "String",
418
+ EpcManagementId: "Filter",
419
+ RemoteManagementId: "String",
420
+ },
421
+ },
422
+ DescribeRemoteManagements: {
423
+ url: "/",
424
+ method: "GET",
425
+ config: {
426
+ query: {
427
+ Version: "2015-11-01",
428
+ Action: "DescribeRemoteManagements",
429
+ },
430
+ headers: {
431
+ "Content-Type": "application/x-www-form-urlencoded",
432
+ },
433
+ },
434
+ paramsType: {
435
+ RemoteManagementId: "Filter",
436
+ },
437
+ },
438
+ StopEpc: {
439
+ url: "/",
440
+ method: "GET",
441
+ config: {
442
+ query: {
443
+ Version: "2015-11-01",
444
+ Action: "StopEpc",
445
+ },
446
+ headers: {
447
+ "Content-Type": "application/x-www-form-urlencoded",
448
+ },
449
+ },
450
+ paramsType: {
451
+ HostId: "String",
452
+ },
453
+ },
454
+ ModifyEpc: {
455
+ url: "/",
456
+ method: "GET",
457
+ config: {
458
+ query: {
459
+ Version: "2015-11-01",
460
+ Action: "ModifyEpc",
461
+ },
462
+ headers: {
463
+ "Content-Type": "application/x-www-form-urlencoded",
464
+ },
465
+ },
466
+ paramsType: {
467
+ HostId: "String",
468
+ HostName: "String",
469
+ Description: "String",
470
+ },
471
+ },
472
+ ModifyRemoteManagement: {
473
+ url: "/",
474
+ method: "GET",
475
+ config: {
476
+ query: {
477
+ Version: "2015-11-01",
478
+ Action: "ModifyRemoteManagement",
479
+ },
480
+ headers: {
481
+ "Content-Type": "application/x-www-form-urlencoded",
482
+ },
483
+ },
484
+ paramsType: {
485
+ RemoteManagementId: "String",
486
+ DynamicCode: "String",
487
+ Pin: "String",
488
+ NewPhoneNumber: "String",
489
+ NewPin: "String",
490
+ Name: "String",
491
+ VersionId: "Int",
492
+ },
493
+ },
494
+ CreateRemoteManagement: {
495
+ url: "/",
496
+ method: "GET",
497
+ config: {
498
+ query: {
499
+ Version: "2015-11-01",
500
+ Action: "CreateRemoteManagement",
501
+ },
502
+ headers: {
503
+ "Content-Type": "application/x-www-form-urlencoded",
504
+ },
505
+ },
506
+ paramsType: {
507
+ DynamicCode: "String",
508
+ Pin: "String",
509
+ PhoneNumber: "String",
510
+ Name: "String",
511
+ VersionId: "Int",
512
+ },
513
+ },
514
+ ReinstallCustomerEpc: {
515
+ url: "/",
516
+ method: "GET",
517
+ config: {
518
+ query: {
519
+ Version: "2015-11-01",
520
+ Action: "ReinstallCustomerEpc",
521
+ },
522
+ headers: {
523
+ "Content-Type": "application/x-www-form-urlencoded",
524
+ },
525
+ },
526
+ paramsType: {
527
+ HostId: "String",
528
+ ServerIp: "String",
529
+ Path: "String",
530
+ },
531
+ },
532
+ DeleteRemoteManagement: {
533
+ url: "/",
534
+ method: "GET",
535
+ config: {
536
+ query: {
537
+ Version: "2015-11-01",
538
+ Action: "DeleteRemoteManagement",
539
+ },
540
+ headers: {
541
+ "Content-Type": "application/x-www-form-urlencoded",
542
+ },
543
+ },
544
+ paramsType: {
545
+ RemoteManagementId: "String",
546
+ },
547
+ },
548
+ ResetPassword: {
549
+ url: "/",
550
+ method: "GET",
551
+ config: {
552
+ query: {
553
+ Version: "2015-11-01",
554
+ Action: "ResetPassword",
555
+ },
556
+ headers: {
557
+ "Content-Type": "application/x-www-form-urlencoded",
558
+ },
559
+ },
560
+ paramsType: {
561
+ HostId: "String",
562
+ Password: "String",
563
+ },
564
+ },
565
+ ModifyHyperThreading: {
566
+ url: "/",
567
+ method: "GET",
568
+ config: {
569
+ query: {
570
+ Version: "2015-11-01",
571
+ Action: "ModifyHyperThreading",
572
+ },
573
+ headers: {
574
+ "Content-Type": "application/x-www-form-urlencoded",
575
+ },
576
+ },
577
+ paramsType: {
578
+ HostId: "String",
579
+ HyperThreadingStatus: "String",
580
+ },
581
+ },
582
+ AssociateCluster: {
583
+ url: "/",
584
+ method: "GET",
585
+ config: {
586
+ query: {
587
+ Version: "2015-11-01",
588
+ Action: "AssociateCluster",
589
+ },
590
+ headers: {
591
+ "Content-Type": "application/x-www-form-urlencoded",
592
+ },
593
+ },
594
+ paramsType: {
595
+ HostId: "String",
596
+ ClusterId: "String",
597
+ },
598
+ },
599
+ DisassociateCluster: {
600
+ url: "/",
601
+ method: "GET",
602
+ config: {
603
+ query: {
604
+ Version: "2015-11-01",
605
+ Action: "DisassociateCluster",
606
+ },
607
+ headers: {
608
+ "Content-Type": "application/x-www-form-urlencoded",
609
+ },
610
+ },
611
+ paramsType: {
612
+ HostId: "String",
613
+ },
614
+ },
615
+ DescribeInspections: {
616
+ url: "/",
617
+ method: "GET",
618
+ config: {
619
+ query: {
620
+ Version: "2015-11-01",
621
+ Action: "DescribeInspections",
622
+ },
623
+ headers: {
624
+ "Content-Type": "application/x-www-form-urlencoded",
625
+ },
626
+ },
627
+ paramsType: {
628
+ MaxResults: "Int",
629
+ NextToken: "String",
630
+ Filter: "Filter",
631
+ },
632
+ },
633
+ DescribeEpcStocks: {
634
+ url: "/",
635
+ method: "GET",
636
+ config: {
637
+ query: {
638
+ Version: "2015-11-01",
639
+ Action: "DescribeEpcStocks",
640
+ },
641
+ headers: {
642
+ "Content-Type": "application/x-www-form-urlencoded",
643
+ },
644
+ },
645
+ paramsType: {
646
+ Filter: "Filter",
647
+ },
648
+ },
649
+ DescribeEpcDeviceAttributes: {
650
+ url: "/",
651
+ method: "GET",
652
+ config: {
653
+ query: {
654
+ Version: "2015-11-01",
655
+ Action: "DescribeEpcDeviceAttributes",
656
+ },
657
+ headers: {
658
+ "Content-Type": "application/x-www-form-urlencoded",
659
+ },
660
+ },
661
+ paramsType: {
662
+ Filter: "Filter",
663
+ DeviceAttributeId: "Filter",
664
+ MaxResults: "Int",
665
+ NextToken: "String",
666
+ },
667
+ },
668
+ DescribeProcesses: {
669
+ url: "/",
670
+ method: "GET",
671
+ config: {
672
+ query: {
673
+ Version: "2015-11-01",
674
+ Action: "DescribeProcesses",
675
+ },
676
+ headers: {
677
+ "Content-Type": "application/x-www-form-urlencoded",
678
+ },
679
+ },
680
+ paramsType: {
681
+ OperationProcessId: "Filter",
682
+ Filter: "Filter",
683
+ MaxResults: "Int",
684
+ NextToken: "String",
685
+ },
686
+ },
687
+ CreateProcess: {
688
+ url: "/",
689
+ method: "GET",
690
+ config: {
691
+ query: {
692
+ Version: "2015-11-01",
693
+ Action: "CreateProcess",
694
+ },
695
+ headers: {
696
+ "Content-Type": "application/x-www-form-urlencoded",
697
+ },
698
+ },
699
+ paramsType: {
700
+ ProcessId: "String",
701
+ InstanceId: "String",
702
+ Sn: "String",
703
+ AvailabilityZone: "String",
704
+ CreateTime: "String",
705
+ Attribute: "String",
706
+ Content: "String",
707
+ MachineCount: "Int",
708
+ Title: "String",
709
+ Type: "String",
710
+ Confirm: "String",
711
+ ProcessSource: "Int",
712
+ autoNocCase: "Int",
713
+ LogFileName: "Filter",
714
+ LogFile: "Filter",
715
+ LogUrl: "Filter",
716
+ AuthorizeCableReplace: "Int",
717
+ EventId: "String",
718
+ },
719
+ },
720
+ DeleteProcess: {
721
+ url: "/",
722
+ method: "GET",
723
+ config: {
724
+ query: {
725
+ Version: "2015-11-01",
726
+ Action: "DeleteProcess",
727
+ },
728
+ headers: {
729
+ "Content-Type": "application/x-www-form-urlencoded",
730
+ },
731
+ },
732
+ paramsType: {
733
+ OperationProcessId: "String",
734
+ },
735
+ },
736
+ ReplyProcess: {
737
+ url: "/",
738
+ method: "GET",
739
+ config: {
740
+ query: {
741
+ Version: "2015-11-01",
742
+ Action: "ReplyProcess",
743
+ },
744
+ headers: {
745
+ "Content-Type": "application/x-www-form-urlencoded",
746
+ },
747
+ },
748
+ paramsType: {
749
+ OperationProcessId: "String",
750
+ Remarks: "String",
751
+ },
752
+ },
753
+ DescribeEpcTrashes: {
754
+ url: "/",
755
+ method: "GET",
756
+ config: {
757
+ query: {
758
+ Version: "2015-11-01",
759
+ Action: "DescribeEpcTrashes",
760
+ },
761
+ headers: {
762
+ "Content-Type": "application/x-www-form-urlencoded",
763
+ },
764
+ },
765
+ paramsType: {
766
+ MaxResults: "Int",
767
+ NextToken: "String",
768
+ },
769
+ },
770
+ ReturnEpc: {
771
+ url: "/",
772
+ method: "GET",
773
+ config: {
774
+ query: {
775
+ Version: "2015-11-01",
776
+ Action: "ReturnEpc",
777
+ },
778
+ headers: {
779
+ "Content-Type": "application/x-www-form-urlencoded",
780
+ },
781
+ },
782
+ paramsType: {
783
+ HostId: "String",
784
+ },
785
+ },
786
+ CreateResourceRequirement: {
787
+ url: "/",
788
+ method: "GET",
789
+ config: {
790
+ query: {
791
+ Version: "2015-11-01",
792
+ Action: "CreateResourceRequirement",
793
+ },
794
+ headers: {
795
+ "Content-Type": "application/x-www-form-urlencoded",
796
+ },
797
+ },
798
+ paramsType: {
799
+ AvailabilityZone: "String",
800
+ RequirementCount: "Int",
801
+ ProjectName: "String",
802
+ UsageDate: "String",
803
+ Description: "String",
804
+ HostType: "String",
805
+ },
806
+ },
807
+ AttachVolume: {
808
+ url: "/",
809
+ method: "GET",
810
+ config: {
811
+ query: {
812
+ Version: "2015-11-01",
813
+ Action: "AttachVolume",
814
+ },
815
+ headers: {
816
+ "Content-Type": "application/x-www-form-urlencoded",
817
+ },
818
+ },
819
+ paramsType: {
820
+ HostId: "String",
821
+ VolumeId: "String",
822
+ },
823
+ },
824
+ DetachVolume: {
825
+ url: "/",
826
+ method: "GET",
827
+ config: {
828
+ query: {
829
+ Version: "2015-11-01",
830
+ Action: "DetachVolume",
831
+ },
832
+ headers: {
833
+ "Content-Type": "application/x-www-form-urlencoded",
834
+ },
835
+ },
836
+ paramsType: {
837
+ HostId: "String",
838
+ VolumeId: "String",
839
+ },
840
+ },
841
+ DescribePrice: {
842
+ url: "/",
843
+ method: "GET",
844
+ config: {
845
+ query: {
846
+ Version: "2015-11-01",
847
+ Action: "DescribePrice",
848
+ },
849
+ headers: {
850
+ "Content-Type": "application/x-www-form-urlencoded",
851
+ },
852
+ },
853
+ paramsType: {
854
+ ChargeType: "String",
855
+ HostType: "String",
856
+ AvailabilityZone: "String",
857
+ PurchaseTime: "Int",
858
+ Amount: "Int",
859
+ },
860
+ },
861
+ UpdateConfirm: {
862
+ url: "/",
863
+ method: "GET",
864
+ config: {
865
+ query: {
866
+ Version: "2015-11-01",
867
+ Action: "UpdateConfirm",
868
+ },
869
+ headers: {
870
+ "Content-Type": "application/x-www-form-urlencoded",
871
+ },
872
+ },
873
+ paramsType: {},
874
+ },
875
+ ModifyOverclockingAttribute: {
876
+ url: "/",
877
+ method: "GET",
878
+ config: {
879
+ query: {
880
+ Version: "2015-11-01",
881
+ Action: "ModifyOverclockingAttribute",
882
+ },
883
+ headers: {
884
+ "Content-Type": "application/x-www-form-urlencoded",
885
+ },
886
+ },
887
+ paramsType: {
888
+ HostId: "String",
889
+ OverclockingAttribute: "String",
890
+ },
891
+ },
892
+ CopyImage: {
893
+ url: "/",
894
+ method: "GET",
895
+ config: {
896
+ query: {
897
+ Version: "2015-11-01",
898
+ Action: "CopyImage",
899
+ },
900
+ headers: {
901
+ "Content-Type": "application/x-www-form-urlencoded",
902
+ },
903
+ },
904
+ paramsType: {
905
+ DestinationName: "String",
906
+ ImageId: "String",
907
+ DestinationRegion: "String",
908
+ CopyTag: "String",
909
+ },
910
+ },
911
+ DescribeEpcRaidAttributes: {
912
+ url: "/",
913
+ method: "GET",
914
+ config: {
915
+ query: {
916
+ Version: "2015-11-01",
917
+ Action: "DescribeEpcRaidAttributes",
918
+ },
919
+ headers: {
920
+ "Content-Type": "application/x-www-form-urlencoded",
921
+ },
922
+ },
923
+ paramsType: {
924
+ Filter: "Filter",
925
+ MaxResults: "Int",
926
+ NextToken: "String",
927
+ },
928
+ },
929
+ DescribeGpuImageDriver: {
930
+ url: "/",
931
+ method: "GET",
932
+ config: {
933
+ query: {
934
+ Version: "2015-11-01",
935
+ Action: "DescribeGpuImageDriver",
936
+ },
937
+ headers: {
938
+ "Content-Type": "application/x-www-form-urlencoded",
939
+ },
940
+ },
941
+ paramsType: {
942
+ MaxResults: "Int",
943
+ NextToken: "String",
944
+ ImageId: "String",
945
+ HostType: "String",
946
+ },
947
+ },
948
+ CreateShareImage: {
949
+ url: "/",
950
+ method: "GET",
951
+ config: {
952
+ query: {
953
+ Version: "2015-11-01",
954
+ Action: "CreateShareImage",
955
+ },
956
+ headers: {
957
+ "Content-Type": "application/x-www-form-urlencoded",
958
+ },
959
+ },
960
+ paramsType: {
961
+ ImageId: "String",
962
+ AccountId: "Filter",
963
+ },
964
+ },
965
+ DeleteShareImage: {
966
+ url: "/",
967
+ method: "GET",
968
+ config: {
969
+ query: {
970
+ Version: "2015-11-01",
971
+ Action: "DeleteShareImage",
972
+ },
973
+ headers: {
974
+ "Content-Type": "application/x-www-form-urlencoded",
975
+ },
976
+ },
977
+ paramsType: {
978
+ ImageId: "String",
979
+ AccountId: "Filter",
980
+ },
981
+ },
982
+ DescribeShareImageAccountList: {
983
+ url: "/",
984
+ method: "GET",
985
+ config: {
986
+ query: {
987
+ Version: "2015-11-01",
988
+ Action: "DescribeShareImageAccountList",
989
+ },
990
+ headers: {
991
+ "Content-Type": "application/x-www-form-urlencoded",
992
+ },
993
+ },
994
+ paramsType: {
995
+ ImageId: "String",
996
+ },
997
+ },
998
+ DescribeShareImage: {
999
+ url: "/",
1000
+ method: "GET",
1001
+ config: {
1002
+ query: {
1003
+ Version: "2015-11-01",
1004
+ Action: "DescribeShareImage",
1005
+ },
1006
+ headers: {
1007
+ "Content-Type": "application/x-www-form-urlencoded",
1008
+ },
1009
+ },
1010
+ paramsType: {
1011
+ MaxResults: "Int",
1012
+ NextToken: "String",
1013
+ },
1014
+ },
1015
+ AcceptShareImage: {
1016
+ url: "/",
1017
+ method: "GET",
1018
+ config: {
1019
+ query: {
1020
+ Version: "2015-11-01",
1021
+ Action: "AcceptShareImage",
1022
+ },
1023
+ headers: {
1024
+ "Content-Type": "application/x-www-form-urlencoded",
1025
+ },
1026
+ },
1027
+ paramsType: {
1028
+ ImageId: "String",
1029
+ },
1030
+ },
1031
+ RejectShareImage: {
1032
+ url: "/",
1033
+ method: "GET",
1034
+ config: {
1035
+ query: {
1036
+ Version: "2015-11-01",
1037
+ Action: "RejectShareImage",
1038
+ },
1039
+ headers: {
1040
+ "Content-Type": "application/x-www-form-urlencoded",
1041
+ },
1042
+ },
1043
+ paramsType: {
1044
+ ImageId: "String",
1045
+ },
1046
+ },
1047
+ DescribeManagedAccessory: {
1048
+ url: "/",
1049
+ method: "GET",
1050
+ config: {
1051
+ query: {
1052
+ Version: "2015-11-01",
1053
+ Action: "DescribeManagedAccessory",
1054
+ },
1055
+ headers: {
1056
+ "Content-Type": "application/x-www-form-urlencoded",
1057
+ },
1058
+ },
1059
+ paramsType: {},
1060
+ },
1061
+ AutoDeleteEpc: {
1062
+ url: "/",
1063
+ method: "GET",
1064
+ config: {
1065
+ query: {
1066
+ Version: "2015-11-01",
1067
+ Action: "AutoDeleteEpc",
1068
+ },
1069
+ headers: {
1070
+ "Content-Type": "application/x-www-form-urlencoded",
1071
+ },
1072
+ },
1073
+ paramsType: {
1074
+ HostId: "String",
1075
+ AutoDeleteTime: "String",
1076
+ AutoDeleteEip: "String",
1077
+ },
1078
+ },
1079
+ ExportImage: {
1080
+ url: "/",
1081
+ method: "GET",
1082
+ config: {
1083
+ query: {
1084
+ Version: "2015-11-01",
1085
+ Action: "ExportImage",
1086
+ },
1087
+ headers: {
1088
+ "Content-Type": "application/x-www-form-urlencoded",
1089
+ },
1090
+ },
1091
+ paramsType: {
1092
+ ImageId: "String",
1093
+ Ks3Bucket: "String",
1094
+ ObjectName: "String",
1095
+ },
1096
+ },
1097
+ QueryBuckets: {
1098
+ url: "/",
1099
+ method: "GET",
1100
+ config: {
1101
+ query: {
1102
+ Version: "2015-11-01",
1103
+ Action: "QueryBuckets",
1104
+ },
1105
+ headers: {
1106
+ "Content-Type": "application/x-www-form-urlencoded",
1107
+ },
1108
+ },
1109
+ paramsType: {},
1110
+ },
1111
+ CancelImageExport: {
1112
+ url: "/",
1113
+ method: "GET",
1114
+ config: {
1115
+ query: {
1116
+ Version: "2015-11-01",
1117
+ Action: "CancelImageExport",
1118
+ },
1119
+ headers: {
1120
+ "Content-Type": "application/x-www-form-urlencoded",
1121
+ },
1122
+ },
1123
+ paramsType: {
1124
+ ImageId: "String",
1125
+ },
1126
+ },
1127
+ UseHotStandByEpc: {
1128
+ url: "/",
1129
+ method: "POST",
1130
+ config: {
1131
+ query: {
1132
+ Version: "2015-11-01",
1133
+ Action: "UseHotStandByEpc",
1134
+ },
1135
+ headers: {
1136
+ "Content-Type": "application/x-www-form-urlencoded",
1137
+ },
1138
+ },
1139
+ paramsType: {
1140
+ HostId: "String",
1141
+ HotStandByHostId: "String",
1142
+ RetainInstanceInfo: "String",
1143
+ },
1144
+ },
1145
+ ActivateHotStandbyEpc: {
1146
+ url: "/",
1147
+ method: "GET",
1148
+ config: {
1149
+ query: {
1150
+ Version: "2015-11-01",
1151
+ Action: "ActivateHotStandbyEpc",
1152
+ },
1153
+ headers: {
1154
+ "Content-Type": "application/x-www-form-urlencoded",
1155
+ },
1156
+ },
1157
+ paramsType: {
1158
+ HostId: "String",
1159
+ },
1160
+ },
1161
+ BatchCreateEpc: {
1162
+ url: "/",
1163
+ method: "GET",
1164
+ config: {
1165
+ query: {
1166
+ Version: "2015-11-01",
1167
+ Action: "BatchCreateEpc",
1168
+ },
1169
+ headers: {
1170
+ "Content-Type": "application/x-www-form-urlencoded",
1171
+ },
1172
+ },
1173
+ paramsType: {
1174
+ HostType: "String",
1175
+ AvailabilityZone: "String",
1176
+ Raid: "String",
1177
+ RaidId: "String",
1178
+ ImageId: "String",
1179
+ NetworkInterfaceMode: "String",
1180
+ SubnetId: "String",
1181
+ keyId: "String",
1182
+ SecurityGroupId: "Filter",
1183
+ DNS1: "String",
1184
+ DNS2: "String",
1185
+ HostName: "String",
1186
+ ProjectId: "String",
1187
+ ChargeType: "String",
1188
+ Sn: "String",
1189
+ PurchaseTime: "Int",
1190
+ Password: "String",
1191
+ CloudMonitorAgent: "String",
1192
+ ExtensionSubnetId: "String",
1193
+ ExtensionDNS1: "String",
1194
+ ExtensionDNS2: "String",
1195
+ Description: "String",
1196
+ AddressBandWidth: "String",
1197
+ LineId: "String",
1198
+ BandWidthShareId: "String",
1199
+ AddressChargeType: "String",
1200
+ AddressPurchaseTime: "String",
1201
+ AddressProjectId: "String",
1202
+ SystemFileType: "String",
1203
+ DataFileType: "String",
1204
+ DataDiskCatalogue: "String",
1205
+ DataDiskCatalogueSuffix: "String",
1206
+ HyperThreading: "String",
1207
+ NvmeDataFileType: "String",
1208
+ NvmeDataDiskCatalogue: "String",
1209
+ NvmeDataDiskCatalogueSuffix: "String",
1210
+ BondAttribute: "String",
1211
+ ContainerAgent: "String",
1212
+ KesAgent: "String",
1213
+ KmrAgent: "String",
1214
+ ComputerName: "String",
1215
+ OverclockingAttribute: "String",
1216
+ GpuImageDriverId: "String",
1217
+ SystemVolumeType: "String",
1218
+ SystemVolumeSize: "String",
1219
+ RoceNetwork: "String",
1220
+ ZoneId: "String",
1221
+ ZoneType: "String",
1222
+ HostNameStartNo: "Int",
1223
+ ComputerNameStartNo: "Int",
1224
+ Amount: "Int",
1225
+ TimedRegularization: "String",
1226
+ PasswordInherit: "String",
1227
+ DataDiskMount: "String",
1228
+ StorageRoceNetworkCardName: "String",
1229
+ },
1230
+ },
1231
+ DescribeUseHotStandbyRecords: {
1232
+ url: "/",
1233
+ method: "GET",
1234
+ config: {
1235
+ query: {
1236
+ Version: "2015-11-01",
1237
+ Action: "DescribeUseHotStandbyRecords",
1238
+ },
1239
+ headers: {
1240
+ "Content-Type": "application/x-www-form-urlencoded",
1241
+ },
1242
+ },
1243
+ paramsType: {
1244
+ "Filter.N": "Object",
1245
+ MaxResults: "Int",
1246
+ NextToken: "String",
1247
+ },
1248
+ },
1249
+ DescribeGpuRoceTopology: {
1250
+ url: "/",
1251
+ method: "GET",
1252
+ config: {
1253
+ query: {
1254
+ Version: "2015-11-01",
1255
+ Action: "DescribeGpuRoceTopology",
1256
+ },
1257
+ headers: {
1258
+ "Content-Type": "application/x-www-form-urlencoded",
1259
+ },
1260
+ },
1261
+ paramsType: {
1262
+ SpineName: "String",
1263
+ },
1264
+ },
1265
+ ModifyProcess: {
1266
+ url: "/",
1267
+ method: "POST",
1268
+ config: {
1269
+ query: {
1270
+ Version: "2015-11-01",
1271
+ Action: "ModifyProcess",
1272
+ },
1273
+ headers: {
1274
+ "Content-Type": "application/x-www-form-urlencoded",
1275
+ },
1276
+ },
1277
+ paramsType: {
1278
+ OperationProcessId: "String",
1279
+ Confirm: "String",
1280
+ Status: "String",
1281
+ Content: "String",
1282
+ },
1283
+ },
1284
+ ConfirmProcess: {
1285
+ url: "/",
1286
+ method: "POST",
1287
+ config: {
1288
+ query: {
1289
+ Version: "2015-11-01",
1290
+ Action: "ConfirmProcess",
1291
+ },
1292
+ headers: {
1293
+ "Content-Type": "application/x-www-form-urlencoded",
1294
+ },
1295
+ },
1296
+ paramsType: {
1297
+ OperationProcessId: "String",
1298
+ UserConfirmAvailable: "String",
1299
+ },
1300
+ },
1301
+ DescribeModelConfig: {
1302
+ url: "/",
1303
+ method: "GET",
1304
+ config: {
1305
+ query: {
1306
+ Version: "2015-11-01",
1307
+ Action: "DescribeModelConfig",
1308
+ },
1309
+ headers: {
1310
+ "Content-Type": "application/x-www-form-urlencoded",
1311
+ },
1312
+ },
1313
+ paramsType: {
1314
+ MaxResults: "Int",
1315
+ NextToken: "String",
1316
+ ImageId: "String",
1317
+ HostType: "String",
1318
+ GpuImageDriverId: "String",
1319
+ },
1320
+ },
1321
+ DescribeRoceEvent: {
1322
+ url: "/",
1323
+ method: "GET",
1324
+ config: {
1325
+ query: {
1326
+ Version: "2015-11-01",
1327
+ Action: "DescribeRoceEvent",
1328
+ },
1329
+ headers: {
1330
+ "Content-Type": "application/x-www-form-urlencoded",
1331
+ },
1332
+ },
1333
+ paramsType: {
1334
+ MaxResults: "Int",
1335
+ NextToken: "String",
1336
+ "Filter.N": "Object",
1337
+ "HostId.N": "String",
1338
+ },
1339
+ },
1340
+ DescribeRoceEventDetails: {
1341
+ url: "/",
1342
+ method: "GET",
1343
+ config: {
1344
+ query: {
1345
+ Version: "2015-11-01",
1346
+ Action: "DescribeRoceEventDetails",
1347
+ },
1348
+ headers: {
1349
+ "Content-Type": "application/x-www-form-urlencoded",
1350
+ },
1351
+ },
1352
+ paramsType: {
1353
+ EventId: "String",
1354
+ MaxResults: "Int",
1355
+ NextToken: "String",
1356
+ },
1357
+ },
1358
+ BatchCreateProcess: {
1359
+ url: "/",
1360
+ method: "POST",
1361
+ config: {
1362
+ query: {
1363
+ Version: "2015-11-01",
1364
+ Action: "BatchCreateProcess",
1365
+ },
1366
+ headers: {
1367
+ "Content-Type": "application/x-www-form-urlencoded",
1368
+ },
1369
+ },
1370
+ paramsType: {
1371
+ InstanceId: "Filter",
1372
+ AvailabilityZone: "String",
1373
+ Attribute: "String",
1374
+ Content: "String",
1375
+ LogFileName: "Filter",
1376
+ LogFile: "Filter",
1377
+ LogUrl: "Filter",
1378
+ MachineCount: "Int",
1379
+ Title: "String",
1380
+ Type: "String",
1381
+ Confirm: "String",
1382
+ ProcessSource: "Int",
1383
+ AutoNocCase: "Int",
1384
+ },
1385
+ },
1386
+ CreateInspectHost: {
1387
+ url: "/",
1388
+ method: "GET",
1389
+ config: {
1390
+ query: {
1391
+ Version: "2015-11-01",
1392
+ Action: "CreateInspectHost",
1393
+ },
1394
+ headers: {
1395
+ "Content-Type": "application/x-www-form-urlencoded",
1396
+ },
1397
+ },
1398
+ paramsType: {
1399
+ InspectType: "String",
1400
+ InspectName: "String",
1401
+ HostId: "Filter",
1402
+ },
1403
+ },
1404
+ DescribeInspectHostResults: {
1405
+ url: "/",
1406
+ method: "GET",
1407
+ config: {
1408
+ query: {
1409
+ Version: "2015-11-01",
1410
+ Action: "DescribeInspectHostResults",
1411
+ },
1412
+ headers: {
1413
+ "Content-Type": "application/x-www-form-urlencoded",
1414
+ },
1415
+ },
1416
+ paramsType: {
1417
+ InspectId: "Filter",
1418
+ MaxResults: "Int",
1419
+ NextToken: "String",
1420
+ },
1421
+ },
1422
+ DescribeXidDetails: {
1423
+ url: "/",
1424
+ method: "GET",
1425
+ config: {
1426
+ query: {
1427
+ Version: "2015-11-01",
1428
+ Action: "DescribeXidDetails",
1429
+ },
1430
+ headers: {
1431
+ "Content-Type": "application/x-www-form-urlencoded",
1432
+ },
1433
+ },
1434
+ paramsType: {
1435
+ StartTime: "String",
1436
+ EndTime: "String",
1437
+ InstanceId: "String",
1438
+ Name: "String",
1439
+ MaxResults: "Int",
1440
+ NextToken: "String",
1441
+ },
1442
+ },
1443
+ RunSoInstances: {
1444
+ url: "/",
1445
+ method: "GET",
1446
+ config: {
1447
+ query: {
1448
+ Version: "2015-11-01",
1449
+ Action: "RunSoInstances",
1450
+ },
1451
+ headers: {
1452
+ "Content-Type": "application/x-www-form-urlencoded",
1453
+ },
1454
+ },
1455
+ paramsType: {
1456
+ ImageId: "String",
1457
+ InstanceName: "String",
1458
+ InstanceTypeId: "String",
1459
+ SecurityGroupId: "Filter",
1460
+ SubnetId: "String",
1461
+ Volumes: "Object",
1462
+ ZoneId: "String",
1463
+ Description: "String",
1464
+ HostName: "String",
1465
+ InstanceChargeType: "String",
1466
+ KeepImageCredential: "Boolean",
1467
+ KeyPairName: "String",
1468
+ Password: "String",
1469
+ Period: "Int",
1470
+ SuffixIndex: "Int",
1471
+ UniqueSuffix: "Boolean",
1472
+ InstallRunCommandAgent: "Boolean",
1473
+ Count: "Int",
1474
+ SoZoneId: "String",
1475
+ },
1476
+ },
1477
+ DescribeSoImages: {
1478
+ url: "/",
1479
+ method: "GET",
1480
+ config: {
1481
+ query: {
1482
+ Version: "2015-11-01",
1483
+ Action: "DescribeSoImages",
1484
+ },
1485
+ headers: {
1486
+ "Content-Type": "application/x-www-form-urlencoded",
1487
+ },
1488
+ },
1489
+ paramsType: {
1490
+ ImageId: "Filter",
1491
+ ImageName: "String",
1492
+ IsSupportCloudInit: "Boolean",
1493
+ MaxResults: "Int",
1494
+ NextToken: "String",
1495
+ OsType: "String",
1496
+ Platform: "String",
1497
+ Status: "Filter",
1498
+ Visibility: "String",
1499
+ SoZoneId: "String",
1500
+ },
1501
+ },
1502
+ RebootSoInstance: {
1503
+ url: "/",
1504
+ method: "GET",
1505
+ config: {
1506
+ query: {
1507
+ Version: "2015-11-01",
1508
+ Action: "RebootSoInstance",
1509
+ },
1510
+ headers: {
1511
+ "Content-Type": "application/x-www-form-urlencoded",
1512
+ },
1513
+ },
1514
+ paramsType: {
1515
+ ForceStop: "Boolean",
1516
+ InstanceIds: "Filter",
1517
+ SoZoneId: "String",
1518
+ },
1519
+ },
1520
+ DeleteSoImages: {
1521
+ url: "/",
1522
+ method: "GET",
1523
+ config: {
1524
+ query: {
1525
+ Version: "2015-11-01",
1526
+ Action: "DeleteSoImages",
1527
+ },
1528
+ headers: {
1529
+ "Content-Type": "application/x-www-form-urlencoded",
1530
+ },
1531
+ },
1532
+ paramsType: {
1533
+ ImageIds: "Filter",
1534
+ SoZoneId: "String",
1535
+ },
1536
+ },
1537
+ DeleteSoVpc: {
1538
+ url: "/",
1539
+ method: "GET",
1540
+ config: {
1541
+ query: {
1542
+ Version: "2015-11-01",
1543
+ Action: "DeleteSoVpc",
1544
+ },
1545
+ headers: {
1546
+ "Content-Type": "application/x-www-form-urlencoded",
1547
+ },
1548
+ },
1549
+ paramsType: {
1550
+ VpcId: "String",
1551
+ SoZoneId: "String",
1552
+ },
1553
+ },
1554
+ DescribeSoAvailableResource: {
1555
+ url: "/",
1556
+ method: "GET",
1557
+ config: {
1558
+ query: {
1559
+ Version: "2015-11-01",
1560
+ Action: "DescribeSoAvailableResource",
1561
+ },
1562
+ headers: {
1563
+ "Content-Type": "application/x-www-form-urlencoded",
1564
+ },
1565
+ },
1566
+ paramsType: {
1567
+ InstanceChargeType: "String",
1568
+ InstanceTypeId: "String",
1569
+ ZoneId: "String",
1570
+ SoZoneId: "String",
1571
+ },
1572
+ },
1573
+ DescribeSoInstances: {
1574
+ url: "/",
1575
+ method: "GET",
1576
+ config: {
1577
+ query: {
1578
+ Version: "2015-11-01",
1579
+ Action: "DescribeSoInstances",
1580
+ },
1581
+ headers: {
1582
+ "Content-Type": "application/x-www-form-urlencoded",
1583
+ },
1584
+ },
1585
+ paramsType: {
1586
+ InstanceChargeType: "String",
1587
+ InstanceTypeId: "Filter",
1588
+ KeyPairName: "String",
1589
+ MaxResults: "Int",
1590
+ NextToken: "String",
1591
+ PrimaryIpAddress: "String",
1592
+ Status: "String",
1593
+ VpcId: "String",
1594
+ ZoneId: "String",
1595
+ InstanceIds: "Filter",
1596
+ SoZoneId: "String",
1597
+ },
1598
+ },
1599
+ DeleteSoInstance: {
1600
+ url: "/",
1601
+ method: "POST",
1602
+ config: {
1603
+ query: {
1604
+ Version: "2015-11-01",
1605
+ Action: "DeleteSoInstance",
1606
+ },
1607
+ headers: {
1608
+ "Content-Type": "application/x-www-form-urlencoded",
1609
+ },
1610
+ },
1611
+ paramsType: {
1612
+ InstanceIds: "Filter",
1613
+ SoZoneId: "String",
1614
+ },
1615
+ },
1616
+ DescribeSoSecurityGroups: {
1617
+ url: "/",
1618
+ method: "GET",
1619
+ config: {
1620
+ query: {
1621
+ Version: "2015-11-01",
1622
+ Action: "DescribeSoSecurityGroups",
1623
+ },
1624
+ headers: {
1625
+ "Content-Type": "application/x-www-form-urlencoded",
1626
+ },
1627
+ },
1628
+ paramsType: {
1629
+ VpcId: "String",
1630
+ SecurityGroupIds: "Filter",
1631
+ NextToken: "String",
1632
+ MaxResults: "Int",
1633
+ SoZoneId: "String",
1634
+ },
1635
+ },
1636
+ CreateSoVpc: {
1637
+ url: "/",
1638
+ method: "GET",
1639
+ config: {
1640
+ query: {
1641
+ Version: "2015-11-01",
1642
+ Action: "CreateSoVpc",
1643
+ },
1644
+ headers: {
1645
+ "Content-Type": "application/x-www-form-urlencoded",
1646
+ },
1647
+ },
1648
+ paramsType: {
1649
+ VpcName: "String",
1650
+ Description: "String",
1651
+ CidrBlock: "String",
1652
+ DnsServers: "Filter",
1653
+ AttachVpcId: "String",
1654
+ SoZoneId: "String",
1655
+ },
1656
+ },
1657
+ DeleteSoSubnet: {
1658
+ url: "/",
1659
+ method: "GET",
1660
+ config: {
1661
+ query: {
1662
+ Version: "2015-11-01",
1663
+ Action: "DeleteSoSubnet",
1664
+ },
1665
+ headers: {
1666
+ "Content-Type": "application/x-www-form-urlencoded",
1667
+ },
1668
+ },
1669
+ paramsType: {
1670
+ SubnetId: "String",
1671
+ SoZoneId: "String",
1672
+ },
1673
+ },
1674
+ DescribeSoKeyPairs: {
1675
+ url: "/",
1676
+ method: "GET",
1677
+ config: {
1678
+ query: {
1679
+ Version: "2015-11-01",
1680
+ Action: "DescribeSoKeyPairs",
1681
+ },
1682
+ headers: {
1683
+ "Content-Type": "application/x-www-form-urlencoded",
1684
+ },
1685
+ },
1686
+ paramsType: {
1687
+ FingerPrint: "String",
1688
+ KeyPairIds: "Filter",
1689
+ KeyPairName: "String",
1690
+ KeyPairNames: "Filter",
1691
+ MaxResults: "Int",
1692
+ NextToken: "String",
1693
+ SoZoneId: "String",
1694
+ },
1695
+ },
1696
+ StartSoInstance: {
1697
+ url: "/",
1698
+ method: "POST",
1699
+ config: {
1700
+ query: {
1701
+ Version: "2015-11-01",
1702
+ Action: "StartSoInstance",
1703
+ },
1704
+ headers: {
1705
+ "Content-Type": "application/x-www-form-urlencoded",
1706
+ },
1707
+ },
1708
+ paramsType: {
1709
+ InstanceIds: "Filter",
1710
+ SoZoneId: "String",
1711
+ },
1712
+ },
1713
+ DescribeSoInstanceTypes: {
1714
+ url: "/",
1715
+ method: "GET",
1716
+ config: {
1717
+ query: {
1718
+ Version: "2015-11-01",
1719
+ Action: "DescribeSoInstanceTypes",
1720
+ },
1721
+ headers: {
1722
+ "Content-Type": "application/x-www-form-urlencoded",
1723
+ },
1724
+ },
1725
+ paramsType: {
1726
+ ImageId: "String",
1727
+ InstanceTypeId: "Filter",
1728
+ SoZoneId: "String",
1729
+ },
1730
+ },
1731
+ ModifySoSubnetAttributes: {
1732
+ url: "/",
1733
+ method: "GET",
1734
+ config: {
1735
+ query: {
1736
+ Version: "2015-11-01",
1737
+ Action: "ModifySoSubnetAttributes",
1738
+ },
1739
+ headers: {
1740
+ "Content-Type": "application/x-www-form-urlencoded",
1741
+ },
1742
+ },
1743
+ paramsType: {
1744
+ SubnetId: "String",
1745
+ SubnetName: "String",
1746
+ Description: "String",
1747
+ SoZoneId: "String",
1748
+ },
1749
+ },
1750
+ DescribeSoSubnet: {
1751
+ url: "/",
1752
+ method: "GET",
1753
+ config: {
1754
+ query: {
1755
+ Version: "2015-11-01",
1756
+ Action: "DescribeSoSubnet",
1757
+ },
1758
+ headers: {
1759
+ "Content-Type": "application/x-www-form-urlencoded",
1760
+ },
1761
+ },
1762
+ paramsType: {
1763
+ ZoneId: "String",
1764
+ SubnetName: "String",
1765
+ VpcId: "String",
1766
+ SubnetIds: "Filter",
1767
+ NextToken: "String",
1768
+ MaxResults: "Int",
1769
+ SoZoneId: "String",
1770
+ },
1771
+ },
1772
+ ModifySoKeyPairAttribute: {
1773
+ url: "/",
1774
+ method: "GET",
1775
+ config: {
1776
+ query: {
1777
+ Version: "2015-11-01",
1778
+ Action: "ModifySoKeyPairAttribute",
1779
+ },
1780
+ headers: {
1781
+ "Content-Type": "application/x-www-form-urlencoded",
1782
+ },
1783
+ },
1784
+ paramsType: {
1785
+ Description: "String",
1786
+ KeyPairId: "String",
1787
+ KeyPairName: "String",
1788
+ SoZoneId: "String",
1789
+ },
1790
+ },
1791
+ ModifySoImageAttribute: {
1792
+ url: "/",
1793
+ method: "GET",
1794
+ config: {
1795
+ query: {
1796
+ Version: "2015-11-01",
1797
+ Action: "ModifySoImageAttribute",
1798
+ },
1799
+ headers: {
1800
+ "Content-Type": "application/x-www-form-urlencoded",
1801
+ },
1802
+ },
1803
+ paramsType: {
1804
+ BootMode: "String",
1805
+ Description: "String",
1806
+ ImageId: "String",
1807
+ ImageName: "String",
1808
+ SoZoneId: "String",
1809
+ },
1810
+ },
1811
+ ModifySoVpcAttributes: {
1812
+ url: "/",
1813
+ method: "GET",
1814
+ config: {
1815
+ query: {
1816
+ Version: "2015-11-01",
1817
+ Action: "ModifySoVpcAttributes",
1818
+ },
1819
+ headers: {
1820
+ "Content-Type": "application/x-www-form-urlencoded",
1821
+ },
1822
+ },
1823
+ paramsType: {
1824
+ VpcId: "String",
1825
+ Description: "String",
1826
+ DnsServers: "Filter",
1827
+ VpcName: "String",
1828
+ SoZoneId: "String",
1829
+ },
1830
+ },
1831
+ ReplaceSoSystemVolume: {
1832
+ url: "/",
1833
+ method: "GET",
1834
+ config: {
1835
+ query: {
1836
+ Version: "2015-11-01",
1837
+ Action: "ReplaceSoSystemVolume",
1838
+ },
1839
+ headers: {
1840
+ "Content-Type": "application/x-www-form-urlencoded",
1841
+ },
1842
+ },
1843
+ paramsType: {
1844
+ ImageId: "String",
1845
+ InstanceId: "String",
1846
+ KeepImageCredential: "Boolean",
1847
+ KeyPairName: "String",
1848
+ Password: "String",
1849
+ SoZoneId: "String",
1850
+ },
1851
+ },
1852
+ CreateSoSubnet: {
1853
+ url: "/",
1854
+ method: "GET",
1855
+ config: {
1856
+ query: {
1857
+ Version: "2015-11-01",
1858
+ Action: "CreateSoSubnet",
1859
+ },
1860
+ headers: {
1861
+ "Content-Type": "application/x-www-form-urlencoded",
1862
+ },
1863
+ },
1864
+ paramsType: {
1865
+ VpcId: "String",
1866
+ ZoneId: "String",
1867
+ SubnetName: "String",
1868
+ Description: "String",
1869
+ CidrBlock: "String",
1870
+ SoZoneId: "String",
1871
+ },
1872
+ },
1873
+ DescribeSoVpcs: {
1874
+ url: "/",
1875
+ method: "GET",
1876
+ config: {
1877
+ query: {
1878
+ Version: "2015-11-01",
1879
+ Action: "DescribeSoVpcs",
1880
+ },
1881
+ headers: {
1882
+ "Content-Type": "application/x-www-form-urlencoded",
1883
+ },
1884
+ },
1885
+ paramsType: {
1886
+ VpcName: "String",
1887
+ VpcIds: "Filter",
1888
+ NextToken: "String",
1889
+ MaxResults: "Int",
1890
+ SoZoneId: "String",
1891
+ },
1892
+ },
1893
+ StopSoInstance: {
1894
+ url: "/",
1895
+ method: "POST",
1896
+ config: {
1897
+ query: {
1898
+ Version: "2015-11-01",
1899
+ Action: "StopSoInstance",
1900
+ },
1901
+ headers: {
1902
+ "Content-Type": "application/x-www-form-urlencoded",
1903
+ },
1904
+ },
1905
+ paramsType: {
1906
+ ForceStop: "Boolean",
1907
+ InstanceIds: "Filter",
1908
+ SoZoneId: "String",
1909
+ },
1910
+ },
1911
+ DeleteSoKeyPairs: {
1912
+ url: "/",
1913
+ method: "GET",
1914
+ config: {
1915
+ query: {
1916
+ Version: "2015-11-01",
1917
+ Action: "DeleteSoKeyPairs",
1918
+ },
1919
+ headers: {
1920
+ "Content-Type": "application/x-www-form-urlencoded",
1921
+ },
1922
+ },
1923
+ paramsType: {
1924
+ KeyPairNames: "Filter",
1925
+ SoZoneId: "String",
1926
+ },
1927
+ },
1928
+ CreateSoImage: {
1929
+ url: "/",
1930
+ method: "GET",
1931
+ config: {
1932
+ query: {
1933
+ Version: "2015-11-01",
1934
+ Action: "CreateSoImage",
1935
+ },
1936
+ headers: {
1937
+ "Content-Type": "application/x-www-form-urlencoded",
1938
+ },
1939
+ },
1940
+ paramsType: {
1941
+ ForceStop: "Boolean",
1942
+ InstanceIds: "Filter",
1943
+ SoZoneId: "String",
1944
+ },
1945
+ },
1946
+ ModifySoInstanceAttribute: {
1947
+ url: "/",
1948
+ method: "POST",
1949
+ config: {
1950
+ query: {
1951
+ Version: "2015-11-01",
1952
+ Action: "ModifySoInstanceAttribute",
1953
+ },
1954
+ headers: {
1955
+ "Content-Type": "application/x-www-form-urlencoded",
1956
+ },
1957
+ },
1958
+ paramsType: {
1959
+ DeletionProtection: "String",
1960
+ Description: "String",
1961
+ Hostname: "String",
1962
+ InstanceId: "String",
1963
+ InstanceName: "String",
1964
+ Password: "String",
1965
+ SoZoneId: "String",
1966
+ },
1967
+ },
1968
+ CreateSoKeyPair: {
1969
+ url: "/",
1970
+ method: "GET",
1971
+ config: {
1972
+ query: {
1973
+ Version: "2015-11-01",
1974
+ Action: "CreateSoKeyPair",
1975
+ },
1976
+ headers: {
1977
+ "Content-Type": "application/x-www-form-urlencoded",
1978
+ },
1979
+ },
1980
+ paramsType: {
1981
+ KeyPairName: "String",
1982
+ Description: "String",
1983
+ SoZoneId: "String",
1984
+ },
1985
+ },
1986
+ };
1987
+ };