tencentcloud-sdk-nodejs 4.0.775 → 4.0.776
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 +196 -0
- package/SERVICE_CHANGELOG.md +294 -22
- package/package.json +1 -1
- package/products.md +12 -12
- package/src/common/sdk_version.ts +1 -1
- package/src/services/billing/v20180709/billing_client.ts +15 -1
- package/src/services/billing/v20180709/billing_models.ts +186 -9
- package/src/services/cfs/v20190719/cfs_models.ts +4 -0
- package/src/services/cfw/v20190904/cfw_client.ts +1 -0
- package/src/services/cfw/v20190904/cfw_models.ts +40 -0
- package/src/services/ess/v20201111/ess_models.ts +6 -0
- package/src/services/essbasic/v20210526/essbasic_models.ts +143 -178
- package/src/services/mps/v20190612/mps_models.ts +28 -1
- package/src/services/tione/v20211111/tione_models.ts +124 -68
- package/src/services/trtc/v20190722/trtc_models.ts +10 -2
- package/src/services/vod/v20180717/vod_client.ts +101 -13
- package/src/services/vod/v20180717/vod_models.ts +433 -132
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/billing/v20180709/billing_client.d.ts +5 -1
- package/tencentcloud/services/billing/v20180709/billing_client.js +6 -0
- package/tencentcloud/services/billing/v20180709/billing_models.d.ts +182 -9
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +4 -0
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +39 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +6 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +143 -178
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +28 -1
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +124 -68
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +10 -2
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +31 -3
- package/tencentcloud/services/vod/v20180717/vod_client.js +45 -3
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +415 -132
- package/test/billing.v20180709.test.js +10 -0
- package/test/vod.v20180717.test.js +72 -2
|
@@ -68,6 +68,16 @@ it("billing.v20180709.DescribeSavingPlanOverview", async function () {
|
|
|
68
68
|
}
|
|
69
69
|
})
|
|
70
70
|
|
|
71
|
+
it("billing.v20180709.DescribeDosageDetailList", async function () {
|
|
72
|
+
try {
|
|
73
|
+
const data = await client.DescribeDosageDetailList({})
|
|
74
|
+
expect(data).to.be.ok
|
|
75
|
+
} catch(error) {
|
|
76
|
+
expect(error.requestId).to.be.ok
|
|
77
|
+
expect(error.code).to.be.ok
|
|
78
|
+
}
|
|
79
|
+
})
|
|
80
|
+
|
|
71
81
|
it("billing.v20180709.CreateAllocationTag", async function () {
|
|
72
82
|
try {
|
|
73
83
|
const data = await client.CreateAllocationTag({})
|
|
@@ -28,6 +28,16 @@ it("vod.v20180717.CreateImageProcessingTemplate", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
+
it("vod.v20180717.DescribeCLSLogsets", async function () {
|
|
32
|
+
try {
|
|
33
|
+
const data = await client.DescribeCLSLogsets({})
|
|
34
|
+
expect(data).to.be.ok
|
|
35
|
+
} catch(error) {
|
|
36
|
+
expect(error.requestId).to.be.ok
|
|
37
|
+
expect(error.code).to.be.ok
|
|
38
|
+
}
|
|
39
|
+
})
|
|
40
|
+
|
|
31
41
|
it("vod.v20180717.CreateRoundPlay", async function () {
|
|
32
42
|
try {
|
|
33
43
|
const data = await client.CreateRoundPlay({})
|
|
@@ -308,9 +318,19 @@ it("vod.v20180717.DescribeCdnLogs", async function () {
|
|
|
308
318
|
}
|
|
309
319
|
})
|
|
310
320
|
|
|
311
|
-
it("vod.v20180717.
|
|
321
|
+
it("vod.v20180717.CreateCLSLogset", async function () {
|
|
312
322
|
try {
|
|
313
|
-
const data = await client.
|
|
323
|
+
const data = await client.CreateCLSLogset({})
|
|
324
|
+
expect(data).to.be.ok
|
|
325
|
+
} catch(error) {
|
|
326
|
+
expect(error.requestId).to.be.ok
|
|
327
|
+
expect(error.code).to.be.ok
|
|
328
|
+
}
|
|
329
|
+
})
|
|
330
|
+
|
|
331
|
+
it("vod.v20180717.SetCLSPushTarget", async function () {
|
|
332
|
+
try {
|
|
333
|
+
const data = await client.SetCLSPushTarget({})
|
|
314
334
|
expect(data).to.be.ok
|
|
315
335
|
} catch(error) {
|
|
316
336
|
expect(error.requestId).to.be.ok
|
|
@@ -338,6 +358,16 @@ it("vod.v20180717.CreateStorageRegion", async function () {
|
|
|
338
358
|
}
|
|
339
359
|
})
|
|
340
360
|
|
|
361
|
+
it("vod.v20180717.DeleteCLSTopic", async function () {
|
|
362
|
+
try {
|
|
363
|
+
const data = await client.DeleteCLSTopic({})
|
|
364
|
+
expect(data).to.be.ok
|
|
365
|
+
} catch(error) {
|
|
366
|
+
expect(error.requestId).to.be.ok
|
|
367
|
+
expect(error.code).to.be.ok
|
|
368
|
+
}
|
|
369
|
+
})
|
|
370
|
+
|
|
341
371
|
it("vod.v20180717.ResetProcedureTemplate", async function () {
|
|
342
372
|
try {
|
|
343
373
|
const data = await client.ResetProcedureTemplate({})
|
|
@@ -738,6 +768,16 @@ it("vod.v20180717.DescribeImageReviewUsageData", async function () {
|
|
|
738
768
|
}
|
|
739
769
|
})
|
|
740
770
|
|
|
771
|
+
it("vod.v20180717.DescribeCLSPushTargets", async function () {
|
|
772
|
+
try {
|
|
773
|
+
const data = await client.DescribeCLSPushTargets({})
|
|
774
|
+
expect(data).to.be.ok
|
|
775
|
+
} catch(error) {
|
|
776
|
+
expect(error.requestId).to.be.ok
|
|
777
|
+
expect(error.code).to.be.ok
|
|
778
|
+
}
|
|
779
|
+
})
|
|
780
|
+
|
|
741
781
|
it("vod.v20180717.EnhanceMediaByTemplate", async function () {
|
|
742
782
|
try {
|
|
743
783
|
const data = await client.EnhanceMediaByTemplate({})
|
|
@@ -808,6 +848,26 @@ it("vod.v20180717.DeleteAnimatedGraphicsTemplate", async function () {
|
|
|
808
848
|
}
|
|
809
849
|
})
|
|
810
850
|
|
|
851
|
+
it("vod.v20180717.DescribeCLSTopics", async function () {
|
|
852
|
+
try {
|
|
853
|
+
const data = await client.DescribeCLSTopics({})
|
|
854
|
+
expect(data).to.be.ok
|
|
855
|
+
} catch(error) {
|
|
856
|
+
expect(error.requestId).to.be.ok
|
|
857
|
+
expect(error.code).to.be.ok
|
|
858
|
+
}
|
|
859
|
+
})
|
|
860
|
+
|
|
861
|
+
it("vod.v20180717.CreateCLSTopic", async function () {
|
|
862
|
+
try {
|
|
863
|
+
const data = await client.CreateCLSTopic({})
|
|
864
|
+
expect(data).to.be.ok
|
|
865
|
+
} catch(error) {
|
|
866
|
+
expect(error.requestId).to.be.ok
|
|
867
|
+
expect(error.code).to.be.ok
|
|
868
|
+
}
|
|
869
|
+
})
|
|
870
|
+
|
|
811
871
|
it("vod.v20180717.DeleteContentReviewTemplate", async function () {
|
|
812
872
|
try {
|
|
813
873
|
const data = await client.DeleteContentReviewTemplate({})
|
|
@@ -1618,6 +1678,16 @@ it("vod.v20180717.DeleteRoundPlay", async function () {
|
|
|
1618
1678
|
}
|
|
1619
1679
|
})
|
|
1620
1680
|
|
|
1681
|
+
it("vod.v20180717.ModifyClass", async function () {
|
|
1682
|
+
try {
|
|
1683
|
+
const data = await client.ModifyClass({})
|
|
1684
|
+
expect(data).to.be.ok
|
|
1685
|
+
} catch(error) {
|
|
1686
|
+
expect(error.requestId).to.be.ok
|
|
1687
|
+
expect(error.code).to.be.ok
|
|
1688
|
+
}
|
|
1689
|
+
})
|
|
1690
|
+
|
|
1621
1691
|
it("vod.v20180717.ModifyContentReviewTemplate", async function () {
|
|
1622
1692
|
try {
|
|
1623
1693
|
const data = await client.ModifyContentReviewTemplate({})
|