tencentcloud-sdk-nodejs 4.0.982 → 4.0.983

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 (47) hide show
  1. package/CHANGELOG.md +587 -0
  2. package/SERVICE_CHANGELOG.md +1008 -112
  3. package/package.json +1 -1
  4. package/products.md +15 -15
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/as/v20180419/as_models.ts +4 -0
  7. package/src/services/batch/v20170312/batch_models.ts +17 -34
  8. package/src/services/billing/v20180709/billing_models.ts +12 -0
  9. package/src/services/cbs/v20170312/cbs_models.ts +1 -1
  10. package/src/services/cvm/v20170312/cvm_models.ts +17 -34
  11. package/src/services/cwp/v20180228/cwp_models.ts +1 -1
  12. package/src/services/cynosdb/v20190107/cynosdb_models.ts +2 -2
  13. package/src/services/ess/v20201111/ess_models.ts +104 -0
  14. package/src/services/essbasic/v20210526/essbasic_models.ts +111 -2
  15. package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +11 -4
  16. package/src/services/live/v20180801/live_client.ts +152 -53
  17. package/src/services/live/v20180801/live_models.ts +443 -110
  18. package/src/services/mrs/v20200910/mrs_models.ts +146 -1472
  19. package/src/services/ocr/v20181119/ocr_client.ts +1 -13
  20. package/src/services/ocr/v20181119/ocr_models.ts +15 -94
  21. package/src/services/teo/v20220901/teo_client.ts +40 -4
  22. package/src/services/teo/v20220901/teo_models.ts +147 -46
  23. package/tencentcloud/common/sdk_version.d.ts +1 -1
  24. package/tencentcloud/common/sdk_version.js +1 -1
  25. package/tencentcloud/services/as/v20180419/as_models.d.ts +4 -0
  26. package/tencentcloud/services/batch/v20170312/batch_models.d.ts +17 -34
  27. package/tencentcloud/services/billing/v20180709/billing_models.d.ts +12 -0
  28. package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +1 -1
  29. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +17 -34
  30. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +1 -1
  31. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +2 -2
  32. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +104 -0
  33. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +111 -2
  34. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +11 -4
  35. package/tencentcloud/services/live/v20180801/live_client.d.ts +48 -15
  36. package/tencentcloud/services/live/v20180801/live_client.js +70 -21
  37. package/tencentcloud/services/live/v20180801/live_models.d.ts +424 -109
  38. package/tencentcloud/services/mrs/v20200910/mrs_models.d.ts +146 -1472
  39. package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +1 -5
  40. package/tencentcloud/services/ocr/v20181119/ocr_client.js +0 -6
  41. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +15 -92
  42. package/tencentcloud/services/teo/v20220901/teo_client.d.ts +13 -1
  43. package/tencentcloud/services/teo/v20220901/teo_client.js +18 -0
  44. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +141 -46
  45. package/test/live.v20180801.test.js +94 -14
  46. package/test/ocr.v20181119.test.js +0 -10
  47. package/test/teo.v20220901.test.js +30 -0
@@ -78,9 +78,9 @@ it("live.v20180801.UpdateLiveWatermark", async function () {
78
78
  }
79
79
  })
80
80
 
