ksyun-sdk-node 1.4.9 → 1.5.1

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 (108) hide show
  1. package/dist/service/Aicp/v20240612/index.js +24 -0
  2. package/dist/service/Bws/v20160304/index.js +3 -0
  3. package/dist/service/Cdn/v20250503/index.js +0 -333
  4. package/dist/service/Cdn/v3/index.js +600 -0
  5. package/dist/service/Cen/v20160304/index.js +147 -103
  6. package/dist/service/Clickhouse/v20210101/index.js +204 -19
  7. package/dist/service/Cloud_advisor/v20250610/index.js +81 -0
  8. package/dist/service/Dmp/v20240101/index.js +362 -0
  9. package/dist/service/Dts/v20180108/index.js +386 -0
  10. package/dist/service/Ebs/v20160304/index.js +197 -34
  11. package/dist/service/Eip/v20160304/index.js +79 -1
  12. package/dist/service/Influxdb/v20191010/index.js +504 -0
  13. package/dist/service/Kad/v20161122/index.js +32 -0
  14. package/dist/service/Kce/v20190806/index.js +234 -43
  15. package/dist/service/Kce/v20201231/index.js +2 -2
  16. package/dist/service/Kce/v20230101/index.js +193 -0
  17. package/dist/service/Kce/v20230306/index.js +434 -0
  18. package/dist/service/Kce/v20231115/index.js +65 -0
  19. package/dist/service/Kce2/v20230101/index.js +313 -0
  20. package/dist/service/Kci/v20200702/index.js +336 -0
  21. package/dist/service/Kcm/v20160304/index.js +113 -3
  22. package/dist/service/Kcrs/v20211109/index.js +88 -92
  23. package/dist/service/Kcs/v20160701/index.js +165 -23
  24. package/dist/service/Kcs/v20170401/index.js +1 -36
  25. package/dist/service/Kcs/v20240701/index.js +45 -0
  26. package/dist/service/Kead/v20200101/index.js +37 -8
  27. package/dist/service/Ked/v1/index.js +805 -0
  28. package/dist/service/Ket/v20170101/index.js +42 -0
  29. package/dist/service/Kfw/v20160304/index.js +59 -0
  30. package/dist/service/Kingpay/v1/index.js +44 -0
  31. package/dist/service/Knad/v20230323/index.js +333 -0
  32. package/dist/service/Kpfs/v20240930/index.js +181 -0
  33. package/dist/service/Krds/v20160701/index.js +505 -96
  34. package/dist/service/Krds/v20200825/index.js +48 -8
  35. package/dist/service/Milvus/v20231010/index.js +366 -0
  36. package/dist/service/Mongodb/v20170101/index.js +163 -13
  37. package/dist/service/Mongodb/v20250101/index.js +44 -0
  38. package/dist/service/Pdns/v20160304/index.js +636 -0
  39. package/dist/service/Postgresql/v20181225/index.js +950 -0
  40. package/dist/service/Rabbitmq/v20191017/index.js +107 -6
  41. package/dist/service/Relyt/v20240117/index.js +45 -0
  42. package/dist/service/Sks/v20151101/index.js +2 -1
  43. package/dist/service/Slb/v20160304/index.js +426 -53
  44. package/dist/service/Slb/v20250430/index.js +750 -0
  45. package/dist/service/Sqlserver/v20190425/index.js +872 -0
  46. package/dist/service/Sts/v20151101/index.js +19 -0
  47. package/dist/service/Tagv2/v20200901/index.js +42 -6
  48. package/dist/service/Ter/v20240415/index.js +114 -0
  49. package/dist/service/Tidb/v20210520/index.js +415 -21
  50. package/dist/service/Trade/v20250220/index.js +97 -0
  51. package/dist/service/Trade/v20250321/index.js +93 -0
  52. package/dist/service/Trade/v20250828/index.js +56 -0
  53. package/dist/service/Vpc/v20160304/index.js +32 -0
  54. package/dist/service/Waf/v20200707/index.js +188 -5
  55. package/package.json +1 -1
  56. package/src/service/Aicp/v20240612/index.js +24 -0
  57. package/src/service/Bws/v20160304/index.js +3 -0
  58. package/src/service/Cdn/{v20250503 → v3}/index.js +196 -0
  59. package/src/service/Cen/v20160304/index.js +144 -100
  60. package/src/service/Clickhouse/v20210101/index.js +203 -18
  61. package/src/service/Cloud_advisor/v20250610/index.js +73 -0
  62. package/src/service/Dmp/v20240101/index.js +354 -0
  63. package/src/service/Dts/v20180108/index.js +378 -0
  64. package/src/service/Ebs/v20160304/index.js +194 -31
  65. package/src/service/Eip/v20160304/index.js +79 -1
  66. package/src/service/Influxdb/v20191010/index.js +496 -0
  67. package/src/service/Kad/v20161122/index.js +32 -0
  68. package/src/service/Kce/v20190806/index.js +233 -42
  69. package/src/service/Kce/v20201231/index.js +2 -2
  70. package/src/service/Kce/v20230101/index.js +185 -0
  71. package/src/service/Kce/v20230306/index.js +426 -0
  72. package/src/service/Kce/v20231115/index.js +57 -0
  73. package/src/service/Kce2/v20230101/index.js +305 -0
  74. package/src/service/Kci/v20200702/index.js +328 -0
  75. package/src/service/Kcm/v20160304/index.js +110 -0
  76. package/src/service/Kcrs/v20211109/index.js +87 -91
  77. package/src/service/Kcs/v20160701/index.js +164 -22
  78. package/src/service/Kcs/v20170401/index.js +1 -36
  79. package/src/service/Kcs/v20240701/index.js +37 -0
  80. package/src/service/Kead/v20200101/index.js +37 -8
  81. package/src/service/Ked/v1/index.js +797 -0
  82. package/src/service/Ket/v20170101/index.js +42 -0
  83. package/src/service/Kfw/v20160304/index.js +51 -0
  84. package/src/service/Kingpay/v1/index.js +36 -0
  85. package/src/service/Knad/v20230323/index.js +325 -0
  86. package/src/service/Kpfs/v20240930/index.js +173 -0
  87. package/src/service/Krds/v20160701/index.js +502 -93
  88. package/src/service/Krds/v20200825/index.js +48 -8
  89. package/src/service/Milvus/v20231010/index.js +358 -0
  90. package/src/service/Mongodb/v20170101/index.js +162 -12
  91. package/src/service/Mongodb/v20250101/index.js +36 -0
  92. package/src/service/Pdns/v20160304/index.js +628 -0
  93. package/src/service/Postgresql/v20181225/index.js +942 -0
  94. package/src/service/Rabbitmq/v20191017/index.js +107 -6
  95. package/src/service/Relyt/v20240117/index.js +37 -0
  96. package/src/service/Sks/v20151101/index.js +1 -0
  97. package/src/service/Slb/v20160304/index.js +416 -43
  98. package/src/service/Slb/v20250430/index.js +742 -0
  99. package/src/service/Sqlserver/v20190425/index.js +864 -0
  100. package/src/service/Sts/v20151101/index.js +19 -0
  101. package/src/service/Tagv2/v20200901/index.js +42 -6
  102. package/src/service/Ter/v20240415/index.js +106 -0
  103. package/src/service/Tidb/v20210520/index.js +412 -18
  104. package/src/service/Trade/v20250220/index.js +89 -0
  105. package/src/service/Trade/v20250321/index.js +85 -0
  106. package/src/service/Trade/v20250828/index.js +48 -0
  107. package/src/service/Vpc/v20160304/index.js +32 -0
  108. package/src/service/Waf/v20200707/index.js +187 -4
