tencentcloud-sdk-nodejs 4.0.254 → 4.0.255
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 +88 -129
- package/package.json +1 -1
- package/products.md +7 -7
- package/src/common/sdk_version.ts +1 -1
- package/src/services/asr/v20190614/asr_client.ts +1 -1
- package/src/services/cii/v20210408/cii_client.ts +13 -0
- package/src/services/cii/v20210408/cii_models.ts +82 -0
- package/src/services/clb/v20180317/clb_client.ts +20 -7
- package/src/services/clb/v20180317/clb_models.ts +25 -0
- package/src/services/cvm/v20170312/cvm_client.ts +17 -0
- package/src/services/cvm/v20170312/cvm_models.ts +30 -0
- package/src/services/thpc/v20211109/thpc_client.ts +2 -0
- package/src/services/thpc/v20211109/thpc_models.ts +40 -0
- package/src/services/vod/v20180717/vod_models.ts +12 -13
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/asr/v20190614/asr_client.d.ts +1 -1
- package/tencentcloud/services/asr/v20190614/asr_client.js +1 -1
- package/tencentcloud/services/cii/v20210408/cii_client.d.ts +5 -1
- package/tencentcloud/services/cii/v20210408/cii_client.js +6 -0
- package/tencentcloud/services/cii/v20210408/cii_models.d.ts +70 -0
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +8 -3
- package/tencentcloud/services/clb/v20180317/clb_client.js +10 -3
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +22 -0
- package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +10 -1
- package/tencentcloud/services/cvm/v20170312/cvm_client.js +11 -0
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +26 -0
- package/tencentcloud/services/thpc/v20211109/thpc_models.d.ts +34 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +8 -9
- package/test/cii.v20210408.test.js +10 -0
- package/test/clb.v20180317.test.js +12 -2
- package/test/cvm.v20170312.test.js +10 -0
|
@@ -58,6 +58,16 @@ it("clb.v20180317.DescribeClassicalLBListeners", async function () {
|
|
|
58
58
|
}
|
|
59
59
|
})
|
|
60
60
|
|
|
61
|
+
it("clb.v20180317.RegisterTargetsWithClassicalLB", async function () {
|
|
62
|
+
try {
|
|
63
|
+
const data = await client.RegisterTargetsWithClassicalLB({})
|
|
64
|
+
expect(data).to.be.ok
|
|
65
|
+
} catch(error) {
|
|
66
|
+
expect(error.requestId).to.be.ok
|
|
67
|
+
expect(error.code).to.be.ok
|
|
68
|
+
}
|
|
69
|
+
})
|
|
70
|
+
|
|
61
71
|
it("clb.v20180317.DescribeCustomizedConfigAssociateList", async function () {
|
|
62
72
|
try {
|
|
63
73
|
const data = await client.DescribeCustomizedConfigAssociateList({})
|
|
@@ -548,9 +558,9 @@ it("clb.v20180317.ModifyDomain", async function () {
|
|
|
548
558
|
}
|
|
549
559
|
})
|
|
550
560
|
|
|
551
|
-
it("clb.v20180317.
|
|
561
|
+
it("clb.v20180317.MigrateClassicalLoadBalancers", async function () {
|
|
552
562
|
try {
|
|
553
|
-
const data = await client.
|
|
563
|
+
const data = await client.MigrateClassicalLoadBalancers({})
|
|
554
564
|
expect(data).to.be.ok
|
|
555
565
|
} catch(error) {
|
|
556
566
|
expect(error.requestId).to.be.ok
|
|
@@ -718,4 +718,14 @@ it("cvm.v20170312.DisassociateSecurityGroups", async function () {
|
|
|
718
718
|
}
|
|
719
719
|
})
|
|
720
720
|
|
|
721
|
+
it("cvm.v20170312.ModifyInstanceDiskType", async function () {
|
|
722
|
+
try {
|
|
723
|
+
const data = await client.ModifyInstanceDiskType({})
|
|
724
|
+
expect(data).to.be.ok
|
|
725
|
+
} catch(error) {
|
|
726
|
+
expect(error.requestId).to.be.ok
|
|
727
|
+
expect(error.code).to.be.ok
|
|
728
|
+
}
|
|
729
|
+
})
|
|
730
|
+
|
|
721
731
|
})
|