tencentcloud-sdk-nodejs-intl-en 3.0.352 → 3.0.356

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 (30) hide show
  1. package/package.json +1 -1
  2. package/tencentcloud/antiddos/v20200309/models.js +2 -1
  3. package/tencentcloud/apigateway/v20180808/models.js +30 -2
  4. package/tencentcloud/cdn/v20180606/cdn_client.js +1 -0
  5. package/tencentcloud/cdn/v20180606/models.js +94 -3
  6. package/tencentcloud/ckafka/v20190819/ckafka_client.js +1 -0
  7. package/tencentcloud/ckafka/v20190819/models.js +89 -11
  8. package/tencentcloud/cls/v20201016/cls_client.js +75 -21
  9. package/tencentcloud/cls/v20201016/models.js +564 -120
  10. package/tencentcloud/common/sdk_version.js +1 -1
  11. package/tencentcloud/emr/v20190103/models.js +70 -0
  12. package/tencentcloud/faceid/v20180301/faceid_client.js +13 -0
  13. package/tencentcloud/faceid/v20180301/models.js +114 -0
  14. package/tencentcloud/gaap/v20180529/models.js +7 -0
  15. package/tencentcloud/index.js +1 -0
  16. package/tencentcloud/lighthouse/v20200324/models.js +11 -5
  17. package/tencentcloud/mariadb/v20170312/mariadb_client.js +13 -0
  18. package/tencentcloud/mariadb/v20170312/models.js +72 -0
  19. package/tencentcloud/mongodb/v20190725/models.js +501 -43
  20. package/tencentcloud/mongodb/v20190725/mongodb_client.js +18 -1
  21. package/tencentcloud/postgres/v20170312/models.js +51 -14
  22. package/tencentcloud/privatedns/v20201028/models.js +344 -59
  23. package/tencentcloud/privatedns/v20201028/privatedns_client.js +43 -3
  24. package/tencentcloud/tdmq/index.js +3 -0
  25. package/tencentcloud/tdmq/v20200217/index.js +4 -0
  26. package/tencentcloud/tdmq/v20200217/models.js +9546 -0
  27. package/tencentcloud/tdmq/v20200217/tdmq_client.js +1003 -0
  28. package/tencentcloud/tke/v20180525/models.js +1 -1
  29. package/tencentcloud/vod/v20180717/models.js +333 -24
  30. package/tencentcloud/vod/v20180717/vod_client.js +3 -2
@@ -6319,7 +6319,7 @@ The following conditions are required to use ipvs-bpf network mode:
6319
6319
  this.AuditLogTopicId = null;
6320
6320
 
6321
6321
  /**
6322
- * Specifies whether the VPC CNI type is multi-IP ENI or or independent ENI.
6322
+ * Specifies the ENI type. Values: `tke-route-eni` (multi-IP shared ENI); `tke-direct-eni` (independent ENI). It defaults to `tke-route-eni`.
6323
6323
  * @type {string || null}
6324
6324
  */
6325
6325
  this.VpcCniType = null;
@@ -1192,11 +1192,24 @@ class AiReviewProhibitedOcrTaskOutput extends AbstractModel {
1192
1192
  this.Suggestion = null;
1193
1193
 
1194
1194
  /**
1195
- * List of video segments that contain the OCR-detected prohibited information in text.
1195
+ * List of video segments that contain OCR-detected prohibited information
1196
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
1196
1197
  * @type {Array.<MediaContentReviewOcrTextSegmentItem> || null}
1197
1198
  */
1198
1199
  this.SegmentSet = null;
1199
1200
 
1201
+ /**
1202
+ * URL to the file for video segments that contain OCR-detected prohibited information. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
1203
+ * @type {string || null}
1204
+ */
1205
+ this.SegmentSetFileUrl = null;
1206
+
1207
+ /**
1208
+ * Expiration time of the URL for video segments that contain OCR-detected prohibited information, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
1209
+ * @type {string || null}
1210
+ */
1211
+ this.SegmentSetFileUrlExpireTime = null;
1212
+
1200
1213
  }