81
- it("live.v20180801.ModifyLiveSnapshotTemplate", async function () {
81
+ it("live.v20180801.ModifyLiveRecordTemplate", async function () {
82
82
  try {
83
- const data = await client.ModifyLiveSnapshotTemplate({})
83
+ const data = await client.ModifyLiveRecordTemplate({})
84
84
  expect(data).to.be.ok
85
85
  } catch(error) {
86
86
  expect(error.requestId).to.be.ok
@@ -98,6 +98,16 @@ it("live.v20180801.DescribeRecordTask", async function () {
98
98
  }
99
99
  })
100
100
 
101
+ it("live.v20180801.StopCasterPvw", async function () {
102
+ try {
103
+ const data = await client.StopCasterPvw({})
104
+ expect(data).to.be.ok
105
+ } catch(error) {
106
+ expect(error.requestId).to.be.ok
107
+ expect(error.code).to.be.ok
108
+ }
109
+ })
110
+
101
111
  it("live.v20180801.CreateLiveWatermarkRule", async function () {
102
112
  try {
103
113
  const data = await client.CreateLiveWatermarkRule({})
@@ -328,6 +338,16 @@ it("live.v20180801.DescribeLiveRecordTemplates", async function () {
328
338
  }
329
339
  })
330
340
 
341
+ it("live.v20180801.StopLiveStreamMonitor", async function () {
342
+ try {
343
+ const data = await client.StopLiveStreamMonitor({})
344
+ expect(data).to.be.ok
345
+ } catch(error) {
346
+ expect(error.requestId).to.be.ok
347
+ expect(error.code).to.be.ok
348
+ }
349
+ })
350
+
331
351
  it("live.v20180801.AuthenticateDomainOwner", async function () {
332
352
  try {
333
353
  const data = await client.AuthenticateDomainOwner({})
@@ -338,9 +358,9 @@ it("live.v20180801.AuthenticateDomainOwner", async function () {
338
358
  }
339
359
  })
340
360
 
341
- it("live.v20180801.ModifyLiveStreamMonitor", async function () {
361
+ it("live.v20180801.ModifyLiveSnapshotTemplate", async function () {
342
362
  try {
343
- const data = await client.ModifyLiveStreamMonitor({})
363
+ const data = await client.ModifyLiveSnapshotTemplate({})
344
364
  expect(data).to.be.ok
345
365
  } catch(error) {
346
366
  expect(error.requestId).to.be.ok
@@ -358,9 +378,9 @@ it("live.v20180801.DescribeVisitTopSumInfoList", async function () {
358
378
  }
359
379
  })
360
380
 
361
- it("live.v20180801.ModifyLiveRecordTemplate", async function () {
381
+ it("live.v20180801.ModifyCasterMarkWordInfo", async function () {
362
382
  try {
363
- const data = await client.ModifyLiveRecordTemplate({})
383
+ const data = await client.ModifyCasterMarkWordInfo({})
364
384
  expect(data).to.be.ok
365
385
  } catch(error) {
366
386
  expect(error.requestId).to.be.ok
@@ -408,9 +428,9 @@ it("live.v20180801.DescribeAreaBillBandwidthAndFluxList", async function () {
408
428
  }
409
429
  })
410
430
 
411
- it("live.v20180801.StopCasterPvw", async function () {
431
+ it("live.v20180801.DescribeCasterMarkWordInfos", async function () {
412
432
  try {
413
- const data = await client.StopCasterPvw({})
433
+ const data = await client.DescribeCasterMarkWordInfos({})
414
434
  expect(data).to.be.ok
415
435
  } catch(error) {
416
436
  expect(error.requestId).to.be.ok
@@ -508,6 +528,16 @@ it("live.v20180801.DeleteLiveCallbackTemplate", async function () {
508
528
  }
509
529
  })
510
530
 
531
+ it("live.v20180801.ModifyCasterMarkPicInfo", async function () {
532
+ try {
533
+ const data = await client.ModifyCasterMarkPicInfo({})
534
+ expect(data).to.be.ok
535
+ } catch(error) {
536
+ expect(error.requestId).to.be.ok
537
+ expect(error.code).to.be.ok
538
+ }
539
+ })
540
+
511
541
  it("live.v20180801.DescribeCasterPlayUrl", async function () {
512
542
  try {
513
543
  const data = await client.DescribeCasterPlayUrl({})
@@ -578,6 +608,16 @@ it("live.v20180801.StopScreenshotTask", async function () {
578
608
  }
579
609
  })
580
610
 
611
+ it("live.v20180801.AddCasterMarkWordInfo", async function () {
612
+ try {
613
+ const data = await client.AddCasterMarkWordInfo({})
614
+ expect(data).to.be.ok
615
+ } catch(error) {
616
+ expect(error.requestId).to.be.ok
617
+ expect(error.code).to.be.ok
618
+ }
619
+ })
620
+
581
621
  it("live.v20180801.DescribeMonitorReport", async function () {
582
622
  try {
583
623
  const data = await client.DescribeMonitorReport({})
@@ -878,6 +918,16 @@ it("live.v20180801.ResumeLiveStream", async function () {
878
918
  }
879
919
  })
880
920
 
921
+ it("live.v20180801.DescribeCasterMarkPicInfos", async function () {
922
+ try {
923
+ const data = await client.DescribeCasterMarkPicInfos({})
924
+ expect(data).to.be.ok
925
+ } catch(error) {
926
+ expect(error.requestId).to.be.ok
927
+ expect(error.code).to.be.ok
928
+ }
929
+ })
930
+
881
931
  it("live.v20180801.DescribeLiveCallbackTemplate", async function () {
882
932
  try {
883
933
  const data = await client.DescribeLiveCallbackTemplate({})
@@ -908,6 +958,16 @@ it("live.v20180801.ModifyLiveCallbackTemplate", async function () {
908
958
  }
909
959
  })
910
960
 
961
+ it("live.v20180801.AddCasterMarkPicInfo", async function () {
962
+ try {
963
+ const data = await client.AddCasterMarkPicInfo({})
964
+ expect(data).to.be.ok
965
+ } catch(error) {
966
+ expect(error.requestId).to.be.ok
967
+ expect(error.code).to.be.ok
968
+ }
969
+ })
970
+
911
971
  it("live.v20180801.DeleteLiveTimeShiftTemplate", async function () {
912
972
  try {
913
973
  const data = await client.DeleteLiveTimeShiftTemplate({})
@@ -938,9 +998,9 @@ it("live.v20180801.DescribeStreamPlayInfoList", async function () {
938
998
  }
939
999
  })
940
1000
 
941
- it("live.v20180801.DescribeCasterUserStatus", async function () {
1001
+ it("live.v20180801.CreateCaster", async function () {
942
1002
  try {
943
- const data = await client.DescribeCasterUserStatus({})
1003
+ const data = await client.CreateCaster({})
944
1004
  expect(data).to.be.ok
945
1005
  } catch(error) {
946
1006
  expect(error.requestId).to.be.ok
@@ -1668,9 +1728,9 @@ it("live.v20180801.DescribeCasterDisplayInfo", async function () {
1668
1728
  }
1669
1729
  })
1670
1730
 
1671
- it("live.v20180801.StopLiveStreamMonitor", async function () {
1731
+ it("live.v20180801.ModifyLiveStreamMonitor", async function () {
1672
1732
  try {
1673
- const data = await client.StopLiveStreamMonitor({})
1733
+ const data = await client.ModifyLiveStreamMonitor({})
1674
1734
  expect(data).to.be.ok
1675
1735
  } catch(error) {
1676
1736
  expect(error.requestId).to.be.ok
@@ -1678,9 +1738,9 @@ it("live.v20180801.StopLiveStreamMonitor", async function () {
1678
1738
  }
1679
1739
  })
1680
1740
 
1681
- it("live.v20180801.CreateCaster", async function () {
1741
+ it("live.v20180801.DescribeCasterUserStatus", async function () {
1682
1742
  try {
1683
- const data = await client.CreateCaster({})
1743
+ const data = await client.DescribeCasterUserStatus({})
1684
1744
  expect(data).to.be.ok
1685
1745
  } catch(error) {
1686
1746
  expect(error.requestId).to.be.ok
@@ -1738,6 +1798,26 @@ it("live.v20180801.ModifyCasterInputInfo", async function () {
1738
1798
  }
1739
1799
  })
1740
1800
 
1801
+ it("live.v20180801.DeleteCasterMarkPicInfo", async function () {
1802
+ try {
1803
+ const data = await client.DeleteCasterMarkPicInfo({})
1804
+ expect(data).to.be.ok
1805
+ } catch(error) {
1806
+ expect(error.requestId).to.be.ok
1807
+ expect(error.code).to.be.ok
1808
+ }
1809
+ })
1810
+
1811
+ it("live.v20180801.DeleteCasterMarkWordInfo", async function () {
1812
+ try {
1813
+ const data = await client.DeleteCasterMarkWordInfo({})
1814
+ expect(data).to.be.ok
1815
+ } catch(error) {
1816
+ expect(error.requestId).to.be.ok
1817
+ expect(error.code).to.be.ok
1818
+ }
1819
+ })
1820
+
1741
1821
  it("live.v20180801.DescribeBackupStreamList", async function () {
1742
1822
  try {
1743
1823
  const data = await client.DescribeBackupStreamList({})
@@ -828,16 +828,6 @@ it("ocr.v20181119.RecognizeThaiIDCardOCR", async function () {
828
828
  }
829
829
  })
830
830
 
831
- it("ocr.v20181119.RecognizeKoreanDrivingLicenseOCR", async function () {
832
- try {
833
- const data = await client.RecognizeKoreanDrivingLicenseOCR({})
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
-
841
831
  it("ocr.v20181119.RecognizeGeneralInvoice", async function () {
842
832
  try {
843
833
  const data = await client.RecognizeGeneralInvoice({})
@@ -38,6 +38,16 @@ it("teo.v20220901.DescribeOriginGroupHealthStatus", async function () {
38
38
  }
39
39
  })
40
40
 
41
+ it("teo.v20220901.ExportZoneConfig", async function () {
42
+ try {
43
+ const data = await client.ExportZoneConfig({})
44
+ expect(data).to.be.ok
45
+ } catch(error) {
46
+ expect(error.requestId).to.be.ok
47
+ expect(error.code).to.be.ok
48
+ }
49
+ })
50
+
41
51
  it("teo.v20220901.DeleteFunction", async function () {
42
52
  try {
43
53
  const data = await client.DeleteFunction({})
@@ -1108,6 +1118,16 @@ it("teo.v20220901.DescribeZoneSetting", async function () {
1108
1118
  }
1109
1119
  })
1110
1120
 
1121
+ it("teo.v20220901.DescribeZoneConfigImportResult", async function () {
1122
+ try {
1123
+ const data = await client.DescribeZoneConfigImportResult({})
1124
+ expect(data).to.be.ok
1125
+ } catch(error) {
1126
+ expect(error.requestId).to.be.ok
1127
+ expect(error.code).to.be.ok
1128
+ }
1129
+ })
1130
+
1111
1131
  it("teo.v20220901.DeleteSecurityIPGroup", async function () {
1112
1132
  try {
1113
1133
  const data = await client.DeleteSecurityIPGroup({})
@@ -1178,6 +1198,16 @@ it("teo.v20220901.DescribeSecurityIPGroup", async function () {
1178
1198
  }
1179
1199
  })
1180
1200
 
1201
+ it("teo.v20220901.ImportZoneConfig", async function () {
1202
+ try {
1203
+ const data = await client.ImportZoneConfig({})
1204
+ expect(data).to.be.ok
1205
+ } catch(error) {
1206
+ expect(error.requestId).to.be.ok
1207
+ expect(error.code).to.be.ok
1208
+ }
1209
+ })
1210
+
1181
1211
  it("teo.v20220901.ModifyCustomErrorPage", async function () {
1182
1212
  try {
1183
1213
  const data = await client.ModifyCustomErrorPage({})