tencentcloud-sdk-nodejs 4.0.532 → 4.0.533
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 +284 -0
- package/SERVICE_CHANGELOG.md +448 -40
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdwch/v20200915/cdwch_client.ts +92 -3
- package/src/services/cdwch/v20200915/cdwch_models.ts +532 -33
- package/src/services/clb/v20180317/clb_models.ts +2 -2
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +13 -1
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +39 -14
- package/src/services/dasb/v20191018/dasb_client.ts +1 -0
- package/src/services/dasb/v20191018/dasb_models.ts +29 -0
- package/src/services/dlc/v20210125/dlc_client.ts +12 -0
- package/src/services/dlc/v20210125/dlc_models.ts +68 -5
- package/src/services/iotvideo/v20211125/iotvideo_models.ts +5 -0
- package/src/services/live/v20180801/live_client.ts +106 -20
- package/src/services/live/v20180801/live_models.ts +540 -220
- package/src/services/redis/v20180412/redis_models.ts +1 -1
- package/src/services/tem/v20210701/tem_models.ts +29 -9
- package/src/services/teo/v20220901/teo_models.ts +11 -10
- package/src/services/tiia/v20190529/tiia_models.ts +3 -3
- package/src/services/vm/v20201229/vm_models.ts +6 -0
- package/src/services/vod/v20180717/vod_client.ts +106 -53
- package/src/services/vod/v20180717/vod_models.ts +320 -100
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdwch/v20200915/cdwch_client.d.ts +29 -1
- package/tencentcloud/services/cdwch/v20200915/cdwch_client.js +42 -0
- package/tencentcloud/services/cdwch/v20200915/cdwch_models.d.ts +455 -33
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +2 -2
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +5 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +6 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +34 -12
- package/tencentcloud/services/dasb/v20191018/dasb_models.d.ts +25 -0
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +5 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +6 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +57 -5
- package/tencentcloud/services/iotvideo/v20211125/iotvideo_models.d.ts +4 -0
- package/tencentcloud/services/live/v20180801/live_client.d.ts +34 -5
- package/tencentcloud/services/live/v20180801/live_client.js +49 -6
- package/tencentcloud/services/live/v20180801/live_models.d.ts +453 -176
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +1 -1
- package/tencentcloud/services/tem/v20210701/tem_models.d.ts +25 -9
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +11 -10
- package/tencentcloud/services/tiia/v20190529/tiia_models.d.ts +3 -3
- package/tencentcloud/services/vm/v20201229/vm_models.d.ts +5 -0
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +37 -18
- package/tencentcloud/services/vod/v20180717/vod_client.js +51 -24
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +271 -84
- package/test/cdwch.v20200915.test.js +70 -0
- package/test/cynosdb.v20190107.test.js +10 -0
- package/test/dlc.v20210125.test.js +10 -0
- package/test/live.v20180801.test.js +74 -4
- package/test/vod.v20180717.test.js +54 -14
|
@@ -658,9 +658,9 @@ it("live.v20180801.DescribeLivePullStreamTasks", async function () {
|
|
|
658
658
|
}
|
|
659
659
|
})
|
|
660
660
|
|
|
661
|
-
it("live.v20180801.
|
|
661
|
+
it("live.v20180801.DescribeGroupProIspPlayInfoList", async function () {
|
|
662
662
|
try {
|
|
663
|
-
const data = await client.
|
|
663
|
+
const data = await client.DescribeGroupProIspPlayInfoList({})
|
|
664
664
|
expect(data).to.be.ok
|
|
665
665
|
} catch(error) {
|
|
666
666
|
expect(error.requestId).to.be.ok
|
|
@@ -718,6 +718,16 @@ it("live.v20180801.StopRecordTask", async function () {
|
|
|
718
718
|
}
|
|
719
719
|
})
|
|
720
720
|
|
|
721
|
+
it("live.v20180801.ModifyLiveTimeShiftTemplate", async function () {
|
|
722
|
+
try {
|
|
723
|
+
const data = await client.ModifyLiveTimeShiftTemplate({})
|
|
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
|
it("live.v20180801.DescribeLiveSnapshotTemplates", async function () {
|
|
722
732
|
try {
|
|
723
733
|
const data = await client.DescribeLiveSnapshotTemplates({})
|
|
@@ -818,6 +828,16 @@ it("live.v20180801.DescribeLiveRecordRules", async function () {
|
|
|
818
828
|
}
|
|
819
829
|
})
|
|
820
830
|
|
|
831
|
+
it("live.v20180801.DescribeLiveTimeShiftTemplates", async function () {
|
|
832
|
+
try {
|
|
833
|
+
const data = await client.DescribeLiveTimeShiftTemplates({})
|
|
834
|
+
expect(data).to.be.ok
|
|
835
|
+
} catch(error) {
|
|
836
|
+
expect(error.requestId).to.be.ok
|
|
837
|
+
expect(error.code).to.be.ok
|
|
838
|
+
}
|
|
839
|
+
})
|
|
840
|
+
|
|
821
841
|
it("live.v20180801.DescribeLiveDelayInfoList", async function () {
|
|
822
842
|
try {
|
|
823
843
|
const data = await client.DescribeLiveDelayInfoList({})
|
|
@@ -828,6 +848,16 @@ it("live.v20180801.DescribeLiveDelayInfoList", async function () {
|
|
|
828
848
|
}
|
|
829
849
|
})
|
|
830
850
|
|
|
851
|
+
it("live.v20180801.DescribeLiveTimeShiftRules", async function () {
|
|
852
|
+
try {
|
|
853
|
+
const data = await client.DescribeLiveTimeShiftRules({})
|
|
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
|
+
|
|
831
861
|
it("live.v20180801.DeleteLiveRecordRule", async function () {
|
|
832
862
|
try {
|
|
833
863
|
const data = await client.DeleteLiveRecordRule({})
|
|
@@ -968,6 +998,16 @@ it("live.v20180801.DescribeLiveDomainPlayInfoList", async function () {
|
|
|
968
998
|
}
|
|
969
999
|
})
|
|
970
1000
|
|
|
1001
|
+
it("live.v20180801.CreateLiveTimeShiftRule", async function () {
|
|
1002
|
+
try {
|
|
1003
|
+
const data = await client.CreateLiveTimeShiftRule({})
|
|
1004
|
+
expect(data).to.be.ok
|
|
1005
|
+
} catch(error) {
|
|
1006
|
+
expect(error.requestId).to.be.ok
|
|
1007
|
+
expect(error.code).to.be.ok
|
|
1008
|
+
}
|
|
1009
|
+
})
|
|
1010
|
+
|
|
971
1011
|
it("live.v20180801.DescribeCallbackRecordsList", async function () {
|
|
972
1012
|
try {
|
|
973
1013
|
const data = await client.DescribeCallbackRecordsList({})
|
|
@@ -1048,6 +1088,16 @@ it("live.v20180801.CreateLiveTranscodeRule", async function () {
|
|
|
1048
1088
|
}
|
|
1049
1089
|
})
|
|
1050
1090
|
|
|
1091
|
+
it("live.v20180801.DeleteLiveTimeShiftRule", async function () {
|
|
1092
|
+
try {
|
|
1093
|
+
const data = await client.DeleteLiveTimeShiftRule({})
|
|
1094
|
+
expect(data).to.be.ok
|
|
1095
|
+
} catch(error) {
|
|
1096
|
+
expect(error.requestId).to.be.ok
|
|
1097
|
+
expect(error.code).to.be.ok
|
|
1098
|
+
}
|
|
1099
|
+
})
|
|
1100
|
+
|
|
1051
1101
|
it("live.v20180801.DescribeLiveWatermarkRules", async function () {
|
|
1052
1102
|
try {
|
|
1053
1103
|
const data = await client.DescribeLiveWatermarkRules({})
|
|
@@ -1078,9 +1128,29 @@ it("live.v20180801.CreateLiveSnapshotRule", async function () {
|
|
|
1078
1128
|
}
|
|
1079
1129
|
})
|
|
1080
1130
|
|
|
1081
|
-
it("live.v20180801.
|
|
1131
|
+
it("live.v20180801.CreateLiveTimeShiftTemplate", async function () {
|
|
1082
1132
|
try {
|
|
1083
|
-
const data = await client.
|
|
1133
|
+
const data = await client.CreateLiveTimeShiftTemplate({})
|
|
1134
|
+
expect(data).to.be.ok
|
|
1135
|
+
} catch(error) {
|
|
1136
|
+
expect(error.requestId).to.be.ok
|
|
1137
|
+
expect(error.code).to.be.ok
|
|
1138
|
+
}
|
|
1139
|
+
})
|
|
1140
|
+
|
|
1141
|
+
it("live.v20180801.DeleteLiveTimeShiftTemplate", async function () {
|
|
1142
|
+
try {
|
|
1143
|
+
const data = await client.DeleteLiveTimeShiftTemplate({})
|
|
1144
|
+
expect(data).to.be.ok
|
|
1145
|
+
} catch(error) {
|
|
1146
|
+
expect(error.requestId).to.be.ok
|
|
1147
|
+
expect(error.code).to.be.ok
|
|
1148
|
+
}
|
|
1149
|
+
})
|
|
1150
|
+
|
|
1151
|
+
it("live.v20180801.DescribeProIspPlaySumInfoList", async function () {
|
|
1152
|
+
try {
|
|
1153
|
+
const data = await client.DescribeProIspPlaySumInfoList({})
|
|
1084
1154
|
expect(data).to.be.ok
|
|
1085
1155
|
} catch(error) {
|
|
1086
1156
|
expect(error.requestId).to.be.ok
|
|
@@ -28,9 +28,9 @@ it("vod.v20180717.CreateImageProcessingTemplate", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
-
it("vod.v20180717.
|
|
31
|
+
it("vod.v20180717.CreateRoundPlay", async function () {
|
|
32
32
|
try {
|
|
33
|
-
const data = await client.
|
|
33
|
+
const data = await client.CreateRoundPlay({})
|
|
34
34
|
expect(data).to.be.ok
|
|
35
35
|
} catch(error) {
|
|
36
36
|
expect(error.requestId).to.be.ok
|
|
@@ -98,9 +98,9 @@ it("vod.v20180717.ApplyUpload", async function () {
|
|
|
98
98
|
}
|
|
99
99
|
})
|
|
100
100
|
|
|
101
|
-
it("vod.v20180717.
|
|
101
|
+
it("vod.v20180717.CreateSnapshotByTimeOffsetTemplate", async function () {
|
|
102
102
|
try {
|
|
103
|
-
const data = await client.
|
|
103
|
+
const data = await client.CreateSnapshotByTimeOffsetTemplate({})
|
|
104
104
|
expect(data).to.be.ok
|
|
105
105
|
} catch(error) {
|
|
106
106
|
expect(error.requestId).to.be.ok
|
|
@@ -298,9 +298,9 @@ it("vod.v20180717.DescribeTasks", async function () {
|
|
|
298
298
|
}
|
|
299
299
|
})
|
|
300
300
|
|
|
301
|
-
it("vod.v20180717.
|
|
301
|
+
it("vod.v20180717.CreateWordSamples", async function () {
|
|
302
302
|
try {
|
|
303
|
-
const data = await client.
|
|
303
|
+
const data = await client.CreateWordSamples({})
|
|
304
304
|
expect(data).to.be.ok
|
|
305
305
|
} catch(error) {
|
|
306
306
|
expect(error.requestId).to.be.ok
|
|
@@ -658,9 +658,19 @@ it("vod.v20180717.DescribeImageReviewUsageData", async function () {
|
|
|
658
658
|
}
|
|
659
659
|
})
|
|
660
660
|
|
|
661
|
-
it("vod.v20180717.
|
|
661
|
+
it("vod.v20180717.CreateStorageRegion", async function () {
|
|
662
662
|
try {
|
|
663
|
-
const data = await client.
|
|
663
|
+
const data = await client.CreateStorageRegion({})
|
|
664
|
+
expect(data).to.be.ok
|
|
665
|
+
} catch(error) {
|
|
666
|
+
expect(error.requestId).to.be.ok
|
|
667
|
+
expect(error.code).to.be.ok
|
|
668
|
+
}
|
|
669
|
+
})
|
|
670
|
+
|
|
671
|
+
it("vod.v20180717.ModifyRoundPlay", async function () {
|
|
672
|
+
try {
|
|
673
|
+
const data = await client.ModifyRoundPlay({})
|
|
664
674
|
expect(data).to.be.ok
|
|
665
675
|
} catch(error) {
|
|
666
676
|
expect(error.requestId).to.be.ok
|
|
@@ -678,6 +688,16 @@ it("vod.v20180717.DescribeDailyMediaPlayStat", async function () {
|
|
|
678
688
|
}
|
|
679
689
|
})
|
|
680
690
|
|
|
691
|
+
it("vod.v20180717.DeleteAnimatedGraphicsTemplate", async function () {
|
|
692
|
+
try {
|
|
693
|
+
const data = await client.DeleteAnimatedGraphicsTemplate({})
|
|
694
|
+
expect(data).to.be.ok
|
|
695
|
+
} catch(error) {
|
|
696
|
+
expect(error.requestId).to.be.ok
|
|
697
|
+
expect(error.code).to.be.ok
|
|
698
|
+
}
|
|
699
|
+
})
|
|
700
|
+
|
|
681
701
|
it("vod.v20180717.DeleteContentReviewTemplate", async function () {
|
|
682
702
|
try {
|
|
683
703
|
const data = await client.DeleteContentReviewTemplate({})
|
|
@@ -918,6 +938,16 @@ it("vod.v20180717.CreateSubAppId", async function () {
|
|
|
918
938
|
}
|
|
919
939
|
})
|
|
920
940
|
|
|
941
|
+
it("vod.v20180717.ModifyPersonSample", async function () {
|
|
942
|
+
try {
|
|
943
|
+
const data = await client.ModifyPersonSample({})
|
|
944
|
+
expect(data).to.be.ok
|
|
945
|
+
} catch(error) {
|
|
946
|
+
expect(error.requestId).to.be.ok
|
|
947
|
+
expect(error.code).to.be.ok
|
|
948
|
+
}
|
|
949
|
+
})
|
|
950
|
+
|
|
921
951
|
it("vod.v20180717.DescribeAnimatedGraphicsTemplates", async function () {
|
|
922
952
|
try {
|
|
923
953
|
const data = await client.DescribeAnimatedGraphicsTemplates({})
|
|
@@ -988,9 +1018,9 @@ it("vod.v20180717.CreateClass", async function () {
|
|
|
988
1018
|
}
|
|
989
1019
|
})
|
|
990
1020
|
|
|
991
|
-
it("vod.v20180717.
|
|
1021
|
+
it("vod.v20180717.DescribeRoundPlays", async function () {
|
|
992
1022
|
try {
|
|
993
|
-
const data = await client.
|
|
1023
|
+
const data = await client.DescribeRoundPlays({})
|
|
994
1024
|
expect(data).to.be.ok
|
|
995
1025
|
} catch(error) {
|
|
996
1026
|
expect(error.requestId).to.be.ok
|
|
@@ -1118,9 +1148,9 @@ it("vod.v20180717.DescribeAIRecognitionTemplates", async function () {
|
|
|
1118
1148
|
}
|
|
1119
1149
|
})
|
|
1120
1150
|
|
|
1121
|
-
it("vod.v20180717.
|
|
1151
|
+
it("vod.v20180717.DescribeSuperPlayerConfigs", async function () {
|
|
1122
1152
|
try {
|
|
1123
|
-
const data = await client.
|
|
1153
|
+
const data = await client.DescribeSuperPlayerConfigs({})
|
|
1124
1154
|
expect(data).to.be.ok
|
|
1125
1155
|
} catch(error) {
|
|
1126
1156
|
expect(error.requestId).to.be.ok
|
|
@@ -1348,6 +1378,16 @@ it("vod.v20180717.ModifySubAppIdStatus", async function () {
|
|
|
1348
1378
|
}
|
|
1349
1379
|
})
|
|
1350
1380
|
|
|
1381
|
+
it("vod.v20180717.DeleteRoundPlay", async function () {
|
|
1382
|
+
try {
|
|
1383
|
+
const data = await client.DeleteRoundPlay({})
|
|
1384
|
+
expect(data).to.be.ok
|
|
1385
|
+
} catch(error) {
|
|
1386
|
+
expect(error.requestId).to.be.ok
|
|
1387
|
+
expect(error.code).to.be.ok
|
|
1388
|
+
}
|
|
1389
|
+
})
|
|
1390
|
+
|
|
1351
1391
|
it("vod.v20180717.ModifyContentReviewTemplate", async function () {
|
|
1352
1392
|
try {
|
|
1353
1393
|
const data = await client.ModifyContentReviewTemplate({})
|
|
@@ -1368,9 +1408,9 @@ it("vod.v20180717.DeleteVodDomain", async function () {
|
|
|
1368
1408
|
}
|
|
1369
1409
|
})
|
|
1370
1410
|
|
|
1371
|
-
it("vod.v20180717.
|
|
1411
|
+
it("vod.v20180717.CreateAIRecognitionTemplate", async function () {
|
|
1372
1412
|
try {
|
|
1373
|
-
const data = await client.
|
|
1413
|
+
const data = await client.CreateAIRecognitionTemplate({})
|
|
1374
1414
|
expect(data).to.be.ok
|
|
1375
1415
|
} catch(error) {
|
|
1376
1416
|
expect(error.requestId).to.be.ok
|