1201
1214
 
1202
1215
  /**
@@ -1217,6 +1230,8 @@ class AiReviewProhibitedOcrTaskOutput extends AbstractModel {
1217
1230
  this.SegmentSet.push(obj);
1218
1231
  }
1219
1232
  }
1233
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
1234
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
1220
1235
 
1221
1236
  }
1222
1237
  }
@@ -1310,11 +1325,24 @@ class AiAnalysisTaskCoverOutput extends AbstractModel {
1310
1325
  super();
1311
1326
 
1312
1327
  /**
1313
- * List of intelligently generated covers.
1328
+ * List of intelligently generated thumbnails
1329
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `CoverSetFileUrl`.
1314
1330
  * @type {Array.<MediaAiAnalysisCoverItem> || null}
1315
1331
  */
1316
1332
  this.CoverSet = null;
1317
1333
 
1334
+ /**
1335
+ * URL to the file for intelligently generated thumbnails. The file is in JSON format and has the same data structure as `CoverSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `CoverSetFileUrlExpireTime`.
1336
+ * @type {string || null}
1337
+ */
1338
+ this.CoverSetFileUrl = null;
1339
+
1340
+ /**
1341
+ * Expiration time of the URL to the file for intelligently generated thumbnails, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
1342
+ * @type {string || null}
1343
+ */
1344
+ this.CoverSetFileUrlExpireTime = null;
1345
+
1318
1346
  }
1319
1347
 
1320
1348
  /**
@@ -1333,6 +1361,8 @@ class AiAnalysisTaskCoverOutput extends AbstractModel {
1333
1361
  this.CoverSet.push(obj);
1334
1362
  }
1335
1363
  }
1364
+ this.CoverSetFileUrl = 'CoverSetFileUrl' in params ? params.CoverSetFileUrl : null;
1365
+ this.CoverSetFileUrlExpireTime = 'CoverSetFileUrlExpireTime' in params ? params.CoverSetFileUrlExpireTime : null;
1336
1366
 
1337
1367
  }
1338
1368
  }
@@ -4812,11 +4842,24 @@ class AiAnalysisTaskClassificationOutput extends AbstractModel {
4812
4842
  super();
4813
4843
 
4814
4844
  /**
4815
- * List of intelligently generated video categories.
4845
+ * List of intelligently generated video categories
4846
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `ClassificationSetFileUrl`.
4816
4847
  * @type {Array.<MediaAiAnalysisClassificationItem> || null}
4817
4848
  */
4818
4849
  this.ClassificationSet = null;
4819
4850
 
4851
+ /**
4852
+ * URL to the file for intelligently generated video categories. The file is in JSON format and has the same data structure as `ClassificationSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `ClassificationSetFileUrlExpireTime`.
4853
+ * @type {string || null}
4854
+ */
4855
+ this.ClassificationSetFileUrl = null;
4856
+
4857
+ /**
4858
+ * Expiration time of the URL to the file for intelligently generated video categories, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
4859
+ * @type {string || null}
4860
+ */
4861
+ this.ClassificationSetFileUrlExpireTime = null;
4862
+
4820
4863
  }
4821
4864
 
4822
4865
  /**
@@ -4835,6 +4878,8 @@ class AiAnalysisTaskClassificationOutput extends AbstractModel {
4835
4878
  this.ClassificationSet.push(obj);
4836
4879
  }
4837
4880
  }
4881
+ this.ClassificationSetFileUrl = 'ClassificationSetFileUrl' in params ? params.ClassificationSetFileUrl : null;
4882
+ this.ClassificationSetFileUrlExpireTime = 'ClassificationSetFileUrlExpireTime' in params ? params.ClassificationSetFileUrlExpireTime : null;
4838
4883
 
4839
4884
  }
4840
4885
  }
@@ -8044,11 +8089,24 @@ class AiReviewPornAsrTaskOutput extends AbstractModel {
8044
8089
  this.Suggestion = null;
8045
8090
 
8046
8091
  /**
8047
- * List of video segments that contain the ASR-detected porn information in speech.
8092
+ * List of video segments that contain ASR-detected porn information
8093
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
8048
8094
  * @type {Array.<MediaContentReviewAsrTextSegmentItem> || null}
8049
8095
  */
