tencentcloud-sdk-nodejs 4.0.900 → 4.0.901

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 (52) hide show
  1. package/CHANGELOG.md +149 -0
  2. package/SERVICE_CHANGELOG.md +251 -8
  3. package/package.json +1 -1
  4. package/products.md +12 -12
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/ccc/v20200210/ccc_models.ts +6 -1
  7. package/src/services/cdb/v20170320/cdb_models.ts +2 -1
  8. package/src/services/ckafka/v20190819/ckafka_client.ts +13 -1
  9. package/src/services/ckafka/v20190819/ckafka_models.ts +72 -8
  10. package/src/services/cvm/v20170312/cvm_client.ts +26 -2
  11. package/src/services/cvm/v20170312/cvm_models.ts +70 -18
  12. package/src/services/cynosdb/v20190107/cynosdb_client.ts +40 -15
  13. package/src/services/cynosdb/v20190107/cynosdb_models.ts +266 -168
  14. package/src/services/es/v20180416/es_models.ts +16 -0
  15. package/src/services/ess/v20201111/ess_client.ts +36 -20
  16. package/src/services/ess/v20201111/ess_models.ts +9 -16
  17. package/src/services/essbasic/v20210526/essbasic_client.ts +44 -29
  18. package/src/services/essbasic/v20210526/essbasic_models.ts +13 -13
  19. package/src/services/hunyuan/v20230901/hunyuan_client.ts +4 -2
  20. package/src/services/hunyuan/v20230901/hunyuan_models.ts +84 -43
  21. package/src/services/mna/v20210119/mna_client.ts +74 -1
  22. package/src/services/mna/v20210119/mna_models.ts +244 -25
  23. package/src/services/vpc/v20170312/vpc_models.ts +9 -9
  24. package/tencentcloud/common/sdk_version.d.ts +1 -1
  25. package/tencentcloud/common/sdk_version.js +1 -1
  26. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +6 -1
  27. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +2 -1
  28. package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +5 -1
  29. package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +6 -0
  30. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +70 -8
  31. package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +9 -1
  32. package/tencentcloud/services/cvm/v20170312/cvm_client.js +12 -0
  33. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +66 -18
  34. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +13 -5
  35. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +18 -6
  36. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +261 -168
  37. package/tencentcloud/services/es/v20180416/es_models.d.ts +16 -0
  38. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +36 -20
  39. package/tencentcloud/services/ess/v20201111/ess_client.js +36 -20
  40. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +9 -16
  41. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +44 -29
  42. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +44 -29
  43. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +13 -13
  44. package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +80 -41
  45. package/tencentcloud/services/mna/v20210119/mna_client.d.ts +25 -1
  46. package/tencentcloud/services/mna/v20210119/mna_client.js +36 -0
  47. package/tencentcloud/services/mna/v20210119/mna_models.d.ts +231 -25
  48. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +9 -9
  49. package/test/ckafka.v20190819.test.js +10 -0
  50. package/test/cvm.v20170312.test.js +20 -0
  51. package/test/cynosdb.v20190107.test.js +24 -4
  52. package/test/mna.v20210119.test.js +60 -0
@@ -168,6 +168,16 @@ it("ckafka.v20190819.ModifyDatahubTopic", async function () {
168
168
  }
169
169
  })
170
170
 
