tencentcloud-sdk-nodejs 4.0.537 → 4.0.538

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 (43) hide show
  1. package/CHANGELOG.md +216 -0
  2. package/SERVICE_CHANGELOG.md +258 -57
  3. package/package.json +1 -1
  4. package/products.md +18 -18
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/cdb/v20170320/cdb_client.ts +35 -9
  7. package/src/services/cdb/v20170320/cdb_models.ts +54 -4
  8. package/src/services/cls/v20201016/cls_client.ts +1 -1
  9. package/src/services/cls/v20201016/cls_models.ts +2 -2
  10. package/src/services/dnspod/v20210323/dnspod_models.ts +5 -0
  11. package/src/services/domain/v20180808/domain_models.ts +14 -14
  12. package/src/services/emr/v20190103/emr_models.ts +6 -0
  13. package/src/services/ess/v20201111/ess_models.ts +32 -4
  14. package/src/services/facefusion/v20220927/facefusion_models.ts +2 -2
  15. package/src/services/lcic/v20220817/lcic_models.ts +22 -4
  16. package/src/services/live/v20180801/live_client.ts +6 -2
  17. package/src/services/tione/v20211111/tione_models.ts +6 -0
  18. package/src/services/tsf/v20180326/tsf_models.ts +49 -7
  19. package/src/services/vpc/v20170312/vpc_client.ts +104 -92
  20. package/src/services/vpc/v20170312/vpc_models.ts +146 -115
  21. package/tencentcloud/common/sdk_version.d.ts +1 -1
  22. package/tencentcloud/common/sdk_version.js +1 -1
  23. package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +14 -4
  24. package/tencentcloud/services/cdb/v20170320/cdb_client.js +18 -4
  25. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +48 -4
  26. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +1 -1
  27. package/tencentcloud/services/cls/v20201016/cls_client.js +1 -1
  28. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +2 -2
  29. package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +4 -0
  30. package/tencentcloud/services/domain/v20180808/domain_models.d.ts +14 -14
  31. package/tencentcloud/services/emr/v20190103/emr_models.d.ts +5 -0
  32. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +28 -4
  33. package/tencentcloud/services/facefusion/v20220927/facefusion_models.d.ts +2 -2
  34. package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +19 -4
  35. package/tencentcloud/services/live/v20180801/live_client.d.ts +4 -0
  36. package/tencentcloud/services/live/v20180801/live_client.js +4 -0
  37. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +5 -0
  38. package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +42 -7
  39. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +91 -87
  40. package/tencentcloud/services/vpc/v20170312/vpc_client.js +93 -87
  41. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +138 -111
  42. package/test/cdb.v20170320.test.js +22 -2
  43. package/test/vpc.v20170312.test.js +12 -2
@@ -208,6 +208,16 @@ it("cdb.v20170320.ModifyCDBProxyDesc", async function () {
208
208
  }
209
209
  })
210
210
 
211
+ it("cdb.v20170320.VerifyRootAccount", async function () {
212
+ try {
213
+ const data = await client.VerifyRootAccount({})
214
+ expect(data).to.be.ok
215
+ } catch(error) {
216
+ expect(error.requestId).to.be.ok
217
+ expect(error.code).to.be.ok
218
+ }
219
+ })
220
+
211
221
  it("cdb.v20170320.DescribeRollbackTaskDetail", async function () {
212
222
  try {
213
223
  const data = await client.DescribeRollbackTaskDetail({})
@@ -608,6 +618,16 @@ it("cdb.v20170320.DescribeInstanceParams", async function () {
608
618
  }
609
619
  })
610
620
 
621
+ it("cdb.v20170320.DescribeBackupEncryptionStatus", async function () {
622
+ try {
623
+ const data = await client.DescribeBackupEncryptionStatus({})
624
+ expect(data).to.be.ok
625
+ } catch(error) {
626
+ expect(error.requestId).to.be.ok
627
+ expect(error.code).to.be.ok
628
+ }
629
+ })
630
+
611
631
  it("cdb.v20170320.DescribeProxyCustomConf", async function () {
612
632
  try {
613
633
  const data = await client.DescribeProxyCustomConf({})
@@ -998,9 +1018,9 @@ it("cdb.v20170320.ReloadBalanceProxyNode", async function () {
998
1018
  }
999
1019
  })
1000
1020
 
1001
- it("cdb.v20170320.VerifyRootAccount", async function () {
1021
+ it("cdb.v20170320.ModifyBackupEncryptionStatus", async function () {
1002
1022
  try {
1003
- const data = await client.VerifyRootAccount({})
1023
+ const data = await client.ModifyBackupEncryptionStatus({})
1004
1024
  expect(data).to.be.ok
1005
1025
  } catch(error) {
1006
1026
  expect(error.requestId).to.be.ok
@@ -708,9 +708,9 @@ it("vpc.v20170312.DeleteDirectConnectGatewayCcnRoutes", async function () {
708
708
  }
709
709
  })
710
710
 
711
- it("vpc.v20170312.RejectAttachCcnInstances", async function () {
711
+ it("vpc.v20170312.DescribeNetworkAccountType", async function () {
712
712
  try {
713
- const data = await client.RejectAttachCcnInstances({})
713
+ const data = await client.DescribeNetworkAccountType({})
714
714
  expect(data).to.be.ok
715
715
  } catch(error) {
716
716
  expect(error.requestId).to.be.ok
@@ -1288,6 +1288,16 @@ it("vpc.v20170312.DetachNetworkInterface", async function () {
1288
1288
  }
1289
1289
  })
1290
1290
 
1291
+ it("vpc.v20170312.RejectAttachCcnInstances", async function () {
1292
+ try {
1293
+ const data = await client.RejectAttachCcnInstances({})
1294
+ expect(data).to.be.ok
1295
+ } catch(error) {
1296
+ expect(error.requestId).to.be.ok
1297
+ expect(error.code).to.be.ok
1298
+ }
1299
+ })
1300
+
1291
1301
  it("vpc.v20170312.ModifyServiceTemplateGroupAttribute", async function () {
1292
1302
  try {
1293
1303
  const data = await client.ModifyServiceTemplateGroupAttribute({})