8050
8096
  this.SegmentSet = null;
8051
8097
 
8098
+ /**
8099
+ * URL to the file for video segments that contain ASR-detected porn information. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
8100
+ * @type {string || null}
8101
+ */
8102
+ this.SegmentSetFileUrl = null;
8103
+
8104
+ /**
8105
+ * Expiration time of the URL to the file for video segments that contain ASR-detected porn information, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
8106
+ * @type {string || null}
8107
+ */
8108
+ this.SegmentSetFileUrlExpireTime = null;
8109
+
8052
8110
  }
8053
8111
 
8054
8112
  /**
@@ -8069,6 +8127,8 @@ class AiReviewPornAsrTaskOutput extends AbstractModel {
8069
8127
  this.SegmentSet.push(obj);
8070
8128
  }
8071
8129
  }
8130
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
8131
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
8072
8132
 
8073
8133
  }
8074
8134
  }
@@ -10188,6 +10248,79 @@ class AiRecognitionTaskSegmentSegmentItem extends AbstractModel {
10188
10248
  }
10189
10249
  }
10190
10250
 
10251
+ /**
10252
+ * Video retrieval task information
10253
+ * @class
10254
+ */
10255
+ class RestoreMediaTask extends AbstractModel {
10256
+ constructor(){
10257
+ super();
10258
+
10259
+ /**
10260
+ * File ID
10261
+ * @type {string || null}
10262
+ */
10263
+ this.FileId = null;
10264
+
10265
+ /**
10266
+ * Original storage class
10267
+ * @type {string || null}
10268
+ */
10269
+ this.OriginalStorageClass = null;
10270
+
10271
+ /**
10272
+ * Target storage class. For temporary retrieval, the target storage class is the same as the original.
10273
+ * @type {string || null}
10274
+ */
10275
+ this.TargetStorageClass = null;
10276
+
10277
+ /**
10278
+ * Retrieval mode. Valid values:
10279
+ <li>Expedited</li>
10280
+ <li>Standard</li>
10281
+ <li>Bulk</li>
10282
+ * @type {string || null}
10283
+ */
10284
+ this.RestoreTier = null;
10285
+
10286
+ /**
10287
+ * Validity period (days) for a temporary copy. `0` indicates permanent retrieval.
10288
+ * @type {number || null}
10289
+ */
10290
+ this.RestoreDay = null;
10291
+
10292
+ /**
10293
+ * This field has been disused.
10294
+ * @type {number || null}
10295
+ */
10296
+ this.Status = null;
10297
+
10298
+ /**
10299
+ * This field has been disused.
10300
+ * @type {string || null}
10301
+ */
10302
+ this.Message = null;
10303
+
10304
+ }
10305
+
10306
+ /**
10307
+ * @private
10308
+ */
10309
+ deserialize(params) {
10310
+ if (!params) {
10311
+ return;
10312
+ }
10313
+ this.FileId = 'FileId' in params ? params.FileId : null;
10314
+ this.OriginalStorageClass = 'OriginalStorageClass' in params ? params.OriginalStorageClass : null;
10315
+ this.TargetStorageClass = 'TargetStorageClass' in params ? params.TargetStorageClass : null;
10316
+ this.RestoreTier = 'RestoreTier' in params ? params.RestoreTier : null;
10317
+ this.RestoreDay = 'RestoreDay' in params ? params.RestoreDay : null;
10318
+ this.Status = 'Status' in params ? params.Status : null;
10319
+ this.Message = 'Message' in params ? params.Message : null;
10320
+
10321
+ }
10322
+ }
10323
+
10191
10324
  /**
10192
10325
  * Input parameter type of OCR-based porn information detection in text task in content audit
10193
10326
  * @class
@@ -10291,11 +10424,24 @@ class AiAnalysisTaskFrameTagOutput extends AbstractModel {
10291
10424
  super();
10292
10425
 
10293
10426
  /**
10294
- * List of frame-specific video tags.
10427
+ * List of frame-specific video tags
10428
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
10295
10429
  * @type {Array.<MediaAiAnalysisFrameTagSegmentItem> || null}
10296
10430
  */
