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.
- package/CHANGELOG.md +216 -0
- package/SERVICE_CHANGELOG.md +258 -57
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdb/v20170320/cdb_client.ts +35 -9
- package/src/services/cdb/v20170320/cdb_models.ts +54 -4
- package/src/services/cls/v20201016/cls_client.ts +1 -1
- package/src/services/cls/v20201016/cls_models.ts +2 -2
- package/src/services/dnspod/v20210323/dnspod_models.ts +5 -0
- package/src/services/domain/v20180808/domain_models.ts +14 -14
- package/src/services/emr/v20190103/emr_models.ts +6 -0
- package/src/services/ess/v20201111/ess_models.ts +32 -4
- package/src/services/facefusion/v20220927/facefusion_models.ts +2 -2
- package/src/services/lcic/v20220817/lcic_models.ts +22 -4
- package/src/services/live/v20180801/live_client.ts +6 -2
- package/src/services/tione/v20211111/tione_models.ts +6 -0
- package/src/services/tsf/v20180326/tsf_models.ts +49 -7
- package/src/services/vpc/v20170312/vpc_client.ts +104 -92
- package/src/services/vpc/v20170312/vpc_models.ts +146 -115
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +14 -4
- package/tencentcloud/services/cdb/v20170320/cdb_client.js +18 -4
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +48 -4
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +1 -1
- package/tencentcloud/services/cls/v20201016/cls_client.js +1 -1
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +2 -2
- package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +4 -0
- package/tencentcloud/services/domain/v20180808/domain_models.d.ts +14 -14
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +5 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +28 -4
- package/tencentcloud/services/facefusion/v20220927/facefusion_models.d.ts +2 -2
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +19 -4
- package/tencentcloud/services/live/v20180801/live_client.d.ts +4 -0
- package/tencentcloud/services/live/v20180801/live_client.js +4 -0
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +5 -0
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +42 -7
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +91 -87
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +93 -87
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +138 -111
- package/test/cdb.v20170320.test.js +22 -2
- 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.
|
|
1021
|
+
it("cdb.v20170320.ModifyBackupEncryptionStatus", async function () {
|
|
1002
1022
|
try {
|
|
1003
|
-
const data = await client.
|
|
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.
|
|
711
|
+
it("vpc.v20170312.DescribeNetworkAccountType", async function () {
|
|
712
712
|
try {
|
|
713
|
-
const data = await client.
|
|
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({})
|