@@ -25,7 +25,7 @@ module.exports = class Client extends BaseClient {
25
25
  Action: "CreateVolume",
26
26
  },
27
27
  headers: {
28
- "Content-Type": "application/json",
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
29
  },
30
30
  },
31
31
  paramsType: {
@@ -38,6 +38,10 @@ module.exports = class Client extends BaseClient {
38
38
  PurchaseTime: "Int",
39
39
  ProjectId: "String",
40
40
  SubOrderId: "String",
41
+ SnapshotId: "String",
42
+ ClusterId: "String",
43
+ Tag: "Filter",
44
+ ProvisionedIops: "Int",
41
45
  },
42
46
  },
43
47
  AttachVolume: {
@@ -49,7 +53,7 @@ module.exports = class Client extends BaseClient {
49
53
  Action: "AttachVolume",
50
54
  },
51
55
  headers: {
52
- "Content-Type": "application/json",
56
+ "Content-Type": "application/x-www-form-urlencoded",
53
57
  },
54
58
  },
55
59
  paramsType: {
@@ -67,7 +71,7 @@ module.exports = class Client extends BaseClient {
67
71
  Action: "DetachVolume",
68
72
  },
69
73
  headers: {
70
- "Content-Type": "application/json",
74
+ "Content-Type": "application/x-www-form-urlencoded",
71
75
  },
72
76
  },