10297
10431
  this.SegmentSet = null;
10298
10432
 
10433
+ /**
10434
+ * URL to the file for frame-specific video tags. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
10435
+ * @type {string || null}
10436
+ */
10437
+ this.SegmentSetFileUrl = null;
10438
+
10439
+ /**
10440
+ * Expiration time of the URL to the file for frame-specific video tags, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
10441
+ * @type {string || null}
10442
+ */
10443
+ this.SegmentSetFileUrlExpireTime = null;
10444
+
10299
10445
  }
10300
10446
 
10301
10447
  /**
@@ -10314,6 +10460,8 @@ class AiAnalysisTaskFrameTagOutput extends AbstractModel {
10314
10460
  this.SegmentSet.push(obj);
10315
10461
  }
10316
10462
  }
10463
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
10464
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
10317
10465
 
10318
10466
  }
10319
10467
  }
@@ -10935,11 +11083,24 @@ class AiAnalysisTaskTagOutput extends AbstractModel {
10935
11083
  super();
10936
11084
 
10937
11085
  /**
10938
- * List of intelligently generated video tags.
11086
+ * List of intelligently generated video tags
11087
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `TagSetFileUrl`.
10939
11088
  * @type {Array.<MediaAiAnalysisTagItem> || null}
10940
11089
  */
10941
11090
  this.TagSet = null;
10942
11091
 
11092
+ /**
11093
+ * URL to the file for intelligently generated video tags. The file is in JSON format and has the same data structure as `TagSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `TagSetFileUrlExpireTime`.
11094
+ * @type {string || null}
11095
+ */
11096
+ this.TagSetFileUrl = null;
11097
+
11098
+ /**
11099
+ * Expiration time of the URL to the file for intelligently generated video tags, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
11100
+ * @type {string || null}
11101
+ */
11102
+ this.TagSetFileUrlExpireTime = null;
11103
+
10943
11104
  }
10944
11105
 
10945
11106
  /**
@@ -10958,6 +11119,8 @@ class AiAnalysisTaskTagOutput extends AbstractModel {
10958
11119
  this.TagSet.push(obj);
10959
11120
  }
10960
11121
  }
11122
+ this.TagSetFileUrl = 'TagSetFileUrl' in params ? params.TagSetFileUrl : null;
11123
+ this.TagSetFileUrlExpireTime = 'TagSetFileUrlExpireTime' in params ? params.TagSetFileUrlExpireTime : null;
10961
11124
 
10962
11125
  }
10963
11126
  }
@@ -10971,11 +11134,24 @@ class AiAnalysisTaskHighlightOutput extends AbstractModel {
10971
11134
  super();
10972
11135
 
10973
11136
  /**
10974
- * List of intelligently generated highlights.
11137
+ * List of intelligently generated highlights
11138
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `HighlightSetFileUrl`.
10975
11139
  * @type {Array.<MediaAiAnalysisHighlightItem> || null}
10976
11140
  */
10977
11141
  this.HighlightSet = null;
10978
11142
 