171
+ it("ckafka.v20190819.ModifyRoutineMaintenanceTask", async function () {
172
+ try {
173
+ const data = await client.ModifyRoutineMaintenanceTask({})
174
+ expect(data).to.be.ok
175
+ } catch(error) {
176
+ expect(error.requestId).to.be.ok
177
+ expect(error.code).to.be.ok
178
+ }
179
+ })
180
+
171
181
  it("ckafka.v20190819.CreateTopicIpWhiteList", async function () {
172
182
  try {
173
183
  const data = await client.CreateTopicIpWhiteList({})
@@ -278,6 +278,16 @@ it("cvm.v20170312.DescribeInstancesModification", async function () {
278
278
  }
279
279
  })
280
280
 
281
+ it("cvm.v20170312.ExitRescueMode", async function () {
282
+ try {
283
+ const data = await client.ExitRescueMode({})
284
+ expect(data).to.be.ok
285
+ } catch(error) {
286
+ expect(error.requestId).to.be.ok
287
+ expect(error.code).to.be.ok
288
+ }
289
+ })
290
+
281
291
  it("cvm.v20170312.AssociateInstancesKeyPairs", async function () {
282
292
  try {
283
293
  const data = await client.AssociateInstancesKeyPairs({})
@@ -438,6 +448,16 @@ it("cvm.v20170312.DescribeHosts", async function () {
438
448
  }
439
449
  })
440
450
 
451
+ it("cvm.v20170312.EnterRescueMode", async function () {
452
+ try {
453
+ const data = await client.EnterRescueMode({})
454
+ expect(data).to.be.ok
455
+ } catch(error) {
456
+ expect(error.requestId).to.be.ok
457
+ expect(error.code).to.be.ok
458
+ }
459
+ })
460
+
441
461
  it("cvm.v20170312.DescribeInstancesStatus", async function () {
442
462
  try {
443
463
  const data = await client.DescribeInstancesStatus({})
@@ -168,9 +168,19 @@ it("cynosdb.v20190107.CloseProxy", async function () {
168
168
  }
169
169
  })
170
170
 
171
- it("cynosdb.v20190107.DescribeProxySpecs", async function () {
171
+ it("cynosdb.v20190107.ExportResourcePackageDeductDetails", async function () {
172
172
  try {
173
- const data = await client.DescribeProxySpecs({})
173
+ const data = await client.ExportResourcePackageDeductDetails({})
174
+ expect(data).to.be.ok
175
+ } catch(error) {
176
+ expect(error.requestId).to.be.ok
177
+ expect(error.code).to.be.ok
178
+ }
179
+ })
180
+
181
+ it("cynosdb.v20190107.SwitchProxyVpc", async function () {
182
+ try {
183
+ const data = await client.SwitchProxyVpc({})
174
184
  expect(data).to.be.ok
175
185
  } catch(error) {
176
186
  expect(error.requestId).to.be.ok
@@ -558,6 +568,16 @@ it("cynosdb.v20190107.ModifyParamTemplate", async function () {
558
568
  }
559
569
  })
560
570
 
571
+ it("cynosdb.v20190107.ModifyResourcePackagesDeductionPriority", async function () {
572
+ try {
573
+ const data = await client.ModifyResourcePackagesDeductionPriority({})
574
+ expect(data).to.be.ok
575
+ } catch(error) {
576
+ expect(error.requestId).to.be.ok
577
+ expect(error.code).to.be.ok
578
+ }
579
+ })
580
+
561
581
  it("cynosdb.v20190107.DescribeInstanceParams", async function () {
562
582
  try {
563
583
  const data = await client.DescribeInstanceParams({})
@@ -1208,9 +1228,9 @@ it("cynosdb.v20190107.DescribeMaintainPeriod", async function () {
1208
1228
  }
1209
1229
  })
1210
1230
 
1211
- it("cynosdb.v20190107.SwitchProxyVpc", async function () {
1231
+ it("cynosdb.v20190107.DescribeProxySpecs", async function () {
1212
1232
  try {
1213
- const data = await client.SwitchProxyVpc({})
1233
+ const data = await client.DescribeProxySpecs({})
1214
1234
  expect(data).to.be.ok
1215
1235
  } catch(error) {
1216
1236
  expect(error.requestId).to.be.ok
@@ -158,6 +158,16 @@ it("mna.v20210119.CreateQos", async function () {
158
158
  }
159
159
  })
160
160
 
161
+ it("mna.v20210119.DeleteL3Conn", async function () {
162
+ try {
163
+ const data = await client.DeleteL3Conn({})
164
+ expect(data).to.be.ok
165
+ } catch(error) {
166
+ expect(error.requestId).to.be.ok
167
+ expect(error.code).to.be.ok
168
+ }
169
+ })
170
+
161
171
  it("mna.v20210119.DeleteGroup", async function () {
162
172
  try {
163
173
  const data = await client.DeleteGroup({})
@@ -228,6 +238,16 @@ it("mna.v20210119.GetGroupDetail", async function () {
228
238
  }
229
239
  })
230
240
 
241
+ it("mna.v20210119.UpdateL3Cidr", async function () {
242
+ try {
243
+ const data = await client.UpdateL3Cidr({})
244
+ expect(data).to.be.ok
245
+ } catch(error) {
246
+ expect(error.requestId).to.be.ok
247
+ expect(error.code).to.be.ok
248
+ }
249
+ })
250
+
231
251
  it("mna.v20210119.GetVendorHardware", async function () {
232
252
  try {
233
253
  const data = await client.GetVendorHardware({})
@@ -238,6 +258,16 @@ it("mna.v20210119.GetVendorHardware", async function () {
238
258
  }
239
259
  })
240
260
 
261
+ it("mna.v20210119.AddL3Conn", async function () {
262
+ try {
263
+ const data = await client.AddL3Conn({})
264
+ expect(data).to.be.ok
265
+ } catch(error) {
266
+ expect(error.requestId).to.be.ok
267
+ expect(error.code).to.be.ok
268
+ }
269
+ })
270
+
241
271
  it("mna.v20210119.CreateEncryptedKey", async function () {
242
272
  try {
243
273
  const data = await client.CreateEncryptedKey({})
@@ -308,6 +338,16 @@ it("mna.v20210119.GetHardwareList", async function () {
308
338
  }
309
339
  })
310
340
 
341
+ it("mna.v20210119.UpdateL3Switch", async function () {
342
+ try {
343
+ const data = await client.UpdateL3Switch({})
344
+ expect(data).to.be.ok
345
+ } catch(error) {
346
+ expect(error.requestId).to.be.ok
347
+ expect(error.code).to.be.ok
348
+ }
349
+ })
350
+
311
351
  it("mna.v20210119.AddDevice", async function () {
312
352
  try {
313
353
  const data = await client.AddDevice({})
@@ -358,4 +398,24 @@ it("mna.v20210119.AddGroup", async function () {
358
398
  }
359
399
  })
360
400
 
401
+ it("mna.v20210119.GetL3ConnList", async function () {
402
+ try {
403
+ const data = await client.GetL3ConnList({})
404
+ expect(data).to.be.ok
405
+ } catch(error) {
406
+ expect(error.requestId).to.be.ok
407
+ expect(error.code).to.be.ok
408
+ }
409
+ })
410
+
411
+ it("mna.v20210119.UpdateL3Conn", async function () {
412
+ try {
413
+ const data = await client.UpdateL3Conn({})
414
+ expect(data).to.be.ok
415
+ } catch(error) {
416
+ expect(error.requestId).to.be.ok
417
+ expect(error.code).to.be.ok
418
+ }
419
+ })
420
+
361
421
  })