73
77
  paramsType: {
@@ -84,7 +88,7 @@ module.exports = class Client extends BaseClient {
84
88
  Action: "DeleteVolume",
85
89
  },
86
90
  headers: {
87
- "Content-Type": "application/json",
91
+ "Content-Type": "application/x-www-form-urlencoded",
88
92
  },
89
93
  },
90
94
  paramsType: {
@@ -101,7 +105,7 @@ module.exports = class Client extends BaseClient {
101
105
  Action: "ResizeVolume",
102
106
  },
103
107
  headers: {
104
- "Content-Type": "application/json",
108
+ "Content-Type": "application/x-www-form-urlencoded",
105
109
  },
106
110
  },
107
111
  paramsType: {
@@ -120,7 +124,7 @@ module.exports = class Client extends BaseClient {
120
124
  Action: "DescribeVolumes",
121
125
  },
122
126
  headers: {
123
- "Content-Type": "application/json",
127
+ "Content-Type": "application/x-www-form-urlencoded",
124
128
  },
125
129
  },
126
130
  paramsType: {
@@ -131,6 +135,11 @@ module.exports = class Client extends BaseClient {
131
135
  VolumeCreateDate: "String",
132
136
  Marker: "Int",
133
137
  MaxResults: "Int",
138
+ "Tag.N.Key": "String",
139
+ "Tag.N.Value": "String",
140
+ VolumeCreateEndDate: "String",
141
+ VolumeCreateStartDate: "String",
142
+ SourceSnapshotId: "String",
134
143
  },
135
144
  },
136
145
  ModifyVolume: {
@@ -142,7 +151,7 @@ module.exports = class Client extends BaseClient {
142
151
  Action: "ModifyVolume",
143
152
  },
144
153
  headers: {
145
- "Content-Type": "application/json",
154
+ "Content-Type": "application/x-www-form-urlencoded",
146
155
  },
147
156
  },
148
157
  paramsType: {
@@ -161,7 +170,7 @@ module.exports = class Client extends BaseClient {
161
170
  Action: "DescribeEbsInstances",
162
171
  },
163
172
  headers: {
164
- "Content-Type": "application/json",
173
+ "Content-Type": "application/x-www-form-urlencoded",
165
174
  },
166
175
  },
167
176
  paramsType: {
@@ -178,7 +187,7 @@ module.exports = class Client extends BaseClient {
178
187
  Action: "DescribeInstanceVolumes",
179
188
  },
180
189
  headers: {
181
- "Content-Type": "application/json",
190
+ "Content-Type": "application/x-www-form-urlencoded",
182
191
  },
183
192
  },
184
193
  paramsType: {
@@ -194,7 +203,7 @@ module.exports = class Client extends BaseClient {
194
203
  Action: "RenewVolume",
195
204
  },
196
205
  headers: {
197
- "Content-Type": "application/json",
206
+ "Content-Type": "application/x-www-form-urlencoded",
198
207
  },
199
208
  },
200
209
  paramsType: {
@@ -211,7 +220,7 @@ module.exports = class Client extends BaseClient {
211
220
  Action: "UpdateVolumeProject",
212
221
  },
213
222
  headers: {
214
- "Content-Type": "application/json",
223
+ "Content-Type": "application/x-www-form-urlencoded",
215
224
  },
216
225
  },