11143
+ /**
11144
+ * URL to the file for intelligently generated highlights. The file is in JSON format and has the same data structure as `HighlightSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `HighlightSetFileUrlExpireTime`.
11145
+ * @type {string || null}
11146
+ */
11147
+ this.HighlightSetFileUrl = null;
11148
+
11149
+ /**
11150
+ * Expiration time of the URL to the file for intelligently generated highlights, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
11151
+ * @type {string || null}
11152
+ */
11153
+ this.HighlightSetFileUrlExpireTime = null;
11154
+
10979
11155
  }
10980
11156
 
10981
11157
  /**
@@ -10994,6 +11170,8 @@ class AiAnalysisTaskHighlightOutput extends AbstractModel {
10994
11170
  this.HighlightSet.push(obj);
10995
11171
  }
10996
11172
  }
11173
+ this.HighlightSetFileUrl = 'HighlightSetFileUrl' in params ? params.HighlightSetFileUrl : null;
11174
+ this.HighlightSetFileUrlExpireTime = 'HighlightSetFileUrlExpireTime' in params ? params.HighlightSetFileUrlExpireTime : null;
10997
11175
 
10998
11176
  }
10999
11177
  }
@@ -14510,12 +14688,24 @@ Note: this field may return null, indicating that no valid values can be obtaine
14510
14688
  this.Label = null;
14511
14689
 
14512
14690
  /**
14513
- * List of video segments that contain the detected terrorism information.
14514
- Note: this field may return null, indicating that no valid values can be obtained.
14691
+ * List of video segments that contain terrorism information
14692
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
14515
14693
  * @type {Array.<MediaContentReviewSegmentItem> || null}
14516
14694
  */
14517
14695
  this.SegmentSet = null;
14518
14696
 
14697
+ /**
14698
+ * URL to the file for video segments that contain terrorism information. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
14699
+ * @type {string || null}
14700
+ */
14701
+ this.SegmentSetFileUrl = null;
14702
+
14703
+ /**
14704
+ * Expiration time of the URL to the file for video segments that contain terrorism information, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
14705
+ * @type {string || null}
14706
+ */
14707
+ this.SegmentSetFileUrlExpireTime = null;
14708
+
14519
14709
  }
14520
14710
 
14521
14711
  /**
@@ -14537,6 +14727,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
14537
14727
  this.SegmentSet.push(obj);
14538
14728
  }
14539
14729
  }
14730
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
14731
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
14540
14732
 
14541
14733
  }
14542
14734
  }
@@ -14668,11 +14860,24 @@ class AiReviewTerrorismOcrTaskOutput extends AbstractModel {
14668
14860
  this.Suggestion = null;
14669
14861
 
14670
14862
  /**
14671
- * List of video segments that contain OCR-detected terrorism information in text.
14863
+ * List of video segments that contain OCR-detected terrorism information
14864
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
14672
14865
  * @type {Array.<MediaContentReviewOcrTextSegmentItem> || null}
14673
14866
  */
14674
14867
  this.SegmentSet = null;
14675
14868
 
14869
+ /**
14870
+ * URL to the file for video segments that contain OCR-detected terrorism information. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
14871
+ * @type {string || null}
14872
+ */
14873
+ this.SegmentSetFileUrl = null;
14874
+
14875
+ /**
14876
+ * Expiration time of the URL to the file for video segments that contain OCR-detected terrorism information, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
14877
+ * @type {string || null}
14878
+ */
14879
+ this.SegmentSetFileUrlExpireTime = null;
14880
+
14676
14881
  }
14677
14882
 
14678
14883
  /**
@@ -14693,6 +14898,8 @@ class AiReviewTerrorismOcrTaskOutput extends AbstractModel {
14693
14898
  this.SegmentSet.push(obj);
14694
14899
  }
14695
14900
  }
14901
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
14902
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
14696
14903
 
14697
14904
  }
14698
14905
  }
@@ -16673,11 +16880,24 @@ class AiReviewPornOcrTaskOutput extends AbstractModel {
16673
16880
  this.Suggestion = null;
16674
16881
 
16675
16882
  /**
16676
- * List of video segments that contain the OCR-detected porn information in text.
16883
+ * List of video segments that contain OCR-detected porn information
16884
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
16677
16885
  * @type {Array.<MediaContentReviewOcrTextSegmentItem> || null}
16678
16886
  */
