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
@@ -32,7 +32,7 @@ module.exports = class Client extends BaseClient {
32
32
  Action: "CreateVolume"
33
33
  },
34
34
  headers: {
35
- "Content-Type": "application/json"
35
+ "Content-Type": "application/x-www-form-urlencoded"
36
36
  }
37
37
  },
38
38
  paramsType: {
@@ -44,7 +44,11 @@ module.exports = class Client extends BaseClient {
44
44
  ChargeType: "String",
45
45
  PurchaseTime: "Int",
46
46
  ProjectId: "String",
47
- SubOrderId: "String"
47
+ SubOrderId: "String",
48
+ SnapshotId: "String",
49
+ ClusterId: "String",
50
+ Tag: "Filter",
51
+ ProvisionedIops: "Int"
48
52
  }
49
53
  },
50
54
  AttachVolume: {
@@ -56,7 +60,7 @@ module.exports = class Client extends BaseClient {
56
60
  Action: "AttachVolume"
57
61
  },
58
62
  headers: {
59
- "Content-Type": "application/json"
63
+ "Content-Type": "application/x-www-form-urlencoded"
60
64
  }
61
65
  },
62
66
  paramsType: {
@@ -74,7 +78,7 @@ module.exports = class Client extends BaseClient {
74
78
  Action: "DetachVolume"
75
79
  },
76
80
  headers: {
77
- "Content-Type": "application/json"
81
+ "Content-Type": "application/x-www-form-urlencoded"
78
82
  }
79
83
  },
80
84
  paramsType: {
@@ -91,7 +95,7 @@ module.exports = class Client extends BaseClient {
91
95
  Action: "DeleteVolume"
92
96
  },
93
97
  headers: {
94
- "Content-Type": "application/json"
98
+ "Content-Type": "application/x-www-form-urlencoded"
95
99
  }
96
100
  },
97
101
  paramsType: {
@@ -108,7 +112,7 @@ module.exports = class Client extends BaseClient {
108
112
  Action: "ResizeVolume"
109
113
  },
110
114
  headers: {
111
- "Content-Type": "application/json"
115
+ "Content-Type": "application/x-www-form-urlencoded"
112
116
  }
113
117
  },
114
118
  paramsType: {
@@ -127,7 +131,7 @@ module.exports = class Client extends BaseClient {
127
131
  Action: "DescribeVolumes"
128
132
  },
129
133
  headers: {
130
- "Content-Type": "application/json"
134
+ "Content-Type": "application/x-www-form-urlencoded"
131
135
  }
132
136
  },
133
137
  paramsType: {
@@ -137,7 +141,12 @@ module.exports = class Client extends BaseClient {
137
141
  VolumeType: "String",
138
142
  VolumeCreateDate: "String",
139
143
  Marker: "Int",
140
- MaxResults: "Int"
144
+ MaxResults: "Int",
145
+ "Tag.N.Key": "String",
146
+ "Tag.N.Value": "String",
147
+ VolumeCreateEndDate: "String",
148
+ VolumeCreateStartDate: "String",
149
+ SourceSnapshotId: "String"
141
150
  }
142
151
  },
143
152
  ModifyVolume: {
@@ -149,7 +158,7 @@ module.exports = class Client extends BaseClient {
149
158
  Action: "ModifyVolume"
150
159
  },
151
160
  headers: {
152
- "Content-Type": "application/json"
161
+ "Content-Type": "application/x-www-form-urlencoded"
153
162
  }
154
163
  },
155
164
  paramsType: {
@@ -168,7 +177,7 @@ module.exports = class Client extends BaseClient {
168
177
  Action: "DescribeEbsInstances"
169
178
  },
170
179
  headers: {
171
- "Content-Type": "application/json"
180
+ "Content-Type": "application/x-www-form-urlencoded"
172
181
  }
173
182
  },
174
183
  paramsType: {
@@ -185,7 +194,7 @@ module.exports = class Client extends BaseClient {
185
194
  Action: "DescribeInstanceVolumes"
186
195
  },
187
196
  headers: {
188
- "Content-Type": "application/json"
197
+ "Content-Type": "application/x-www-form-urlencoded"
189
198
  }
190
199
  },