217
226
  paramsType: {
@@ -228,7 +237,7 @@ module.exports = class Client extends BaseClient {
228
237
  Action: "DescribeSnapshots",
229
238
  },
230
239
  headers: {
231
- "Content-Type": "application/json",
240
+ "Content-Type": "application/x-www-form-urlencoded",
232
241
  },
233
242
  },
234
243
  paramsType: {
@@ -250,7 +259,7 @@ module.exports = class Client extends BaseClient {
250
259
  Action: "CreateSnapshot",
251
260
  },
252
261
  headers: {
253
- "Content-Type": "application/json",
262
+ "Content-Type": "application/x-www-form-urlencoded",
254
263
  },
255
264
  },
256
265
  paramsType: {
@@ -258,6 +267,7 @@ module.exports = class Client extends BaseClient {
258
267
  SnapshotName: "String",
259
268
  SnapshotDesc: "String",
260
269
  SnapshotType: "String",
270
+ ScheduledDeleteTime: "String",
261
271
  },
262
272
  },
263
273
  DeleteSnapshot: {
@@ -269,12 +279,10 @@ module.exports = class Client extends BaseClient {
269
279
  Action: "DeleteSnapshot",
270
280
  },
271
281
  headers: {
272
- "Content-Type": "application/json",
282
+ "Content-Type": "application/x-www-form-urlencoded",
273
283
  },
274
284
  },
275
- paramsType: {
276
- SnapshotId: "String",
277
- },
285
+ paramsType: {},
278
286
  },
279
287
  RollbackSnapshot: {
280
288
  url: "/",
@@ -285,13 +293,10 @@ module.exports = class Client extends BaseClient {
285
293
  Action: "RollbackSnapshot",
286
294
  },
287
295
  headers: {
288
- "Content-Type": "application/json",
296
+ "Content-Type": "application/x-www-form-urlencoded",
289
297
  },
290
298
  },
291
- paramsType: {
292
- VolumeId: "String",
293
- SnapshotId: "String",
294
- },
299
+ paramsType: {},
295
300
  },
296
301
  ModifySnapshot: {
297
302
  url: "/",
@@ -302,14 +307,10 @@ module.exports = class Client extends BaseClient {
302
307
  Action: "ModifySnapshot",
303
308
  },
304
309
  headers: {
305
- "Content-Type": "application/json",
310
+ "Content-Type": "application/x-www-form-urlencoded",
306
311
  },
307
312
  },
308
- paramsType: {
309
- SnapshotId: "String",
310
- SnapshotName: "String",
311
- SnapshotDesc: "String",
312
- },
313
+ paramsType: {},
313
314
  },
314
315
  RecoveryVolume: {
315
316
  url: "/",
@@ -320,7 +321,7 @@ module.exports = class Client extends BaseClient {
320
321
  Action: "RecoveryVolume",
321
322
  },
322
323
  headers: {
323
- "Content-Type": "application/json",
324
+ "Content-Type": "application/x-www-form-urlencoded",
324
325
  },
325
326
  },
326
327
  paramsType: {
@@ -336,7 +337,7 @@ module.exports = class Client extends BaseClient {
336
337
  Action: "ValidateAttachInstance",
337
338
  },
338
339
  headers: {
339
- "Content-Type": "application/json",
340
+ "Content-Type": "application/x-www-form-urlencoded",
340
341
  },
341
342
  },
342
343
  paramsType: {
@@ -344,6 +345,22 @@ module.exports = class Client extends BaseClient {
344
345
  InstanceId: "String",
345
346
  },
346
347
  },
348
+ DescribeAvailabilityZones: {
349
+ url: "/",
350
+ method: "GET",
351
+ config: {
352
+ query: {
353
+ Version: "2016-03-04",
354
+ Action: "DescribeAvailabilityZones",
355
+ },
356
+ headers: {
357
+ "Content-Type": "application/x-www-form-urlencoded",
358
+ },
359
+ },
360
+ paramsType: {
361
+ VolumeType: "String",
362
+ },
363
+ },
347
364
  DescribeCreateVolumePrice: {
348
365
  url: "/",
349
366
  method: "GET",
@@ -353,7 +370,7 @@ module.exports = class Client extends BaseClient {
353
370
  Action: "DescribeCreateVolumePrice",
354
371
  },
355
372
  headers: {
356
- "Content-Type": "application/json",
373
+ "Content-Type": "application/x-www-form-urlencoded",
357
374
  },
358
375
  },