16679
16887
  this.SegmentSet = null;
16680
16888
 
16889
+ /**
16890
+ * URL to the file for video segments that contain OCR-detected porn information. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
16891
+ * @type {string || null}
16892
+ */
16893
+ this.SegmentSetFileUrl = null;
16894
+
16895
+ /**
16896
+ * Expiration time of the URL to the file for video segments that contain OCR-detected porn information, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
16897
+ * @type {string || null}
16898
+ */
16899
+ this.SegmentSetFileUrlExpireTime = null;
16900
+
16681
16901
  }
16682
16902
 
16683
16903
  /**
@@ -16698,6 +16918,8 @@ class AiReviewPornOcrTaskOutput extends AbstractModel {
16698
16918
  this.SegmentSet.push(obj);
16699
16919
  }
16700
16920
  }
16921
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
16922
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
16701
16923
 
16702
16924
  }
16703
16925
  }
@@ -18014,11 +18236,24 @@ class AiReviewProhibitedAsrTaskOutput extends AbstractModel {
18014
18236
  this.Suggestion = null;
18015
18237
 
18016
18238
  /**
18017
- * List of video segments that contain the ASR-detected prohibited information in speech.
18239
+ * List of video segments that contain ASR-detected prohibited information
18240
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
18018
18241
  * @type {Array.<MediaContentReviewAsrTextSegmentItem> || null}
18019
18242
  */
18020
18243
  this.SegmentSet = null;
18021
18244
 
18245
+ /**
18246
+ * URL to the file for video segments that contain ASR-detected prohibited information. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
18247
+ * @type {string || null}
18248
+ */
18249
+ this.SegmentSetFileUrl = null;
18250
+
18251
+ /**
18252
+ * Expiration time of the URL to the file for video segments that contain ASR-detected prohibited information, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
18253
+ * @type {string || null}
18254
+ */
18255
+ this.SegmentSetFileUrlExpireTime = null;
18256
+
18022
18257
  }
18023
18258
 
18024
18259
  /**
@@ -18039,6 +18274,8 @@ class AiReviewProhibitedAsrTaskOutput extends AbstractModel {
18039
18274
  this.SegmentSet.push(obj);
18040
18275
  }
18041
18276
  }
18277
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
18278
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
18042
18279
 
18043
18280
  }
18044
18281
  }
@@ -19175,12 +19412,12 @@ class MediaSourceData extends AbstractModel {
19175
19412
  super();
19176
19413
 
19177
19414
  /**
19178
- * Source category of media file:
19179
- <li>Record: recording, such as LVB recording and LVB time shifting recording.</li>
19180
- <li>Upload: upload, such as pull for upload, upload from server, and UCG upload from client.</li>
19181
- <li>VideoProcessing: video processing, such as video splicing and video clipping.</li>
19182
- <li>Unknown: unknown source.</li>
19183
- Note: this field may return null, indicating that no valid values can be obtained.
19415
+ * Source of a media file:
19416
+ <li>`Record`: recording, such as live or time-shift recording</li>
19417
+ <li>`Upload`: upload, such as pull for upload, upload from server, and UGC upload from client</li>
19418
+ <li>`VideoProcessing`: video processing, such as video splicing and video clipping</li>
19419
+ <li>`WebPageRecord`: panoramic recording </li>
19420
+ <li>`Unknown`: unknown source</li>
19184
19421
  * @type {string || null}
19185
19422
  */
19186
19423
  this.SourceType = null;
@@ -19484,6 +19721,13 @@ Note: this field may return null, indicating that no valid values can be obtaine
19484
19721
  */
19485
19722
  this.WechatMiniProgramPublishCompleteEvent = null;
19486
19723
 