191
200
  paramsType: {
@@ -201,7 +210,7 @@ module.exports = class Client extends BaseClient {
201
210
  Action: "RenewVolume"
202
211
  },
203
212
  headers: {
204
- "Content-Type": "application/json"
213
+ "Content-Type": "application/x-www-form-urlencoded"
205
214
  }
206
215
  },
207
216
  paramsType: {
@@ -218,7 +227,7 @@ module.exports = class Client extends BaseClient {
218
227
  Action: "UpdateVolumeProject"
219
228
  },
220
229
  headers: {
221
- "Content-Type": "application/json"
230
+ "Content-Type": "application/x-www-form-urlencoded"
222
231
  }
223
232
  },
224
233
  paramsType: {
@@ -235,7 +244,7 @@ module.exports = class Client extends BaseClient {
235
244
  Action: "DescribeSnapshots"
236
245
  },
237
246
  headers: {
238
- "Content-Type": "application/json"
247
+ "Content-Type": "application/x-www-form-urlencoded"
239
248
  }
240
249
  },
241
250
  paramsType: {
@@ -257,14 +266,15 @@ module.exports = class Client extends BaseClient {
257
266
  Action: "CreateSnapshot"
258
267
  },
259
268
  headers: {
260
- "Content-Type": "application/json"
269
+ "Content-Type": "application/x-www-form-urlencoded"
261
270
  }
262
271
  },
263
272
  paramsType: {
264
273
  VolumeId: "String",
265
274
  SnapshotName: "String",
266
275
  SnapshotDesc: "String",
267
- SnapshotType: "String"
276
+ SnapshotType: "String",
277
+ ScheduledDeleteTime: "String"
268
278
  }
269
279
  },
270
280
  DeleteSnapshot: {
@@ -276,12 +286,10 @@ module.exports = class Client extends BaseClient {
276
286
  Action: "DeleteSnapshot"
277
287
  },
278
288
  headers: {
279
- "Content-Type": "application/json"
289
+ "Content-Type": "application/x-www-form-urlencoded"
280
290
  }
281
291
  },
282
- paramsType: {
283
- SnapshotId: "String"
284
- }
292
+ paramsType: {}
285
293
  },
286
294
  RollbackSnapshot: {
287
295
  url: "/",
@@ -292,13 +300,10 @@ module.exports = class Client extends BaseClient {
292
300
  Action: "RollbackSnapshot"
293
301
  },
294
302
  headers: {
295
- "Content-Type": "application/json"
303
+ "Content-Type": "application/x-www-form-urlencoded"
296
304
  }
297
305
  },
298
- paramsType: {
299
- VolumeId: "String",
300
- SnapshotId: "String"
301
- }
306
+ paramsType: {}
302
307
  },
303
308
  ModifySnapshot: {
304
309
  url: "/",
@@ -309,14 +314,10 @@ module.exports = class Client extends BaseClient {
309
314
  Action: "ModifySnapshot"
310
315
  },
311
316
  headers: {
312
- "Content-Type": "application/json"
317
+ "Content-Type": "application/x-www-form-urlencoded"
313
318
  }
314
319
  },
315
- paramsType: {
316
- SnapshotId: "String",
317
- SnapshotName: "String",
318
- SnapshotDesc: "String"
319
- }
320
+ paramsType: {}
320
321
  },
321
322
  RecoveryVolume: {
322
323
  url: "/",
@@ -327,7 +328,7 @@ module.exports = class Client extends BaseClient {
327
328
  Action: "RecoveryVolume"
328
329
  },
329
330
  headers: {
330
- "Content-Type": "application/json"
331
+ "Content-Type": "application/x-www-form-urlencoded"
331
332
  }
332
333
  },
333
334
  paramsType: {
@@ -343,7 +344,7 @@ module.exports = class Client extends BaseClient {
343
344
  Action: "ValidateAttachInstance"
344
345
  },
345
346
  headers: {
346
- "Content-Type": "application/json"
347
+ "Content-Type": "application/x-www-form-urlencoded"
347
348
  }
348
349
  },
349
350
  paramsType: {
@@ -351,6 +352,22 @@ module.exports = class Client extends BaseClient {
351
352
  InstanceId: "String"
352
353
  }
353
354
  },