359
376
  paramsType: {
@@ -364,5 +381,151 @@ module.exports = class Client extends BaseClient {
364
381
  PurchaseTime: "Int",
365
382
  },
366
383
  },
384
+ ModifySnapshotType: {
385
+ url: "/",
386
+ method: "POST",
387
+ config: {
388
+ query: {
389
+ Version: "2016-03-04",
390
+ Action: "ModifySnapshotType",
391
+ },
392
+ headers: {
393
+ "Content-Type": "application/x-www-form-urlencoded",
394
+ },
395
+ },
396
+ paramsType: {
397
+ SnapshotIds: "Array",
398
+ SnapshotId: "String",
399
+ },
400
+ },
401
+ ModifyVolumeType: {
402
+ url: "/",
403
+ method: "GET",
404
+ config: {
405
+ query: {
406
+ Version: "2016-03-04",
407
+ Action: "ModifyVolumeType",
408
+ },
409
+ headers: {
410
+ "Content-Type": "application/x-www-form-urlencoded",
411
+ },
412
+ },
413
+ paramsType: {
414
+ VolumeId: "String",
415
+ PerformanceVolumeSize: "String",
416
+ PerformanceLevelVolumeCategory: "String",
417
+ },
418
+ },
419
+ ModifyDedicatedBlockStorageClusterAttribute: {
420
+ url: "/",
421
+ method: "GET",
422
+ config: {
423
+ query: {
424
+ Version: "2016-03-04",
425
+ Action: "ModifyDedicatedBlockStorageClusterAttribute",
426
+ },
427
+ headers: {
428
+ "Content-Type": "application/x-www-form-urlencoded",
429
+ },
430
+ },
431
+ paramsType: {
432
+ DbscId: "String",
433
+ DbscName: "String",
434
+ AvailabilityZone: "String",
435
+ DbscDesc: "String",
436
+ },
437
+ },
438
+ ResizeDedicatedBlockStorageClusters: {
439
+ url: "/",
440
+ method: "GET",
441
+ config: {
442
+ query: {
443
+ Version: "2016-03-04",
444
+ Action: "ResizeDedicatedBlockStorageClusters",
445
+ },
446
+ headers: {
447
+ "Content-Type": "application/x-www-form-urlencoded",
448
+ },
449
+ },
450
+ paramsType: {
451
+ DbscId: "String",
452
+ Size: "Int",
453
+ AvailabilityZone: "String",
454
+ },
455
+ },
456
+ DescribeDedicatedBlockStorageClusters: {
457
+ url: "/",
458
+ method: "GET",
459
+ config: {
460
+ query: {
461
+ Version: "2016-03-04",
462
+ Action: "DescribeDedicatedBlockStorageClusters",
463
+ },
464
+ headers: {
465
+ "Content-Type": "application/x-www-form-urlencoded",
466
+ },
467
+ },
468
+ paramsType: {
469
+ AvailabilityZone: "String",
470
+ DbscName: "String",
471
+ Marker: "Int",
472
+ MaxResults: "Int",
473
+ DbscCreateDate: "String",
474
+ DbscId: "Filter",
475
+ },
476
+ },
477
+ CreateDedicatedBlockStorageCluster: {
478
+ url: "/",
479
+ method: "GET",
480
+ config: {
481
+ query: {
482
+ Version: "2016-03-04",
483
+ Action: "CreateDedicatedBlockStorageCluster",
484
+ },
485
+ headers: {
486
+ "Content-Type": "application/x-www-form-urlencoded",
487
+ },
488
+ },
489
+ paramsType: {
490
+ DbscName: "String",
491
+ DbscType: "String",
492
+ Size: "Int",
493
+ AvailabilityZone: "String",
494
+ PurchaseTime: "Int",
495
+ },
496
+ },
497
+ ModifyVolumePreset: {
498
+ url: "/",
499
+ method: "GET",
500
+ config: {
501
+ query: {
502
+ Version: "2016-03-04",
503
+ Action: "ModifyVolumePreset",
504
+ },
505
+ headers: {
506
+ "Content-Type": "application/x-www-form-urlencoded",
507
+ },
508
+ },
509
+ paramsType: {
510
+ VolumeId: "String",
511
+ ProvisionedIops: "Int",
512
+ },
513
+ },
514
+ GetUpgradeVolumeTypeProcessInfo: {
515
+ url: "/",
516
+ method: "GET",
517
+ config: {
518
+ query: {
519
+ Version: "2016-03-04",
520
+ Action: "GetUpgradeVolumeTypeProcessInfo",
521
+ },
522
+ headers: {
523
+ "Content-Type": "application/x-www-form-urlencoded",
524
+ },
525
+ },
526
+ paramsType: {
527
+ VolumeId: "Filter",
528
+ },
529
+ },
367
530
  };