19724
+ /**
19725
+ * Callback for video retrieval. This parameter is valid when the event type is `RestoreMediaComplete`.
19726
+ Note: this field may return `null`, indicating that no valid values can be obtained.
19727
+ * @type {RestoreMediaTask || null}
19728
+ */
19729
+ this.RestoreMediaCompleteEvent = null;
19730
+
19487
19731
  }
19488
19732
 
19489
19733
  /**
@@ -19580,6 +19824,12 @@ Note: this field may return null, indicating that no valid values can be obtaine
19580
19824
  this.WechatMiniProgramPublishCompleteEvent = obj;
19581
19825
  }
19582
19826
 
19827
+ if (params.RestoreMediaCompleteEvent) {
19828
+ let obj = new RestoreMediaTask();
19829
+ obj.deserialize(params.RestoreMediaCompleteEvent)
19830
+ this.RestoreMediaCompleteEvent = obj;
19831
+ }
19832
+
19583
19833
  }
19584
19834
  }
19585
19835
 
@@ -19694,11 +19944,24 @@ class AiReviewPoliticalAsrTaskOutput extends AbstractModel {
19694
19944
  this.Suggestion = null;
19695
19945
 
19696
19946
  /**
19697
- * List of video segments that contain ASR-detected politically sensitive information in speech.
19947
+ * List of video segments that contain ASR-detected politically sensitive information
19948
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
19698
19949
  * @type {Array.<MediaContentReviewAsrTextSegmentItem> || null}
19699
19950
  */
19700
19951
  this.SegmentSet = null;
19701
19952
 
19953
+ /**
19954
+ * URL to the file for video segments that contain ASR-detected politically sensitive information. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
19955
+ * @type {string || null}
19956
+ */
19957
+ this.SegmentSetFileUrl = null;
19958
+
19959
+ /**
19960
+ * Expiration time of the URL to the file for video segments that contain ASR-detected politically sensitive information, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
19961
+ * @type {string || null}
19962
+ */
19963
+ this.SegmentSetFileUrlExpireTime = null;
19964
+
19702
19965
  }
19703
19966
 
19704
19967
  /**
@@ -19719,6 +19982,8 @@ class AiReviewPoliticalAsrTaskOutput extends AbstractModel {
19719
19982
  this.SegmentSet.push(obj);
19720
19983
  }
19721
19984
  }
19985
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
19986
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
19722
19987
 
19723
19988
  }
19724
19989
  }
@@ -20496,12 +20761,24 @@ Note: this field may return null, indicating that no valid values can be obtaine
20496
20761
  this.Label = null;
20497
20762
 
20498
20763
  /**
20499
- * List of video segments that contain the detected porn information.
20500
- Note: this field may return null, indicating that no valid values can be obtained.
20764
+ * List of video segments that contain porn information
20765
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
20501
20766
  * @type {Array.<MediaContentReviewSegmentItem> || null}
20502
20767
  */
20503
20768
  this.SegmentSet = null;
20504
20769
 
20770
+ /**
20771
+ * URL to the file for video segments that contain porn information. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
20772
+ * @type {string || null}
20773
+ */
20774
+ this.SegmentSetFileUrl = null;
20775
+
20776
+ /**
20777
+ * Expiration time of the URL to the file of for video segments that contain porn information, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
20778
+ * @type {string || null}
20779
+ */
20780
+ this.SegmentSetFileUrlExpireTime = null;
20781
+
20505
20782
  }
20506
20783
 
20507
20784
  /**
@@ -20523,6 +20800,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
20523
20800
  this.SegmentSet.push(obj);
20524
20801
  }
20525
20802
  }
20803
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
20804
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
20526
20805
 
20527
20806
  }
20528
20807
  }
@@ -22989,12 +23268,24 @@ Other values (politician/entertainment/sport/entrepreneur/scholar/celebrity/mili
22989
23268
  this.Label = null;
22990
23269
 
22991
23270
  /**
22992
- * List of video segments that contain the detected politically sensitive information.
22993
- Note: this field may return null, indicating that no valid values can be obtained.
23271
+ * List of video segments that contain politically sensitive information
23272
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
22994
23273
  * @type {Array.<MediaContentReviewPoliticalSegmentItem> || null}
22995
23274
  */