355
+ DescribeAvailabilityZones: {
356
+ url: "/",
357
+ method: "GET",
358
+ config: {
359
+ query: {
360
+ Version: "2016-03-04",
361
+ Action: "DescribeAvailabilityZones"
362
+ },
363
+ headers: {
364
+ "Content-Type": "application/x-www-form-urlencoded"
365
+ }
366
+ },
367
+ paramsType: {
368
+ VolumeType: "String"
369
+ }
370
+ },
354
371
  DescribeCreateVolumePrice: {
355
372
  url: "/",
356
373
  method: "GET",
@@ -360,7 +377,7 @@ module.exports = class Client extends BaseClient {
360
377
  Action: "DescribeCreateVolumePrice"
361
378
  },
362
379
  headers: {
363
- "Content-Type": "application/json"
380
+ "Content-Type": "application/x-www-form-urlencoded"
364
381
  }
365
382
  },
366
383
  paramsType: {
@@ -370,6 +387,152 @@ module.exports = class Client extends BaseClient {
370
387
  ChargeType: "String",
371
388
  PurchaseTime: "Int"
372
389
  }
390
+ },
391
+ ModifySnapshotType: {
392
+ url: "/",
393
+ method: "POST",
394
+ config: {
395
+ query: {
396
+ Version: "2016-03-04",
397
+ Action: "ModifySnapshotType"
398
+ },
399
+ headers: {
400
+ "Content-Type": "application/x-www-form-urlencoded"
401
+ }
402
+ },
403
+ paramsType: {
404
+ SnapshotIds: "Array",
405
+ SnapshotId: "String"
406
+ }
407
+ },
408
+ ModifyVolumeType: {
409
+ url: "/",
410
+ method: "GET",
411
+ config: {
412
+ query: {
413
+ Version: "2016-03-04",
414
+ Action: "ModifyVolumeType"
415
+ },
416
+ headers: {
417
+ "Content-Type": "application/x-www-form-urlencoded"
418
+ }
419
+ },
420
+ paramsType: {
421
+ VolumeId: "String",
422
+ PerformanceVolumeSize: "String",
423
+ PerformanceLevelVolumeCategory: "String"
424
+ }
425
+ },
426
+ ModifyDedicatedBlockStorageClusterAttribute: {
427
+ url: "/",
428
+ method: "GET",
429
+ config: {
430
+ query: {
431
+ Version: "2016-03-04",
432
+ Action: "ModifyDedicatedBlockStorageClusterAttribute"
433
+ },
434
+ headers: {
435
+ "Content-Type": "application/x-www-form-urlencoded"
436
+ }
437
+ },
438
+ paramsType: {
439
+ DbscId: "String",
440
+ DbscName: "String",
441
+ AvailabilityZone: "String",
442
+ DbscDesc: "String"
443
+ }
444
+ },
445
+ ResizeDedicatedBlockStorageClusters: {
446
+ url: "/",
447
+ method: "GET",
448
+ config: {
449
+ query: {
450
+ Version: "2016-03-04",
451
+ Action: "ResizeDedicatedBlockStorageClusters"
452
+ },
453
+ headers: {
454
+ "Content-Type": "application/x-www-form-urlencoded"
455
+ }
456
+ },
457
+ paramsType: {
458
+ DbscId: "String",
459
+ Size: "Int",
460
+ AvailabilityZone: "String"
461
+ }
462
+ },
463
+ DescribeDedicatedBlockStorageClusters: {
464
+ url: "/",
465
+ method: "GET",
466
+ config: {
467
+ query: {
468
+ Version: "2016-03-04",
469
+ Action: "DescribeDedicatedBlockStorageClusters"
470
+ },
471
+ headers: {
472
+ "Content-Type": "application/x-www-form-urlencoded"
473
+ }
474
+ },
475
+ paramsType: {
476
+ AvailabilityZone: "String",
477
+ DbscName: "String",
478
+ Marker: "Int",
479
+ MaxResults: "Int",
480
+ DbscCreateDate: "String",
481
+ DbscId: "Filter"
482
+ }
483
+ },
484
+ CreateDedicatedBlockStorageCluster: {
485
+ url: "/",
486
+ method: "GET",
487
+ config: {
488
+ query: {
489
+ Version: "2016-03-04",
490
+ Action: "CreateDedicatedBlockStorageCluster"
491
+ },
492
+ headers: {
493
+ "Content-Type": "application/x-www-form-urlencoded"
494
+ }
495
+ },
496
+ paramsType: {
497
+ DbscName: "String",
498
+ DbscType: "String",
499
+ Size: "Int",
500
+ AvailabilityZone: "String",
501
+ PurchaseTime: "Int"
502
+ }
503
+ },
504
+ ModifyVolumePreset: {
505
+ url: "/",
506
+ method: "GET",
507
+ config: {
508
+ query: {
509
+ Version: "2016-03-04",
510
+ Action: "ModifyVolumePreset"
511
+ },
512
+ headers: {
513
+ "Content-Type": "application/x-www-form-urlencoded"
514
+ }
515
+ },
516
+ paramsType: {
517
+ VolumeId: "String",
518
+ ProvisionedIops: "Int"
519
+ }
520
+ },
521
+ GetUpgradeVolumeTypeProcessInfo: {
522
+ url: "/",
523
+ method: "GET",
524
+ config: {
525
+ query: {
526
+ Version: "2016-03-04",
527
+ Action: "GetUpgradeVolumeTypeProcessInfo"
528
+ },
529
+ headers: {
530
+ "Content-Type": "application/x-www-form-urlencoded"
531
+ }
532
+ },
533
+ paramsType: {
534
+ VolumeId: "Filter"
535
+ }
373
536
  }