368
531
  };
@@ -28,7 +28,12 @@ module.exports = class Client extends BaseClient {
28
28
  "Content-Type": "application/x-www-form-urlencoded",
29
29
  },
30
30
  },
31
- paramsType: {},
31
+ paramsType: {
32
+ Uuid: "String",
33
+ Name: "String",
34
+ IpVersion: "String",
35
+ Type: "String",
36
+ },
32
37
  },
33
38
  DescribeAddresses: {
34
39
  url: "/",
@@ -46,6 +51,9 @@ module.exports = class Client extends BaseClient {
46
51
  ProjectId: "Filter",
47
52
  AllocationId: "Filter",
48
53
  Filter: "Filter",
54
+ IsContainTag: "Boolean",
55
+ TagKey: "Filter",
56
+ TagKV: "Filter",
49
57
  MaxResults: "Int",
50
58
  NextToken: "String",
51
59
  State: "String",
@@ -142,5 +150,75 @@ module.exports = class Client extends BaseClient {
142
150
  BandWidth: "Int",
143
151
  },
144
152
  },
153
+ CreateEipPool: {
154
+ url: "/",
155
+ method: "GET",
156
+ config: {
157
+ query: {
158
+ Version: "2016-03-04",
159
+ Action: "CreateEipPool",
160
+ },
161
+ headers: {
162
+ "Content-Type": "application/x-www-form-urlencoded",
163
+ },
164
+ },
165
+ paramsType: {},
166
+ },
167
+ DeleteEipPool: {
168
+ url: "/",
169
+ method: "GET",
170
+ config: {
171
+ query: {
172
+ Version: "2016-03-04",
173
+ Action: "DeleteEipPool",
174
+ },
175
+ headers: {
176
+ "Content-Type": "application/x-www-form-urlencoded",
177
+ },
178
+ },
179
+ paramsType: {},
180
+ },
181
+ ModifyEipPool: {
182
+ url: "/",
183
+ method: "GET",
184
+ config: {
185
+ query: {
186
+ Version: "2016-03-04",
187
+ Action: "ModifyEipPool",
188
+ },
189
+ headers: {
190
+ "Content-Type": "application/x-www-form-urlencoded",
191
+ },
192
+ },
193
+ paramsType: {},
194
+ },
195
+ DescribeEipPools: {
196
+ url: "/",
197
+ method: "GET",
198
+ config: {
199
+ query: {
200
+ Version: "2016-03-04",
201
+ Action: "DescribeEipPools",
202
+ },
203
+ headers: {
204
+ "Content-Type": "application/x-www-form-urlencoded",
205
+ },
206
+ },
207
+ paramsType: {},
208
+ },
209
+ DescribeIpExistEipPoolUse: {
210
+ url: "/",
211
+ method: "GET",
212
+ config: {
213
+ query: {
214
+ Version: "2016-03-04",
215
+ Action: "DescribeIpExistEipPoolUse",
216
+ },
217
+ headers: {
218
+ "Content-Type": "application/x-www-form-urlencoded",
219
+ },
220
+ },
221
+ paramsType: {},
222
+ },
145
223
  };
146
224
  };