22996
23275
  this.SegmentSet = null;
22997
23276
 
23277
+ /**
23278
+ * URL to the file for video segments that contain politically sensitive information. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
23279
+ * @type {string || null}
23280
+ */
23281
+ this.SegmentSetFileUrl = null;
23282
+
23283
+ /**
23284
+ * Expiration time of the URL to the file for video segments that contain politically sensitive information, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
23285
+ * @type {string || null}
23286
+ */
23287
+ this.SegmentSetFileUrlExpireTime = null;
23288
+
22998
23289
  }
22999
23290
 
23000
23291
  /**
@@ -23016,6 +23307,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
23016
23307
  this.SegmentSet.push(obj);
23017
23308
  }
23018
23309
  }
23310
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
23311
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
23019
23312
 
23020
23313
  }
23021
23314
  }
@@ -27999,11 +28292,24 @@ class AiReviewPoliticalOcrTaskOutput extends AbstractModel {
27999
28292
  this.Suggestion = null;
28000
28293
 
28001
28294
  /**
28002
- * List of video segments that contain OCR-detected politically sensitive information in text.
28295
+ * List of video segments that contain OCR-detected politically sensitive information
28296
+ <font color=red>Note</font>: This list displays the first 100 results at most. You can get all the results from the file at the URL specified by `SegmentSetFileUrl`.
28003
28297
  * @type {Array.<MediaContentReviewOcrTextSegmentItem> || null}
28004
28298
  */
28005
28299
  this.SegmentSet = null;
28006
28300
 
28301
+ /**
28302
+ * URL to the file for video segments that contain OCR-detected politically sensitive information. The file is in JSON format and has the same data structure as `SegmentSet`. Instead of being saved permanently, the file is deleted upon the expiration time specified by `SegmentSetFileUrlExpireTime`.
28303
+ * @type {string || null}
28304
+ */
28305
+ this.SegmentSetFileUrl = null;
28306
+
28307
+ /**
28308
+ * Expiration time of the URL to the file for video segments that contain OCR-detected politically sensitive information, in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732#iso-date-format)
28309
+ * @type {string || null}
28310
+ */
28311
+ this.SegmentSetFileUrlExpireTime = null;
28312
+
28007
28313
  }
28008
28314
 
28009
28315
  /**
@@ -28024,6 +28330,8 @@ class AiReviewPoliticalOcrTaskOutput extends AbstractModel {
28024
28330
  this.SegmentSet.push(obj);
28025
28331
  }
28026
28332
  }
28333
+ this.SegmentSetFileUrl = 'SegmentSetFileUrl' in params ? params.SegmentSetFileUrl : null;
28334
+ this.SegmentSetFileUrlExpireTime = 'SegmentSetFileUrlExpireTime' in params ? params.SegmentSetFileUrlExpireTime : null;
28027
28335
 
28028
28336
  }
28029
28337
  }
@@ -30124,6 +30432,7 @@ module.exports = {
30124
30432
  SegmentConfigureInfoForUpdate: SegmentConfigureInfoForUpdate,
30125
30433
  UserDefineConfigureInfo: UserDefineConfigureInfo,
30126
30434
  AiRecognitionTaskSegmentSegmentItem: AiRecognitionTaskSegmentSegmentItem,
30435
+ RestoreMediaTask: RestoreMediaTask,
30127
30436
  AiReviewPornOcrTaskInput: AiReviewPornOcrTaskInput,
30128
30437
  OcrWordsConfigureInfo: OcrWordsConfigureInfo,
30129
30438
  CreateSuperPlayerConfigResponse: CreateSuperPlayerConfigResponse,