374
537
  });
375
538
  }
@@ -35,7 +35,12 @@ module.exports = class Client extends BaseClient {
35
35
  "Content-Type": "application/x-www-form-urlencoded"
36
36
  }
37
37
  },
38
- paramsType: {}
38
+ paramsType: {
39
+ Uuid: "String",
40
+ Name: "String",
41
+ IpVersion: "String",
42
+ Type: "String"
43
+ }
39
44
  },
40
45
  DescribeAddresses: {
41
46
  url: "/",
@@ -53,6 +58,9 @@ module.exports = class Client extends BaseClient {
53
58
  ProjectId: "Filter",
54
59
  AllocationId: "Filter",
55
60
  Filter: "Filter",
61
+ IsContainTag: "Boolean",
62
+ TagKey: "Filter",
63
+ TagKV: "Filter",
56
64
  MaxResults: "Int",
57
65
  NextToken: "String",
58
66
  State: "String",
@@ -148,6 +156,76 @@ module.exports = class Client extends BaseClient {
148
156
  AllocationId: "String",
149
157
  BandWidth: "Int"
150
158
  }
159
+ },
160
+ CreateEipPool: {
161
+ url: "/",
162
+ method: "GET",
163
+ config: {
164
+ query: {
165
+ Version: "2016-03-04",
166
+ Action: "CreateEipPool"
167
+ },
168
+ headers: {
169
+ "Content-Type": "application/x-www-form-urlencoded"
170
+ }
171
+ },
172
+ paramsType: {}
173
+ },
174
+ DeleteEipPool: {
175
+ url: "/",
176
+ method: "GET",
177
+ config: {
178
+ query: {
179
+ Version: "2016-03-04",
180
+ Action: "DeleteEipPool"
181
+ },
182
+ headers: {
183
+ "Content-Type": "application/x-www-form-urlencoded"
184
+ }
185
+ },
186
+ paramsType: {}
187
+ },
188
+ ModifyEipPool: {
189
+ url: "/",
190
+ method: "GET",
191
+ config: {
192
+ query: {
193
+ Version: "2016-03-04",
194
+ Action: "ModifyEipPool"
195
+ },
196
+ headers: {
197
+ "Content-Type": "application/x-www-form-urlencoded"
198
+ }
199
+ },
200
+ paramsType: {}
201
+ },
202
+ DescribeEipPools: {
203
+ url: "/",
204
+ method: "GET",
205
+ config: {
206
+ query: {
207
+ Version: "2016-03-04",
208
+ Action: "DescribeEipPools"
209
+ },
210
+ headers: {
211
+ "Content-Type": "application/x-www-form-urlencoded"
212
+ }
213
+ },
214
+ paramsType: {}
215
+ },
216
+ DescribeIpExistEipPoolUse: {
217
+ url: "/",
218
+ method: "GET",
219
+ config: {
220
+ query: {
221
+ Version: "2016-03-04",
222
+ Action: "DescribeIpExistEipPoolUse"
223
+ },
224
+ headers: {
225
+ "Content-Type": "application/x-www-form-urlencoded"
226
+ }
227
+ },
228
+ paramsType: {}
151
229
  }
152
230
  });
153
231
  }