tencentcloud-sdk-nodejs-vod 4.0.687 → 4.0.689

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.
@@ -517,24 +517,24 @@ export interface LiveRealTimeClipResponse {
517
517
  /**
518
518
  * 剪辑后的视频播放 URL。
519
519
  */
520
- Url: string
520
+ Url?: string
521
521
  /**
522
522
  * 剪辑固化后的视频的媒体文件的唯一标识。
523
523
  */
524
- FileId: string
524
+ FileId?: string
525
525
  /**
526
526
  * 剪辑固化后的视频任务流 ID。
527
527
  */
528
- VodTaskId: string
528
+ VodTaskId?: string
529
529
  /**
530
530
  * 剪辑后的视频元信息。
531
531
  注意:此字段可能返回 null,表示取不到有效值。
532
532
  */
533
- MetaData: MediaMetaData
533
+ MetaData?: MediaMetaData
534
534
  /**
535
535
  * <span id="p_segmentset">剪辑后的视频片段信息。</span>
536
536
  */
537
- SegmentSet: Array<LiveRealTimeClipMediaSegmentInfo>
537
+ SegmentSet?: Array<LiveRealTimeClipMediaSegmentInfo>
538
538
  /**
539
539
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
540
540
  */
@@ -548,32 +548,32 @@ export interface AiReviewTaskProhibitedAsrResult {
548
548
  /**
549
549
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
550
550
  */
551
- Status: string
551
+ Status?: string
552
552
  /**
553
553
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
554
554
  */
555
- ErrCodeExt: string
555
+ ErrCodeExt?: string
556
556
  /**
557
557
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
558
558
  */
559
- ErrCode: number
559
+ ErrCode?: number
560
560
  /**
561
561
  * 错误信息。
562
562
  */
563
- Message: string
563
+ Message?: string
564
564
  /**
565
565
  * 音视频审核 Asr 文字鉴违禁任务输入。
566
566
  */
567
- Input: AiReviewProhibitedAsrTaskInput
567
+ Input?: AiReviewProhibitedAsrTaskInput
568
568
  /**
569
569
  * 音视频审核 Asr 文字鉴违禁任务输出。
570
570
  注意:此字段可能返回 null,表示取不到有效值。
571
571
  */
572
- Output: AiReviewProhibitedAsrTaskOutput
572
+ Output?: AiReviewProhibitedAsrTaskOutput
573
573
  /**
574
574
  * 音视频审核 Asr 文字鉴违禁任务进度,取值范围 [0-100] 。
575
575
  */
576
- Progress: number
576
+ Progress?: number
577
577
  }
578
578
 
579
579
  /**
@@ -583,26 +583,26 @@ export interface AdaptiveDynamicStreamingTemplate {
583
583
  /**
584
584
  * 转自适应码流模板唯一标识。
585
585
  */
586
- Definition: number
586
+ Definition?: number
587
587
  /**
588
588
  * 模板类型,取值范围:
589
589
  <li>Preset:系统预置模板;</li>
590
590
  <li>Custom:用户自定义模板。</li>
591
591
  */
592
- Type: string
592
+ Type?: string
593
593
  /**
594
594
  * 转自适应码流模板名称。
595
595
  */
596
- Name: string
596
+ Name?: string
597
597
  /**
598
598
  * 转自适应码流模板描述信息。
599
599
  */
600
- Comment: string
600
+ Comment?: string
601
601
  /**
602
602
  * 自适应转码格式,取值范围:
603
603
  <li>HLS。</li>
604
604
  */
605
- Format: string
605
+ Format?: string
606
606
  /**
607
607
  * DRM 类型,取值范围:
608
608
  <li>SimpleAES</li>
@@ -610,42 +610,42 @@ export interface AdaptiveDynamicStreamingTemplate {
610
610
  <li>FairPlay</li>
611
611
  如果取值为空字符串,代表不对视频做 DRM 保护。
612
612
  */
613
- DrmType: string
613
+ DrmType?: string
614
614
  /**
615
615
  * DRM 的密钥提供商,取值范围:
616
616
  <li>SDMC:华曦达;</li>
617
617
  <li>VOD:云点播。</li>
618
618
  默认值为 VOD 。
619
619
  */
620
- DrmKeyProvider: string
620
+ DrmKeyProvider?: string
621
621
  /**
622
622
  * 自适应转码输入流参数信息,最多输入10路流。
623
623
  */
624
- StreamInfos: Array<AdaptiveStreamTemplate>
624
+ StreamInfos?: Array<AdaptiveStreamTemplate>
625
625
  /**
626
626
  * 是否禁止视频低码率转高码率,取值范围:
627
627
  <li>0:否,</li>
628
628
  <li>1:是。</li>
629
629
  */
630
- DisableHigherVideoBitrate: number
630
+ DisableHigherVideoBitrate?: number
631
631
  /**
632
632
  * 是否禁止视频分辨率转高分辨率,取值范围:
633
633
  <li>0:否,</li>
634
634
  <li>1:是。</li>
635
635
  */
636
- DisableHigherVideoResolution: number
636
+ DisableHigherVideoResolution?: number
637
637
  /**
638
638
  * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
639
639
  */
640
- CreateTime: string
640
+ CreateTime?: string
641
641
  /**
642
642
  * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
643
643
  */
644
- UpdateTime: string
644
+ UpdateTime?: string
645
645
  /**
646
646
  * 切片类型,仅当 Format 为 HLS 时有效。
647
647
  */
648
- SegmentType: string
648
+ SegmentType?: string
649
649
  }
650
650
 
651
651
  /**
@@ -665,32 +665,32 @@ export interface AiReviewTaskProhibitedOcrResult {
665
665
  /**
666
666
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
667
667
  */
668
- Status: string
668
+ Status?: string
669
669
  /**
670
670
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
671
671
  */
672
- ErrCodeExt: string
672
+ ErrCodeExt?: string
673
673
  /**
674
674
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
675
675
  */
676
- ErrCode: number
676
+ ErrCode?: number
677
677
  /**
678
678
  * 错误信息。
679
679
  */
680
- Message: string
680
+ Message?: string
681
681
  /**
682
682
  * 音视频审核 Ocr 文字鉴违禁任务输入。
683
683
  */
684
- Input: AiReviewProhibitedOcrTaskInput
684
+ Input?: AiReviewProhibitedOcrTaskInput
685
685
  /**
686
686
  * 音视频审核 Ocr 文字鉴违禁任务输出。
687
687
  注意:此字段可能返回 null,表示取不到有效值。
688
688
  */
689
- Output: AiReviewProhibitedOcrTaskOutput
689
+ Output?: AiReviewProhibitedOcrTaskOutput
690
690
  /**
691
691
  * 音视频审核 Ocr 文字鉴违禁任务进度,取值范围 [0-100] 。
692
692
  */
693
- Progress: number
693
+ Progress?: number
694
694
  }
695
695
 
696
696
  /**
@@ -727,27 +727,27 @@ export interface AiReviewProhibitedOcrTaskOutput {
727
727
  /**
728
728
  * Ocr 文字涉违禁评分,分值为0到100。
729
729
  */
730
- Confidence: number
730
+ Confidence?: number
731
731
  /**
732
732
  * Ocr 文字涉违禁结果建议,取值范围:
733
733
  <li>pass。</li>
734
734
  <li>review。</li>
735
735
  <li>block。</li>
736
736
  */
737
- Suggestion: string
737
+ Suggestion?: string
738
738
  /**
739
739
  * Ocr 文字有涉违禁嫌疑的视频片段列表。
740
740
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
741
741
  */
742
- SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>
742
+ SegmentSet?: Array<MediaContentReviewOcrTextSegmentItem>
743
743
  /**
744
744
  * Ocr 文字有涉违禁嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
745
745
  */
746
- SegmentSetFileUrl: string
746
+ SegmentSetFileUrl?: string
747
747
  /**
748
748
  * Ocr 文字有涉违禁嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
749
749
  */
750
- SegmentSetFileUrlExpireTime: string
750
+ SegmentSetFileUrlExpireTime?: string
751
751
  }
752
752
 
753
753
  /**
@@ -764,18 +764,18 @@ export interface MediaMiniProgramReviewElem {
764
764
  <li>Political.Ocr:文字涉及令人不适宜的信息,</li>
765
765
  <li>Political.Asr:声音涉及令人不适宜的信息。</li>
766
766
  */
767
- Type: string
767
+ Type?: string
768
768
  /**
769
769
  * 音视频审核意见。
770
770
  <li>pass:确认正常,</li>
771
771
  <li>block:确认违规,</li>
772
772
  <li>review:疑似违规。</li>
773
773
  */
774
- Suggestion: string
774
+ Suggestion?: string
775
775
  /**
776
776
  * 音视频审核结果置信度。取值 0~100。
777
777
  */
778
- Confidence: number
778
+ Confidence?: number
779
779
  }
780
780
 
781
781
  /**
@@ -1059,7 +1059,7 @@ export interface AiReviewPoliticalOcrTaskInput {
1059
1059
  /**
1060
1060
  * 鉴别涉及令人不适宜信息的模板 ID。
1061
1061
  */
1062
- Definition: number
1062
+ Definition?: number
1063
1063
  }
1064
1064
 
1065
1065
  /**
@@ -1182,28 +1182,28 @@ export interface AiReviewTaskPoliticalOcrResult {
1182
1182
  /**
1183
1183
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
1184
1184
  */
1185
- Status: string
1185
+ Status?: string
1186
1186
  /**
1187
1187
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
1188
1188
  */
1189
- ErrCodeExt: string
1189
+ ErrCodeExt?: string
1190
1190
  /**
1191
1191
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
1192
1192
  */
1193
- ErrCode: number
1193
+ ErrCode?: number
1194
1194
  /**
1195
1195
  * 错误信息。
1196
1196
  */
1197
- Message: string
1197
+ Message?: string
1198
1198
  /**
1199
1199
  * 音视频审核 Ocr 文字涉及令人不适宜信息的任务输入。
1200
1200
  */
1201
- Input: AiReviewPoliticalOcrTaskInput
1201
+ Input?: AiReviewPoliticalOcrTaskInput
1202
1202
  /**
1203
1203
  * 音视频审核 Ocr 文字涉及令人不适宜信息的任务输出。
1204
1204
  注意:此字段可能返回 null,表示取不到有效值。
1205
1205
  */
1206
- Output: AiReviewPoliticalOcrTaskOutput
1206
+ Output?: AiReviewPoliticalOcrTaskOutput
1207
1207
  /**
1208
1208
  * 音视频审核 Ocr 文字涉及令人不适宜信息的任务进度,取值范围 [0-100] 。
1209
1209
  */
@@ -1254,10 +1254,12 @@ export interface CreateImageSpriteTemplateRequest {
1254
1254
  SampleInterval: number
1255
1255
  /**
1256
1256
  * 雪碧图中小图的行数。
1257
+ 注意:小图的行数会影响最终大图的高度,大图的高度最大为15000像素,其中大图的高度为小图行数与小图高度的乘积。
1257
1258
  */
1258
1259
  RowCount: number
1259
1260
  /**
1260
1261
  * 雪碧图中小图的列数。
1262
+ 注意:小图的列数会影响最终大图的宽度,大图的宽度最大为15000像素,其中大图的宽度为小图列数与小图宽度的乘积。
1261
1263
  */
1262
1264
  ColumnCount: number
1263
1265
  /**
@@ -1286,6 +1288,7 @@ export interface CreateImageSpriteTemplateRequest {
1286
1288
  <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
1287
1289
  <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
1288
1290
  默认值:0。
1291
+ 注意:小图的宽度会影响最终大图的宽度,大图的宽度最大为15000像素,其中大图的宽度为小图列数与小图宽度的乘积。
1289
1292
  */
1290
1293
  Width?: number
1291
1294
  /**
@@ -1295,6 +1298,7 @@ export interface CreateImageSpriteTemplateRequest {
1295
1298
  <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
1296
1299
  <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
1297
1300
  默认值:0。
1301
+ 注意:小图的高度会影响最终大图的高度,大图的高度最大为15000像素,其中大图的高度为小图行数与小图高度的乘积。
1298
1302
  */
1299
1303
  Height?: number
1300
1304
  /**
@@ -1403,60 +1407,60 @@ export interface ContentReviewTemplateItem {
1403
1407
  /**
1404
1408
  * 音视频审核模板唯一标识。
1405
1409
  */
1406
- Definition: number
1410
+ Definition?: number
1407
1411
  /**
1408
1412
  * 音视频审核模板名称,长度限制:64 个字符。
1409
1413
  */
1410
- Name: string
1414
+ Name?: string
1411
1415
  /**
1412
1416
  * 音视频审核模板描述信息,长度限制:256 个字符。
1413
1417
  */
1414
- Comment: string
1418
+ Comment?: string
1415
1419
  /**
1416
1420
  * 鉴别涉及令人反感的信息的控制参数。
1417
1421
  注意:此字段可能返回 null,表示取不到有效值。
1418
1422
  */
1419
- PornConfigure: PornConfigureInfo
1423
+ PornConfigure?: PornConfigureInfo
1420
1424
  /**
1421
1425
  * 鉴别涉及令人不安全的信息的控制参数。
1422
1426
  注意:此字段可能返回 null,表示取不到有效值。
1423
1427
  */
1424
- TerrorismConfigure: TerrorismConfigureInfo
1428
+ TerrorismConfigure?: TerrorismConfigureInfo
1425
1429
  /**
1426
1430
  * 鉴别涉及令人不适宜的信息的控制参数。
1427
1431
  注意:此字段可能返回 null,表示取不到有效值。
1428
1432
  */
1429
- PoliticalConfigure: PoliticalConfigureInfo
1433
+ PoliticalConfigure?: PoliticalConfigureInfo
1430
1434
  /**
1431
1435
  * 违禁控制参数。违禁内容包括:
1432
1436
  <li>谩骂;</li>
1433
1437
  <li>涉毒违法。</li>
1434
1438
  注意:此字段可能返回 null,表示取不到有效值。
1435
1439
  */
1436
- ProhibitedConfigure: ProhibitedConfigureInfo
1440
+ ProhibitedConfigure?: ProhibitedConfigureInfo
1437
1441
  /**
1438
1442
  * 用户自定义音视频审核控制参数。
1439
1443
  注意:此字段可能返回 null,表示取不到有效值。
1440
1444
  */
1441
- UserDefineConfigure: UserDefineConfigureInfo
1445
+ UserDefineConfigure?: UserDefineConfigureInfo
1442
1446
  /**
1443
1447
  * 音视频审核结果是否进入音视频审核墙(对音视频审核结果进行人工复核)的开关。
1444
1448
  <li>ON:是;</li>
1445
1449
  <li>OFF:否。</li>
1446
1450
  */
1447
- ReviewWallSwitch: string
1451
+ ReviewWallSwitch?: string
1448
1452
  /**
1449
1453
  * 截帧间隔,单位为秒。当不填时,默认截帧间隔为 1 秒,最小值为 0.5 秒。
1450
1454
  */
1451
- ScreenshotInterval: number
1455
+ ScreenshotInterval?: number
1452
1456
  /**
1453
1457
  * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
1454
1458
  */
1455
- CreateTime: string
1459
+ CreateTime?: string
1456
1460
  /**
1457
1461
  * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
1458
1462
  */
1459
- UpdateTime: string
1463
+ UpdateTime?: string
1460
1464
  }
1461
1465
 
1462
1466
  /**
@@ -1502,7 +1506,7 @@ export interface AiReviewPoliticalTaskInput {
1502
1506
  /**
1503
1507
  * 鉴别涉及令人不适宜信息的模板 ID。
1504
1508
  */
1505
- Definition: number
1509
+ Definition?: number
1506
1510
  }
1507
1511
 
1508
1512
  /**
@@ -1643,22 +1647,22 @@ export interface ContentReviewOcrResult {
1643
1647
  /**
1644
1648
  * Ocr 文字鉴别结果的评分,分值为0到100。
1645
1649
  */
1646
- Confidence: number
1650
+ Confidence?: number
1647
1651
  /**
1648
1652
  * Ocr 文字鉴别的结果建议,取值范围:
1649
1653
  <li>pass;</li>
1650
1654
  <li>review;</li>
1651
1655
  <li>block。</li>
1652
1656
  */
1653
- Suggestion: string
1657
+ Suggestion?: string
1654
1658
  /**
1655
1659
  * Ocr 文字鉴别的嫌疑关键词列表。
1656
1660
  */
1657
- KeywordSet: Array<string>
1661
+ KeywordSet?: Array<string>
1658
1662
  /**
1659
1663
  * Ocr 文字鉴别的嫌疑文字出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
1660
1664
  */
1661
- AreaCoordSet: Array<number | bigint>
1665
+ AreaCoordSet?: Array<number | bigint>
1662
1666
  }
1663
1667
 
1664
1668
  /**
@@ -1682,23 +1686,23 @@ export interface RoundPlayInfo {
1682
1686
  /**
1683
1687
  * 轮播播单标识。
1684
1688
  */
1685
- RoundPlayId: string
1689
+ RoundPlayId?: string
1686
1690
  /**
1687
1691
  * 启播时间,格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#52)。
1688
1692
  */
1689
- StartTime: string
1693
+ StartTime?: string
1690
1694
  /**
1691
1695
  * 轮播列表。
1692
1696
  */
1693
- RoundPlaylist: Array<RoundPlayListItemInfo>
1697
+ RoundPlaylist?: Array<RoundPlayListItemInfo>
1694
1698
  /**
1695
1699
  * 轮播播单名称,长度限制:64 个字符。
1696
1700
  */
1697
- Name: string
1701
+ Name?: string
1698
1702
  /**
1699
1703
  * 轮播播单描述信息,长度限制:256 个字符。
1700
1704
  */
1701
- Desc: string
1705
+ Desc?: string
1702
1706
  /**
1703
1707
  * 播放状态,可选值:
1704
1708
  <li>Enabled:启动状态;</li>
@@ -1726,7 +1730,7 @@ export interface DescribeLicenseUsageDataResponse {
1726
1730
  /**
1727
1731
  * License 查询次数统计数据,展示所查询 License 次数的明细数据。
1728
1732
  */
1729
- LicenseUsageDataSet: Array<LicenseUsageDataItem>
1733
+ LicenseUsageDataSet?: Array<LicenseUsageDataItem>
1730
1734
  /**
1731
1735
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1732
1736
  */
@@ -1857,7 +1861,7 @@ export interface DescribeDailyMediaPlayStatResponse {
1857
1861
  /**
1858
1862
  * 播放统计数据。
1859
1863
  */
1860
- DailyPlayStatInfoSet: Array<DailyPlayStatInfo>
1864
+ DailyPlayStatInfoSet?: Array<DailyPlayStatInfo>
1861
1865
  /**
1862
1866
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1863
1867
  */
@@ -2042,7 +2046,7 @@ export interface ExecuteFunctionResponse {
2042
2046
  /**
2043
2047
  * 处理结果打包后的字符串,具体与后台一同协调。
2044
2048
  */
2045
- Result: string
2049
+ Result?: string
2046
2050
  /**
2047
2051
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2048
2052
  */
@@ -2068,7 +2072,7 @@ export interface DescribeClientUploadAccelerationUsageDataResponse {
2068
2072
  /**
2069
2073
  * 客户端上传加速统计数据。
2070
2074
  */
2071
- ClientUploadAccelerationUsageDataSet: Array<StatDataItem>
2075
+ ClientUploadAccelerationUsageDataSet?: Array<StatDataItem>
2072
2076
  /**
2073
2077
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2074
2078
  */
@@ -2236,7 +2240,7 @@ export interface AiReviewPornAsrTaskInput {
2236
2240
  /**
2237
2241
  * 鉴别涉及令人反感的信息的模板 ID。
2238
2242
  */
2239
- Definition: number
2243
+ Definition?: number
2240
2244
  }
2241
2245
 
2242
2246
  /**
@@ -2246,32 +2250,32 @@ export interface AiRecognitionTaskFaceResult {
2246
2250
  /**
2247
2251
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
2248
2252
  */
2249
- Status: string
2253
+ Status?: string
2250
2254
  /**
2251
2255
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
2252
2256
  */
2253
- ErrCodeExt: string
2257
+ ErrCodeExt?: string
2254
2258
  /**
2255
2259
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
2256
2260
  */
2257
- ErrCode: number
2261
+ ErrCode?: number
2258
2262
  /**
2259
2263
  * 错误信息。
2260
2264
  */
2261
- Message: string
2265
+ Message?: string
2262
2266
  /**
2263
2267
  * 人脸识别任务输入信息。
2264
2268
  */
2265
- Input: AiRecognitionTaskFaceResultInput
2269
+ Input?: AiRecognitionTaskFaceResultInput
2266
2270
  /**
2267
2271
  * 人脸识别任务输出信息。
2268
2272
  注意:此字段可能返回 null,表示取不到有效值。
2269
2273
  */
2270
- Output: AiRecognitionTaskFaceResultOutput
2274
+ Output?: AiRecognitionTaskFaceResultOutput
2271
2275
  /**
2272
2276
  * 人脸识别任务进度,取值范围 [0-100] 。
2273
2277
  */
2274
- Progress: number
2278
+ Progress?: number
2275
2279
  /**
2276
2280
  * 人脸识别任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
2277
2281
  */
@@ -2320,7 +2324,7 @@ export interface CreateAdaptiveDynamicStreamingTemplateRequest {
2320
2324
  <li>SimpleAES</li>
2321
2325
  <li>Widevine</li>
2322
2326
  <li>FairPlay</li>
2323
- 如果取值为空字符串,代表不对视频做 DRM 保护。
2327
+ 默认值为空字符串,如果取值为空字符串,代表不对视频做 DRM 保护。
2324
2328
  */
2325
2329
  DrmType?: string
2326
2330
  /**
@@ -2374,32 +2378,32 @@ export interface MediaProcessTaskSampleSnapshotResult {
2374
2378
  /**
2375
2379
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
2376
2380
  */
2377
- Status: string
2381
+ Status?: string
2378
2382
  /**
2379
2383
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
2380
2384
  */
2381
- ErrCodeExt: string
2385
+ ErrCodeExt?: string
2382
2386
  /**
2383
2387
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
2384
2388
  */
2385
- ErrCode: number
2389
+ ErrCode?: number
2386
2390
  /**
2387
2391
  * 错误信息。
2388
2392
  */
2389
- Message: string
2393
+ Message?: string
2390
2394
  /**
2391
2395
  * 对视频做采样截图任务输入。
2392
2396
  */
2393
- Input: SampleSnapshotTaskInput
2397
+ Input?: SampleSnapshotTaskInput
2394
2398
  /**
2395
2399
  * 对视频做采样截图任务输出。
2396
2400
  注意:此字段可能返回 null,表示取不到有效值。
2397
2401
  */
2398
- Output: MediaSampleSnapshotItem
2402
+ Output?: MediaSampleSnapshotItem
2399
2403
  /**
2400
2404
  * 对视频做采样截图任务进度,取值范围 [0-100] 。
2401
2405
  */
2402
- Progress: number
2406
+ Progress?: number
2403
2407
  /**
2404
2408
  * 采样截图任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
2405
2409
  */
@@ -2605,7 +2609,7 @@ export interface DescribeDailyPlayStatFileListResponse {
2605
2609
  /**
2606
2610
  * 播放统计文件列表。
2607
2611
  */
2608
- PlayStatFileSet: Array<PlayStatFileInfo>
2612
+ PlayStatFileSet?: Array<PlayStatFileInfo>
2609
2613
  /**
2610
2614
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2611
2615
  */
@@ -2671,7 +2675,7 @@ export interface AiReviewTerrorismOcrTaskInput {
2671
2675
  /**
2672
2676
  * 鉴别涉及令人不安全的信息的模板 ID。
2673
2677
  */
2674
- Definition: number
2678
+ Definition?: number
2675
2679
  }
2676
2680
 
2677
2681
  /**
@@ -2954,27 +2958,27 @@ export interface StorageRegionInfo {
2954
2958
  /**
2955
2959
  * 存储地域。
2956
2960
  */
2957
- Region: string
2961
+ Region?: string
2958
2962
  /**
2959
2963
  * 存储地域描述信息。
2960
2964
  */
2961
- Description: string
2965
+ Description?: string
2962
2966
  /**
2963
2967
  * 状态,是否开通,取值有:
2964
2968
  <li>opened:已经开通。</li>
2965
2969
  <li>unopened:未开通。</li>
2966
2970
  */
2967
- Status: string
2971
+ Status?: string
2968
2972
  /**
2969
2973
  * 是否默认的存储地域,true:是;false:否。
2970
2974
  */
2971
- IsDefault: boolean
2975
+ IsDefault?: boolean
2972
2976
  /**
2973
2977
  * 存储区域,取值有:
2974
2978
  <li>Chinese Mainland:中国境内(不包含港澳台)。</li>
2975
2979
  <li>Outside Chinese Mainland:中国境外。</li>
2976
2980
  */
2977
- Area: string
2981
+ Area?: string
2978
2982
  }
2979
2983
 
2980
2984
  /**
@@ -2987,8 +2991,13 @@ export interface MediaTransitionItem {
2987
2991
  Duration: number
2988
2992
  /**
2989
2993
  * 转场操作列表。图像转场操作和音频转场操作各自最多支持一个。
2994
+ * @deprecated
2990
2995
  */
2991
2996
  Transitions?: Array<TransitionOpertion>
2997
+ /**
2998
+ * 转场操作列表。图像转场操作和音频转场操作各自最多支持一个。
2999
+ */
3000
+ MediaTransitions?: Array<TransitionOperation>
2992
3001
  }
2993
3002
 
2994
3003
  /**
@@ -3051,11 +3060,11 @@ export interface DescribeWordSamplesResponse {
3051
3060
  /**
3052
3061
  * 符合条件的记录总数。
3053
3062
  */
3054
- TotalCount: number
3063
+ TotalCount?: number
3055
3064
  /**
3056
3065
  * 关键词信息。
3057
3066
  */
3058
- WordSet: Array<AiSampleWord>
3067
+ WordSet?: Array<AiSampleWord>
3059
3068
  /**
3060
3069
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3061
3070
  */
@@ -3180,32 +3189,32 @@ export interface AiAnalysisTaskCoverResult {
3180
3189
  /**
3181
3190
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
3182
3191
  */
3183
- Status: string
3192
+ Status?: string
3184
3193
  /**
3185
3194
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
3186
3195
  */
3187
- ErrCodeExt: string
3196
+ ErrCodeExt?: string
3188
3197
  /**
3189
3198
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
3190
3199
  */
3191
- ErrCode: number
3200
+ ErrCode?: number
3192
3201
  /**
3193
3202
  * 错误信息。
3194
3203
  */
3195
- Message: string
3204
+ Message?: string
3196
3205
  /**
3197
3206
  * 智能封面任务输入。
3198
3207
  */
3199
- Input: AiAnalysisTaskCoverInput
3208
+ Input?: AiAnalysisTaskCoverInput
3200
3209
  /**
3201
3210
  * 智能封面任务输出。
3202
3211
  注意:此字段可能返回 null,表示取不到有效值。
3203
3212
  */
3204
- Output: AiAnalysisTaskCoverOutput
3213
+ Output?: AiAnalysisTaskCoverOutput
3205
3214
  /**
3206
3215
  * 智能封面任务进度,取值范围 [0-100] 。
3207
3216
  */
3208
- Progress: number
3217
+ Progress?: number
3209
3218
  /**
3210
3219
  * 智能封面任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
3211
3220
  */
@@ -3233,39 +3242,39 @@ export interface MediaContentReviewOcrTextSegmentItem {
3233
3242
  /**
3234
3243
  * 嫌疑片段起始的偏移时间,单位:秒。
3235
3244
  */
3236
- StartTimeOffset: number
3245
+ StartTimeOffset?: number
3237
3246
  /**
3238
3247
  * 嫌疑片段结束的偏移时间,单位:秒。
3239
3248
  */
3240
- EndTimeOffset: number
3249
+ EndTimeOffset?: number
3241
3250
  /**
3242
3251
  * 嫌疑片段置信度。
3243
3252
  */
3244
- Confidence: number
3253
+ Confidence?: number
3245
3254
  /**
3246
3255
  * 嫌疑片段音视频审核的结果建议,取值范围:
3247
3256
  <li>pass。</li>
3248
3257
  <li>review。</li>
3249
3258
  <li>block。</li>
3250
3259
  */
3251
- Suggestion: string
3260
+ Suggestion?: string
3252
3261
  /**
3253
3262
  * 嫌疑关键词列表。
3254
3263
  */
3255
- KeywordSet: Array<string>
3264
+ KeywordSet?: Array<string>
3256
3265
  /**
3257
3266
  * 嫌疑文字出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
3258
3267
  */
3259
- AreaCoordSet: Array<number | bigint>
3268
+ AreaCoordSet?: Array<number | bigint>
3260
3269
  /**
3261
3270
  * 嫌疑图片 URL (图片不会永久存储,到达
3262
3271
  PicUrlExpireTime 时间点后图片将被删除)。
3263
3272
  */
3264
- Url: string
3273
+ Url?: string
3265
3274
  /**
3266
3275
  * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
3267
3276
  */
3268
- PicUrlExpireTime: string
3277
+ PicUrlExpireTime?: string
3269
3278
  }
3270
3279
 
3271
3280
  /**
@@ -3294,11 +3303,11 @@ export interface FileDeleteTask {
3294
3303
  /**
3295
3304
  * 删除文件 ID 列表。
3296
3305
  */
3297
- FileIdSet: Array<string>
3306
+ FileIdSet?: Array<string>
3298
3307
  /**
3299
3308
  * 删除文件结果信息列表。
3300
3309
  */
3301
- FileDeleteResultInfo: Array<FileDeleteResultItem>
3310
+ FileDeleteResultInfo?: Array<FileDeleteResultItem>
3302
3311
  }
3303
3312
 
3304
3313
  /**
@@ -3341,32 +3350,32 @@ export interface AiAnalysisTaskHighlightResult {
3341
3350
  /**
3342
3351
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
3343
3352
  */
3344
- Status: string
3353
+ Status?: string
3345
3354
  /**
3346
3355
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
3347
3356
  */
3348
- ErrCodeExt: string
3357
+ ErrCodeExt?: string
3349
3358
  /**
3350
3359
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
3351
3360
  */
3352
- ErrCode: number
3361
+ ErrCode?: number
3353
3362
  /**
3354
3363
  * 错误信息。
3355
3364
  */
3356
- Message: string
3365
+ Message?: string
3357
3366
  /**
3358
3367
  * 智能精彩片段任务输入。
3359
3368
  */
3360
- Input: AiAnalysisTaskHighlightInput
3369
+ Input?: AiAnalysisTaskHighlightInput
3361
3370
  /**
3362
3371
  * 智能精彩片段任务输出。
3363
3372
  注意:此字段可能返回 null,表示取不到有效值。
3364
3373
  */
3365
- Output: AiAnalysisTaskHighlightOutput
3374
+ Output?: AiAnalysisTaskHighlightOutput
3366
3375
  /**
3367
3376
  * 智能精彩片段任务进度,取值范围 [0-100] 。
3368
3377
  */
3369
- Progress: number
3378
+ Progress?: number
3370
3379
  /**
3371
3380
  * 智能精彩片段任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
3372
3381
  */
@@ -3591,31 +3600,31 @@ export interface MediaProcessTaskAdaptiveDynamicStreamingResult {
3591
3600
  /**
3592
3601
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
3593
3602
  */
3594
- Status: string
3603
+ Status?: string
3595
3604
  /**
3596
3605
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
3597
3606
  */
3598
- ErrCodeExt: string
3607
+ ErrCodeExt?: string
3599
3608
  /**
3600
3609
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
3601
3610
  */
3602
- ErrCode: number
3611
+ ErrCode?: number
3603
3612
  /**
3604
3613
  * 错误信息。
3605
3614
  */
3606
- Message: string
3615
+ Message?: string
3607
3616
  /**
3608
3617
  * 转自适应码流任务进度,取值范围 [0-100] 。
3609
3618
  */
3610
- Progress: number
3619
+ Progress?: number
3611
3620
  /**
3612
3621
  * 对视频转自适应码流任务的输入。
3613
3622
  */
3614
- Input: AdaptiveDynamicStreamingTaskInput
3623
+ Input?: AdaptiveDynamicStreamingTaskInput
3615
3624
  /**
3616
3625
  * 对视频转自适应码流任务的输出。
3617
3626
  */
3618
- Output: AdaptiveDynamicStreamingInfoItem
3627
+ Output?: AdaptiveDynamicStreamingInfoItem
3619
3628
  /**
3620
3629
  * 转自适应码流任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
3621
3630
  */
@@ -3844,7 +3853,7 @@ export interface EditMediaResponse {
3844
3853
  /**
3845
3854
  * 编辑视频的任务 ID,可以通过该 ID 查询编辑任务(任务类型为 EditMedia)的状态。
3846
3855
  */
3847
- TaskId: string
3856
+ TaskId?: string
3848
3857
  /**
3849
3858
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3850
3859
  */
@@ -4123,21 +4132,21 @@ export interface ReviewAudioVideoSegmentItem {
4123
4132
  /**
4124
4133
  * 嫌疑片段起始的偏移时间,单位:秒。
4125
4134
  */
4126
- StartTimeOffset: number
4135
+ StartTimeOffset?: number
4127
4136
  /**
4128
4137
  * 嫌疑片段结束的偏移时间,单位:秒。
4129
4138
  */
4130
- EndTimeOffset: number
4139
+ EndTimeOffset?: number
4131
4140
  /**
4132
4141
  * 嫌疑片段涉及令人反感的信息的分数。
4133
4142
  */
4134
- Confidence: number
4143
+ Confidence?: number
4135
4144
  /**
4136
4145
  * 嫌疑片段鉴别涉及违规信息的结果建议,取值范围:
4137
4146
  <li>review:疑似违规,建议复审;</li>
4138
4147
  <li>block:确认违规,建议封禁。</li>
4139
4148
  */
4140
- Suggestion: string
4149
+ Suggestion?: string
4141
4150
  /**
4142
4151
  * 嫌疑片段最可能的违规的标签,取值范围:
4143
4152
  <li>Porn:色情;</li>
@@ -4148,11 +4157,11 @@ export interface ReviewAudioVideoSegmentItem {
4148
4157
  <li>Abuse:谩骂;</li>
4149
4158
  <li>Moan:娇喘。</li>
4150
4159
  */
4151
- Label: string
4160
+ Label?: string
4152
4161
  /**
4153
4162
  * 违规子标签。
4154
4163
  */
4155
- SubLabel: string
4164
+ SubLabel?: string
4156
4165
  /**
4157
4166
  * 嫌疑片段违禁的形式,取值范围:
4158
4167
  <li>Image:画面上的人物或图标;</li>
@@ -4160,28 +4169,28 @@ export interface ReviewAudioVideoSegmentItem {
4160
4169
  <li>ASR:语音中的文字;</li>
4161
4170
  <li>Voice:声音。</li>
4162
4171
  */
4163
- Form: string
4172
+ Form?: string
4164
4173
  /**
4165
4174
  * 当 Form 为 Image 或 OCR 时有效,表示嫌疑人物、图标或文字出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
4166
4175
  */
4167
- AreaCoordSet: Array<number | bigint>
4176
+ AreaCoordSet?: Array<number | bigint>
4168
4177
  /**
4169
4178
  * 当 Form 为 OCR 或 ASR 时有效,表示识别出来的 OCR 或 ASR 文本内容。
4170
4179
  */
4171
- Text: string
4180
+ Text?: string
4172
4181
  /**
4173
4182
  * 当 Form 为 OCR 或 ASR 时有效,表示嫌疑片段命中的违规关键词列表。
4174
4183
  */
4175
- KeywordSet: Array<string>
4184
+ KeywordSet?: Array<string>
4176
4185
  /**
4177
4186
  * 嫌疑图片 URL (图片不会永久存储,到达
4178
4187
  PicUrlExpireTime 时间点后图片将被删除)。
4179
4188
  */
4180
- Url: string
4189
+ Url?: string
4181
4190
  /**
4182
4191
  * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
4183
4192
  */
4184
- PicUrlExpireTime: string
4193
+ PicUrlExpireTime?: string
4185
4194
  }
4186
4195
 
4187
4196
  /**
@@ -4323,24 +4332,24 @@ export interface CdnLogInfo {
4323
4332
  /**
4324
4333
  * 日志所属日期, 格式为:yyyy-MM-dd ,如2018-03-01。
4325
4334
  */
4326
- Date: string
4335
+ Date?: string
4327
4336
  /**
4328
4337
  * 日志名称,格式为:日期小时-域名
4329
4338
  如 2018120101-test.vod2.mqcloud.com。
4330
4339
  */
4331
- Name: string
4340
+ Name?: string
4332
4341
  /**
4333
4342
  * 日志下载链接,24小时内下载有效。
4334
4343
  */
4335
- Url: string
4344
+ Url?: string
4336
4345
  /**
4337
4346
  * 日志起始时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。
4338
4347
  */
4339
- StartTime: string
4348
+ StartTime?: string
4340
4349
  /**
4341
4350
  * 日志结束时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。
4342
4351
  */
4343
- EndTime: string
4352
+ EndTime?: string
4344
4353
  }
4345
4354
 
4346
4355
  /**
@@ -4350,36 +4359,36 @@ export interface ReduceMediaBitrateTranscodeResult {
4350
4359
  /**
4351
4360
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
4352
4361
  */
4353
- Status: string
4362
+ Status?: string
4354
4363
  /**
4355
4364
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
4356
4365
  */
4357
- ErrCodeExt: string
4366
+ ErrCodeExt?: string
4358
4367
  /**
4359
4368
  * 错误信息。
4360
4369
  */
4361
- Message: string
4370
+ Message?: string
4362
4371
  /**
4363
4372
  * 转码任务的输入。
4364
4373
  */
4365
- Input: TranscodeTaskInput
4374
+ Input?: TranscodeTaskInput
4366
4375
  /**
4367
4376
  * 转码任务的输出。
4368
4377
  注意:此字段可能返回 null,表示取不到有效值。
4369
4378
  */
4370
- Output: MediaTranscodeItem
4379
+ Output?: MediaTranscodeItem
4371
4380
  /**
4372
4381
  * 转码进度,取值范围 [0-100] 。
4373
4382
  */
4374
- Progress: number
4383
+ Progress?: number
4375
4384
  /**
4376
4385
  * 转码任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
4377
4386
  */
4378
- BeginProcessTime: string
4387
+ BeginProcessTime?: string
4379
4388
  /**
4380
4389
  * 转码任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
4381
4390
  */
4382
- FinishTime: string
4391
+ FinishTime?: string
4383
4392
  }
4384
4393
 
4385
4394
  /**
@@ -4464,11 +4473,11 @@ export interface TaskStatData {
4464
4473
  <li> QualityInspect: 音画质检测</li>
4465
4474
  <li>Transcode: 转码,包含普通转码、极速高清和视频编辑(不推荐使用)</li>
4466
4475
  */
4467
- TaskType: string
4476
+ TaskType?: string
4468
4477
  /**
4469
4478
  * 任务数统计数据概览,用量单位为秒。
4470
4479
  */
4471
- Summary: Array<TaskStatDataItem>
4480
+ Summary?: Array<TaskStatDataItem>
4472
4481
  /**
4473
4482
  * 不同规格任务统计数据详情。
4474
4483
  转码规格:
@@ -4524,7 +4533,7 @@ export interface TaskStatData {
4524
4533
  <li>8K: 短边 ≤ 4320px</li>
4525
4534
  <li>Audio: 音频</li>
4526
4535
  */
4527
- Details: Array<SpecificationDataItem>
4536
+ Details?: Array<SpecificationDataItem>
4528
4537
  }
4529
4538
 
4530
4539
  /**
@@ -4535,10 +4544,6 @@ export interface CreateVodDomainRequest {
4535
4544
  * 需要接入点播的加速域名。注意:不支持填写泛域名。
4536
4545
  */
4537
4546
  Domain: string
4538
- /**
4539
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
4540
- */
4541
- SubAppId?: number
4542
4547
  /**
4543
4548
  * 需要开启 CDN 加速的区域:
4544
4549
  <li>Chinese Mainland:中国境内(不包含港澳台)。</li>
@@ -4547,6 +4552,10 @@ export interface CreateVodDomainRequest {
4547
4552
  如果没有设置 AccelerateArea, 点播会根据用户在腾讯云设置的地域信息自动开通中国境内或者中国境外的 CDN 加速。开启中国境内加速的域名,需要先[备案域名](/document/product/243/18905)。
4548
4553
  */
4549
4554
  AccelerateArea?: string
4555
+ /**
4556
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
4557
+ */
4558
+ SubAppId?: number
4550
4559
  }
4551
4560
 
4552
4561
  /**
@@ -4653,32 +4662,32 @@ export interface MediaProcessTaskAnimatedGraphicResult {
4653
4662
  /**
4654
4663
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
4655
4664
  */
4656
- Status: string
4665
+ Status?: string
4657
4666
  /**
4658
4667
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
4659
4668
  */
4660
- ErrCodeExt: string
4669
+ ErrCodeExt?: string
4661
4670
  /**
4662
4671
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
4663
4672
  */
4664
- ErrCode: number
4673
+ ErrCode?: number
4665
4674
  /**
4666
4675
  * 错误信息。
4667
4676
  */
4668
- Message: string
4677
+ Message?: string
4669
4678
  /**
4670
4679
  * 转动图任务的输入。
4671
4680
  */
4672
- Input: AnimatedGraphicTaskInput
4681
+ Input?: AnimatedGraphicTaskInput
4673
4682
  /**
4674
4683
  * 转动图任务的输出。
4675
4684
  注意:此字段可能返回 null,表示取不到有效值。
4676
4685
  */
4677
- Output: MediaAnimatedGraphicsItem
4686
+ Output?: MediaAnimatedGraphicsItem
4678
4687
  /**
4679
4688
  * 转动图任务进度,取值范围 [0-100] 。
4680
4689
  */
4681
- Progress: number
4690
+ Progress?: number
4682
4691
  /**
4683
4692
  * 转动图任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
4684
4693
  */
@@ -4870,32 +4879,32 @@ export interface AiReviewTaskTerrorismOcrResult {
4870
4879
  /**
4871
4880
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
4872
4881
  */
4873
- Status: string
4882
+ Status?: string
4874
4883
  /**
4875
4884
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
4876
4885
  */
4877
- ErrCodeExt: string
4886
+ ErrCodeExt?: string
4878
4887
  /**
4879
4888
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
4880
4889
  */
4881
- ErrCode: number
4890
+ ErrCode?: number
4882
4891
  /**
4883
4892
  * 错误信息。
4884
4893
  */
4885
- Message: string
4894
+ Message?: string
4886
4895
  /**
4887
4896
  * 音视频审核 Ocr 文字涉及令人不安全的信息的任务输入。
4888
4897
  */
4889
- Input: AiReviewTerrorismOcrTaskInput
4898
+ Input?: AiReviewTerrorismOcrTaskInput
4890
4899
  /**
4891
4900
  * 音视频审核 Ocr 文字涉及令人不安全的信息的任务输出。
4892
4901
  注意:此字段可能返回 null,表示取不到有效值。
4893
4902
  */
4894
- Output: AiReviewTerrorismOcrTaskOutput
4903
+ Output?: AiReviewTerrorismOcrTaskOutput
4895
4904
  /**
4896
4905
  * 音视频审核 Ocr 文字涉及令人不安全的信息的任务进度,取值范围 [0-100] 。
4897
4906
  */
4898
- Progress: number
4907
+ Progress?: number
4899
4908
  }
4900
4909
 
4901
4910
  /**
@@ -4905,32 +4914,32 @@ export interface AiRecognitionTaskOcrWordsResult {
4905
4914
  /**
4906
4915
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
4907
4916
  */
4908
- Status: string
4917
+ Status?: string
4909
4918
  /**
4910
4919
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
4911
4920
  */
4912
- ErrCodeExt: string
4921
+ ErrCodeExt?: string
4913
4922
  /**
4914
4923
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
4915
4924
  */
4916
- ErrCode: number
4925
+ ErrCode?: number
4917
4926
  /**
4918
4927
  * 错误信息。
4919
4928
  */
4920
- Message: string
4929
+ Message?: string
4921
4930
  /**
4922
4931
  * 文本关键词识别任务输入信息。
4923
4932
  */
4924
- Input: AiRecognitionTaskOcrWordsResultInput
4933
+ Input?: AiRecognitionTaskOcrWordsResultInput
4925
4934
  /**
4926
4935
  * 文本关键词识别任务输出信息。
4927
4936
  注意:此字段可能返回 null,表示取不到有效值。
4928
4937
  */
4929
- Output: AiRecognitionTaskOcrWordsResultOutput
4938
+ Output?: AiRecognitionTaskOcrWordsResultOutput
4930
4939
  /**
4931
4940
  * 文本关键词识别任务进度,取值范围 [0-100] 。
4932
4941
  */
4933
- Progress: number
4942
+ Progress?: number
4934
4943
  /**
4935
4944
  * 文本关键词识别任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
4936
4945
  */
@@ -4968,33 +4977,33 @@ export interface AiRecognitionTaskSegmentResult {
4968
4977
  /**
4969
4978
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
4970
4979
  */
4971
- Status: string
4980
+ Status?: string
4972
4981
  /**
4973
4982
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
4974
4983
  */
4975
- ErrCodeExt: string
4984
+ ErrCodeExt?: string
4976
4985
  /**
4977
4986
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
4978
4987
  */
4979
- ErrCode: number
4988
+ ErrCode?: number
4980
4989
  /**
4981
4990
  * 错误信息。
4982
4991
  */
4983
- Message: string
4992
+ Message?: string
4984
4993
  /**
4985
4994
  * 视频拆条任务输入信息。
4986
4995
  注意:此字段可能返回 null,表示取不到有效值。
4987
4996
  */
4988
- Input: AiRecognitionTaskSegmentResultInput
4997
+ Input?: AiRecognitionTaskSegmentResultInput
4989
4998
  /**
4990
4999
  * 视频拆条任务输出信息。
4991
5000
  注意:此字段可能返回 null,表示取不到有效值。
4992
5001
  */
4993
- Output: AiRecognitionTaskSegmentResultOutput
5002
+ Output?: AiRecognitionTaskSegmentResultOutput
4994
5003
  /**
4995
5004
  * 视频拆条任务进度,取值范围 [0-100] 。
4996
5005
  */
4997
- Progress: number
5006
+ Progress?: number
4998
5007
  /**
4999
5008
  * 视频拆条任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
5000
5009
  */
@@ -5024,11 +5033,11 @@ export interface MediaSubtitleItem {
5024
5033
  /**
5025
5034
  * 字幕的唯一标识。
5026
5035
  */
5027
- Id: string
5036
+ Id?: string
5028
5037
  /**
5029
5038
  * 字幕名字。
5030
5039
  */
5031
- Name: string
5040
+ Name?: string
5032
5041
  /**
5033
5042
  * 字幕语言。常见的取值如下:
5034
5043
  <li>cn:中文</li>
@@ -5036,16 +5045,16 @@ export interface MediaSubtitleItem {
5036
5045
  <li>en-US:英文</li>
5037
5046
  其他取值参考 [RFC5646](https://tools.ietf.org/html/rfc5646)
5038
5047
  */
5039
- Language: string
5048
+ Language?: string
5040
5049
  /**
5041
5050
  * 字幕格式。取值范围如下:
5042
5051
  <li>vtt</li>
5043
5052
  */
5044
- Format: string
5053
+ Format?: string
5045
5054
  /**
5046
5055
  * 字幕 URL。
5047
5056
  */
5048
- Url: string
5057
+ Url?: string
5049
5058
  }
5050
5059
 
5051
5060
  /**
@@ -5277,27 +5286,27 @@ export interface AiReviewPornAsrTaskOutput {
5277
5286
  /**
5278
5287
  * Asr 文字涉及令人反感的信息的评分,分值为0到100。
5279
5288
  */
5280
- Confidence: number
5289
+ Confidence?: number
5281
5290
  /**
5282
5291
  * Asr 文字涉及令人反感的信息的结果建议,取值范围:
5283
5292
  <li>pass。</li>
5284
5293
  <li>review。</li>
5285
5294
  <li>block。</li>
5286
5295
  */
5287
- Suggestion: string
5296
+ Suggestion?: string
5288
5297
  /**
5289
5298
  * Asr 文字有涉及令人反感的信息的嫌疑的视频片段列表。
5290
5299
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
5291
5300
  */
5292
- SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>
5301
+ SegmentSet?: Array<MediaContentReviewAsrTextSegmentItem>
5293
5302
  /**
5294
5303
  * Asr 文字有涉及令人反感的信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
5295
5304
  */
5296
- SegmentSetFileUrl: string
5305
+ SegmentSetFileUrl?: string
5297
5306
  /**
5298
5307
  * Asr 文字有涉及令人反感的信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
5299
5308
  */
5300
- SegmentSetFileUrlExpireTime: string
5309
+ SegmentSetFileUrlExpireTime?: string
5301
5310
  }
5302
5311
 
5303
5312
  /**
@@ -5309,11 +5318,11 @@ export interface AiRecognitionTaskAsrFullTextResultOutputSubtitleItem {
5309
5318
  <li>vtt:WebVTT 字幕文件;</li>
5310
5319
  <li>srt:SRT 字幕文件。</li>
5311
5320
  */
5312
- Format: string
5321
+ Format?: string
5313
5322
  /**
5314
5323
  * 字幕文件 Url。
5315
5324
  */
5316
- Url: string
5325
+ Url?: string
5317
5326
  }
5318
5327
 
5319
5328
  /**
@@ -5541,37 +5550,37 @@ export interface ContentReviewResult {
5541
5550
  <li>Terrorism.Ocr:图片 OCR 文字中的鉴别令人不安全的信息结果;</li>
5542
5551
  <li>Political.Ocr:图片 OCR 文字中的鉴别令人不适宜信息结果。</li>
5543
5552
  */
5544
- Type: string
5553
+ Type?: string
5545
5554
  /**
5546
5555
  * 图片画面中的鉴别令人反感的信息结果,当 Type 为 Porn.Image 时有效。
5547
5556
  注意:此字段可能返回 null,表示取不到有效值。
5548
5557
  */
5549
- PornImageResult: PornImageResult
5558
+ PornImageResult?: PornImageResult
5550
5559
  /**
5551
5560
  * 图片画面中的鉴别令人不安全的信息结果,当 Type 为 Terrorism.Image 时有效。
5552
5561
  注意:此字段可能返回 null,表示取不到有效值。
5553
5562
  */
5554
- TerrorismImageResult: TerrorismImageResult
5563
+ TerrorismImageResult?: TerrorismImageResult
5555
5564
  /**
5556
5565
  * 图片画面中的鉴别令人不适宜信息结果,当 Type 为 Political.Image 时有效。
5557
5566
  注意:此字段可能返回 null,表示取不到有效值。
5558
5567
  */
5559
- PoliticalImageResult: PoliticalImageResult
5568
+ PoliticalImageResult?: PoliticalImageResult
5560
5569
  /**
5561
5570
  * 图片 OCR 文字中的鉴别令人反感的信息结果,当 Type 为 Porn.Ocr 时有效。
5562
5571
  注意:此字段可能返回 null,表示取不到有效值。
5563
5572
  */
5564
- PornOcrResult: ContentReviewOcrResult
5573
+ PornOcrResult?: ContentReviewOcrResult
5565
5574
  /**
5566
5575
  * 图片 OCR 中的鉴别令人不安全的信息结果,当 Type 为 Terrorism.Ocr 时有效。
5567
5576
  注意:此字段可能返回 null,表示取不到有效值。
5568
5577
  */
5569
- TerrorismOcrResult: ContentReviewOcrResult
5578
+ TerrorismOcrResult?: ContentReviewOcrResult
5570
5579
  /**
5571
5580
  * 图片 OCR 文字中的鉴别令人不适宜信息结果,当 Type 为 Political.Ocr 时有效。
5572
5581
  注意:此字段可能返回 null,表示取不到有效值。
5573
5582
  */
5574
- PoliticalOcrResult: ContentReviewOcrResult
5583
+ PoliticalOcrResult?: ContentReviewOcrResult
5575
5584
  }
5576
5585
 
5577
5586
  /**
@@ -5581,32 +5590,32 @@ export interface MediaProcessTaskImageSpriteResult {
5581
5590
  /**
5582
5591
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
5583
5592
  */
5584
- Status: string
5593
+ Status?: string
5585
5594
  /**
5586
5595
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
5587
5596
  */
5588
- ErrCodeExt: string
5597
+ ErrCodeExt?: string
5589
5598
  /**
5590
5599
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
5591
5600
  */
5592
- ErrCode: number
5601
+ ErrCode?: number
5593
5602
  /**
5594
5603
  * 错误信息。
5595
5604
  */
5596
- Message: string
5605
+ Message?: string
5597
5606
  /**
5598
5607
  * 对视频截雪碧图任务的输入。
5599
5608
  */
5600
- Input: ImageSpriteTaskInput
5609
+ Input?: ImageSpriteTaskInput
5601
5610
  /**
5602
5611
  * 对视频截雪碧图任务的输出。
5603
5612
  注意:此字段可能返回 null,表示取不到有效值。
5604
5613
  */
5605
- Output: MediaImageSpriteItem
5614
+ Output?: MediaImageSpriteItem
5606
5615
  /**
5607
5616
  * 对视频截雪碧图任务进度,取值范围 [0-100] 。
5608
5617
  */
5609
- Progress: number
5618
+ Progress?: number
5610
5619
  /**
5611
5620
  * 截雪碧图任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
5612
5621
  */
@@ -5624,52 +5633,52 @@ export interface ReduceMediaBitrateTask {
5624
5633
  /**
5625
5634
  * 视频处理任务 ID。
5626
5635
  */
5627
- TaskId: string
5636
+ TaskId?: string
5628
5637
  /**
5629
5638
  * 任务流状态,取值:
5630
5639
  <li>PROCESSING:处理中;</li>
5631
5640
  <li>FINISH:已完成。</li>
5632
5641
  */
5633
- Status: string
5642
+ Status?: string
5634
5643
  /**
5635
5644
  * 媒体文件 ID。
5636
5645
  */
5637
- FileId: string
5646
+ FileId?: string
5638
5647
  /**
5639
5648
  * 媒体文件名称。
5640
5649
  */
5641
- FileName: string
5650
+ FileName?: string
5642
5651
  /**
5643
5652
  * 媒体文件地址。
5644
5653
  */
5645
- FileUrl: string
5654
+ FileUrl?: string
5646
5655
  /**
5647
5656
  * 原始视频的元信息。
5648
5657
  注意:此字段可能返回 null,表示取不到有效值。
5649
5658
  */
5650
- MetaData: MediaMetaData
5659
+ MetaData?: MediaMetaData
5651
5660
  /**
5652
5661
  * 降码率任务执行状态与结果。
5653
5662
  */
5654
- MediaProcessResultSet: Array<ReduceMediaBitrateMediaProcessTaskResult>
5663
+ MediaProcessResultSet?: Array<ReduceMediaBitrateMediaProcessTaskResult>
5655
5664
  /**
5656
5665
  * 任务流的优先级,取值范围为 [-10, 10]。
5657
5666
  */
5658
- TasksPriority: number
5667
+ TasksPriority?: number
5659
5668
  /**
5660
5669
  * 任务流状态变更通知模式。
5661
5670
  <li>Finish:只有当任务流全部执行完毕时,才发起一次事件通知;</li>
5662
5671
  <li>None:不接受该任务流回调。</li>
5663
5672
  */
5664
- TasksNotifyMode: string
5673
+ TasksNotifyMode?: string
5665
5674
  /**
5666
5675
  * 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
5667
5676
  */
5668
- SessionContext: string
5677
+ SessionContext?: string
5669
5678
  /**
5670
5679
  * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
5671
5680
  */
5672
- SessionId: string
5681
+ SessionId?: string
5673
5682
  }
5674
5683
 
5675
5684
  /**
@@ -6089,11 +6098,11 @@ export interface CreatePersonSampleResponse {
6089
6098
  /**
6090
6099
  * 素材信息。
6091
6100
  */
6092
- Person: AiSamplePerson
6101
+ Person?: AiSamplePerson
6093
6102
  /**
6094
6103
  * 处理失败的五官定位信息。
6095
6104
  */
6096
- FailFaceInfoSet: Array<AiSampleFailFaceInfo>
6105
+ FailFaceInfoSet?: Array<AiSampleFailFaceInfo>
6097
6106
  /**
6098
6107
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6099
6108
  */
@@ -6573,32 +6582,32 @@ export interface AiReviewTaskPornOcrResult {
6573
6582
  /**
6574
6583
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
6575
6584
  */
6576
- Status: string
6585
+ Status?: string
6577
6586
  /**
6578
6587
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
6579
6588
  */
6580
- ErrCodeExt: string
6589
+ ErrCodeExt?: string
6581
6590
  /**
6582
6591
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
6583
6592
  */
6584
- ErrCode: number
6593
+ ErrCode?: number
6585
6594
  /**
6586
6595
  * 错误信息。
6587
6596
  */
6588
- Message: string
6597
+ Message?: string
6589
6598
  /**
6590
6599
  * 音视频审核 Ocr 文字涉及令人反感的信息的任务输入。
6591
6600
  */
6592
- Input: AiReviewPornOcrTaskInput
6601
+ Input?: AiReviewPornOcrTaskInput
6593
6602
  /**
6594
6603
  * Ocr 文字音视频审核涉及令人反感的信息的任务输出。
6595
6604
  注意:此字段可能返回 null,表示取不到有效值。
6596
6605
  */
6597
- Output: AiReviewPornOcrTaskOutput
6606
+ Output?: AiReviewPornOcrTaskOutput
6598
6607
  /**
6599
6608
  * Ocr 文字音视频审核涉及令人反感的信息的任务进度,取值范围 [0-100] 。
6600
6609
  */
6601
- Progress: number
6610
+ Progress?: number
6602
6611
  }
6603
6612
 
6604
6613
  /**
@@ -6706,15 +6715,15 @@ export interface RebuildMediaTaskInput {
6706
6715
  /**
6707
6716
  * 媒体文件 ID。
6708
6717
  */
6709
- FileId: string
6718
+ FileId?: string
6710
6719
  /**
6711
6720
  * 起始偏移时间,单位:秒,不填表示从视频开始截取。
6712
6721
  */
6713
- StartTimeOffset: number
6722
+ StartTimeOffset?: number
6714
6723
  /**
6715
6724
  * 结束偏移时间,单位:秒,不填表示截取到视频末尾。
6716
6725
  */
6717
- EndTimeOffset: number
6726
+ EndTimeOffset?: number
6718
6727
  /**
6719
6728
  * 音画质重生模版号。
6720
6729
  */
@@ -6722,15 +6731,15 @@ export interface RebuildMediaTaskInput {
6722
6731
  /**
6723
6732
  * 画质修复控制参数。
6724
6733
  */
6725
- RepairInfo: RepairInfo
6734
+ RepairInfo?: RepairInfo
6726
6735
  /**
6727
6736
  * 智能插帧控制参数。
6728
6737
  */
6729
- VideoFrameInterpolationInfo: VideoFrameInterpolationInfo
6738
+ VideoFrameInterpolationInfo?: VideoFrameInterpolationInfo
6730
6739
  /**
6731
6740
  * 画面超分控制参数。
6732
6741
  */
6733
- SuperResolutionInfo: SuperResolutionInfo
6742
+ SuperResolutionInfo?: SuperResolutionInfo
6734
6743
  /**
6735
6744
  * 高动态范围类型控制参数。
6736
6745
  */
@@ -6902,7 +6911,7 @@ export interface AiReviewPornOcrTaskInput {
6902
6911
  /**
6903
6912
  * 鉴别涉及令人反感的信息的模板 ID。
6904
6913
  */
6905
- Definition: number
6914
+ Definition?: number
6906
6915
  }
6907
6916
 
6908
6917
  /**
@@ -7229,32 +7238,32 @@ export interface AiAnalysisTaskTagResult {
7229
7238
  /**
7230
7239
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
7231
7240
  */
7232
- Status: string
7241
+ Status?: string
7233
7242
  /**
7234
7243
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
7235
7244
  */
7236
- ErrCodeExt: string
7245
+ ErrCodeExt?: string
7237
7246
  /**
7238
7247
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
7239
7248
  */
7240
- ErrCode: number
7249
+ ErrCode?: number
7241
7250
  /**
7242
7251
  * 错误信息。
7243
7252
  */
7244
- Message: string
7253
+ Message?: string
7245
7254
  /**
7246
7255
  * 智能标签任务输入。
7247
7256
  */
7248
- Input: AiAnalysisTaskTagInput
7257
+ Input?: AiAnalysisTaskTagInput
7249
7258
  /**
7250
7259
  * 智能标签任务输出。
7251
7260
  注意:此字段可能返回 null,表示取不到有效值。
7252
7261
  */
7253
- Output: AiAnalysisTaskTagOutput
7262
+ Output?: AiAnalysisTaskTagOutput
7254
7263
  /**
7255
7264
  * 智能标签任务进度,取值范围 [0-100] 。
7256
7265
  */
7257
- Progress: number
7266
+ Progress?: number
7258
7267
  /**
7259
7268
  * 智能标签任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
7260
7269
  */
@@ -7294,7 +7303,7 @@ export interface ReviewAudioVideoTaskOutput {
7294
7303
  <li>review:建议复审;</li>
7295
7304
  <li>block:建议封禁。</li>
7296
7305
  */
7297
- Suggestion: string
7306
+ Suggestion?: string
7298
7307
  /**
7299
7308
  * 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违规的标签,取值范围:
7300
7309
  <li>Porn:色情;</li>
@@ -7305,7 +7314,7 @@ export interface ReviewAudioVideoTaskOutput {
7305
7314
  <li>Abuse:谩骂;</li>
7306
7315
  <li>Moan:娇喘。</li>
7307
7316
  */
7308
- Label: string
7317
+ Label?: string
7309
7318
  /**
7310
7319
  * 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违禁的形式,取值范围:
7311
7320
  <li>Image:画面上的人物或图标;</li>
@@ -7313,25 +7322,25 @@ export interface ReviewAudioVideoTaskOutput {
7313
7322
  <li>ASR:语音中的文字;</li>
7314
7323
  <li>Voice:声音。</li>
7315
7324
  */
7316
- Form: string
7325
+ Form?: string
7317
7326
  /**
7318
7327
  * 有违规信息的嫌疑的视频片段列表。
7319
7328
  <font color=red>注意</font> :该列表最多仅展示前 10个 元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
7320
7329
  */
7321
- SegmentSet: Array<ReviewAudioVideoSegmentItem>
7330
+ SegmentSet?: Array<ReviewAudioVideoSegmentItem>
7322
7331
  /**
7323
7332
  * 涉及违规信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
7324
7333
  */
7325
- SegmentSetFileUrl: string
7334
+ SegmentSetFileUrl?: string
7326
7335
  /**
7327
7336
  * 涉及违规信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
7328
7337
  */
7329
- SegmentSetFileUrlExpireTime: string
7338
+ SegmentSetFileUrlExpireTime?: string
7330
7339
  /**
7331
7340
  * 封面审核结果。
7332
7341
  注意:此字段可能返回 null,表示取不到有效值。
7333
7342
  */
7334
- CoverReviewResult: ReviewImageResult
7343
+ CoverReviewResult?: ReviewImageResult
7335
7344
  }
7336
7345
 
7337
7346
  /**
@@ -7341,7 +7350,7 @@ export interface RemoveWaterMarkTaskOutput {
7341
7350
  /**
7342
7351
  * 媒体文件 ID。
7343
7352
  */
7344
- FileId: string
7353
+ FileId?: string
7345
7354
  /**
7346
7355
  * 文件类型,例如 mp4、mp3 等。
7347
7356
  */
@@ -7357,7 +7366,7 @@ export interface RemoveWaterMarkTaskOutput {
7357
7366
  /**
7358
7367
  * 元信息。包括大小、时长、视频流信息、音频流信息等。
7359
7368
  */
7360
- MetaData: MediaMetaData
7369
+ MetaData?: MediaMetaData
7361
7370
  }
7362
7371
 
7363
7372
  /**
@@ -7611,14 +7620,14 @@ export interface PornImageResult {
7611
7620
  /**
7612
7621
  * 鉴别涉及令人反感的信息的评分,分值为0到100。
7613
7622
  */
7614
- Confidence: number
7623
+ Confidence?: number
7615
7624
  /**
7616
7625
  * 鉴别涉及令人反感的信息的结果建议,取值范围:
7617
7626
  <li>pass;</li>
7618
7627
  <li>review;</li>
7619
7628
  <li>block。</li>
7620
7629
  */
7621
- Suggestion: string
7630
+ Suggestion?: string
7622
7631
  /**
7623
7632
  * 鉴别涉及令人反感的信息的结果标签,取值范围:
7624
7633
  <li>porn:色情;</li>
@@ -7626,7 +7635,7 @@ export interface PornImageResult {
7626
7635
  <li>vulgar:低俗;</li>
7627
7636
  <li>intimacy:亲密行为。</li>
7628
7637
  */
7629
- Label: string
7638
+ Label?: string
7630
7639
  }
7631
7640
 
7632
7641
  /**
@@ -7636,7 +7645,7 @@ export interface ProcessImageResponse {
7636
7645
  /**
7637
7646
  * 图片内容智能识别任务结果。
7638
7647
  */
7639
- ContentReviewResultSet: Array<ContentReviewResult>
7648
+ ContentReviewResultSet?: Array<ContentReviewResult>
7640
7649
  /**
7641
7650
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7642
7651
  */
@@ -7673,11 +7682,11 @@ export interface ModifyMediaInfoResponse {
7673
7682
  * 新的视频封面 URL。
7674
7683
  * 注意:仅当请求携带 CoverData 时此返回值有效。 *
7675
7684
  */
7676
- CoverUrl: string
7685
+ CoverUrl?: string
7677
7686
  /**
7678
7687
  * 新增的字幕信息。
7679
7688
  */
7680
- AddedSubtitleSet: Array<MediaSubtitleItem>
7689
+ AddedSubtitleSet?: Array<MediaSubtitleItem>
7681
7690
  /**
7682
7691
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7683
7692
  */
@@ -7726,32 +7735,32 @@ export interface AiRecognitionTaskOcrFullTextResult {
7726
7735
  /**
7727
7736
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
7728
7737
  */
7729
- Status: string
7738
+ Status?: string
7730
7739
  /**
7731
7740
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
7732
7741
  */
7733
- ErrCodeExt: string
7742
+ ErrCodeExt?: string
7734
7743
  /**
7735
7744
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
7736
7745
  */
7737
- ErrCode: number
7746
+ ErrCode?: number
7738
7747
  /**
7739
7748
  * 错误信息。
7740
7749
  */
7741
- Message: string
7750
+ Message?: string
7742
7751
  /**
7743
7752
  * 文本全文识别任务输入信息。
7744
7753
  */
7745
- Input: AiRecognitionTaskOcrFullTextResultInput
7754
+ Input?: AiRecognitionTaskOcrFullTextResultInput
7746
7755
  /**
7747
7756
  * 文本全文识别任务输出信息。
7748
7757
  注意:此字段可能返回 null,表示取不到有效值。
7749
7758
  */
7750
- Output: AiRecognitionTaskOcrFullTextResultOutput
7759
+ Output?: AiRecognitionTaskOcrFullTextResultOutput
7751
7760
  /**
7752
7761
  * 文本全文识别任务进度,取值范围 [0-100] 。
7753
7762
  */
7754
- Progress: number
7763
+ Progress?: number
7755
7764
  /**
7756
7765
  * 文本全文识别任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
7757
7766
  */
@@ -7820,32 +7829,32 @@ export interface MediaProcessTaskSnapshotByTimeOffsetResult {
7820
7829
  /**
7821
7830
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
7822
7831
  */
7823
- Status: string
7832
+ Status?: string
7824
7833
  /**
7825
7834
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
7826
7835
  */
7827
- ErrCodeExt: string
7836
+ ErrCodeExt?: string
7828
7837
  /**
7829
7838
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
7830
7839
  */
7831
- ErrCode: number
7840
+ ErrCode?: number
7832
7841
  /**
7833
7842
  * 错误信息。
7834
7843
  */
7835
- Message: string
7844
+ Message?: string
7836
7845
  /**
7837
7846
  * 对视频按指定时间点截图任务输入。
7838
7847
  */
7839
- Input: SnapshotByTimeOffsetTaskInput
7848
+ Input?: SnapshotByTimeOffsetTaskInput
7840
7849
  /**
7841
7850
  * 对视频按指定时间点截图任务输出。
7842
7851
  注意:此字段可能返回 null,表示取不到有效值。
7843
7852
  */
7844
- Output: MediaSnapshotByTimeOffsetItem
7853
+ Output?: MediaSnapshotByTimeOffsetItem
7845
7854
  /**
7846
7855
  * 对视频按指定时间点截图任务进度,取值范围 [0-100] 。
7847
7856
  */
7848
- Progress: number
7857
+ Progress?: number
7849
7858
  /**
7850
7859
  * 时间点截图任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
7851
7860
  */
@@ -8007,40 +8016,40 @@ export interface MediaProcessTaskTranscodeResult {
8007
8016
  /**
8008
8017
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
8009
8018
  */
8010
- Status: string
8019
+ Status?: string
8011
8020
  /**
8012
8021
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
8013
8022
  */
8014
- ErrCodeExt: string
8023
+ ErrCodeExt?: string
8015
8024
  /**
8016
8025
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
8017
8026
  */
8018
- ErrCode: number
8027
+ ErrCode?: number
8019
8028
  /**
8020
8029
  * 错误信息。
8021
8030
  */
8022
- Message: string
8031
+ Message?: string
8023
8032
  /**
8024
8033
  * 转码任务的输入。
8025
8034
  */
8026
- Input: TranscodeTaskInput
8035
+ Input?: TranscodeTaskInput
8027
8036
  /**
8028
8037
  * 转码任务的输出。
8029
8038
  注意:此字段可能返回 null,表示取不到有效值。
8030
8039
  */
8031
- Output: MediaTranscodeItem
8040
+ Output?: MediaTranscodeItem
8032
8041
  /**
8033
8042
  * 转码进度,取值范围 [0-100] 。
8034
8043
  */
8035
- Progress: number
8044
+ Progress?: number
8036
8045
  /**
8037
8046
  * 转码任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
8038
8047
  */
8039
- BeginProcessTime: string
8048
+ BeginProcessTime?: string
8040
8049
  /**
8041
8050
  * 转码任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
8042
8051
  */
8043
- FinishTime: string
8052
+ FinishTime?: string
8044
8053
  }
8045
8054
 
8046
8055
  /**
@@ -8474,22 +8483,22 @@ export interface PoliticalImageResult {
8474
8483
  /**
8475
8484
  * 鉴别涉及令人不适宜信息的评分,分值为0到100。
8476
8485
  */
8477
- Confidence: number
8486
+ Confidence?: number
8478
8487
  /**
8479
8488
  * 鉴别涉及令人不适宜信息的结果建议,取值范围:
8480
8489
  <li>pass;</li>
8481
8490
  <li>review;</li>
8482
8491
  <li>block。</li>
8483
8492
  */
8484
- Suggestion: string
8493
+ Suggestion?: string
8485
8494
  /**
8486
8495
  * 涉及令人不适宜的信息、违规图标名字。
8487
8496
  */
8488
- Name: string
8497
+ Name?: string
8489
8498
  /**
8490
8499
  * 涉及令人不适宜的信息、违规图标出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
8491
8500
  */
8492
- AreaCoordSet: Array<number | bigint>
8501
+ AreaCoordSet?: Array<number | bigint>
8493
8502
  }
8494
8503
 
8495
8504
  /**
@@ -8565,11 +8574,11 @@ export interface DescribeSuperPlayerConfigsResponse {
8565
8574
  /**
8566
8575
  * 符合过滤条件的记录总数。
8567
8576
  */
8568
- TotalCount: number
8577
+ TotalCount?: number
8569
8578
  /**
8570
8579
  * 播放器配置数组。
8571
8580
  */
8572
- PlayerConfigSet: Array<PlayerConfig>
8581
+ PlayerConfigSet?: Array<PlayerConfig>
8573
8582
  /**
8574
8583
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8575
8584
  */
@@ -8610,11 +8619,11 @@ export interface LiveRealTimeClipMediaSegmentInfo {
8610
8619
  /**
8611
8620
  * 片段的起始时间。格式参照 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
8612
8621
  */
8613
- StartTime: string
8622
+ StartTime?: string
8614
8623
  /**
8615
8624
  * 片段的结束时间。格式参照 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
8616
8625
  */
8617
- EndTime: string
8626
+ EndTime?: string
8618
8627
  }
8619
8628
 
8620
8629
  /**
@@ -8826,19 +8835,19 @@ export interface DailyPlayStatInfo {
8826
8835
  /**
8827
8836
  * 播放媒体文件的日期,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
8828
8837
  */
8829
- Date: string
8838
+ Date?: string
8830
8839
  /**
8831
8840
  * 媒体文件ID。
8832
8841
  */
8833
- FileId: string
8842
+ FileId?: string
8834
8843
  /**
8835
8844
  * 播放次数。
8836
8845
  */
8837
- PlayTimes: number
8846
+ PlayTimes?: number
8838
8847
  /**
8839
8848
  * 播放流量,单位:字节。
8840
8849
  */
8841
- Traffic: number
8850
+ Traffic?: number
8842
8851
  }
8843
8852
 
8844
8853
  /**
@@ -8868,7 +8877,7 @@ export interface DescribeEventsStateResponse {
8868
8877
  /**
8869
8878
  * 待进行拉取的事件通知数,为近似值,约5秒延迟。
8870
8879
  */
8871
- CountOfEventsToPull: number
8880
+ CountOfEventsToPull?: number
8872
8881
  /**
8873
8882
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8874
8883
  */
@@ -8938,31 +8947,31 @@ export interface MediaProcessTaskCoverBySnapshotResult {
8938
8947
  /**
8939
8948
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
8940
8949
  */
8941
- Status: string
8950
+ Status?: string
8942
8951
  /**
8943
8952
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
8944
8953
  */
8945
- ErrCodeExt: string
8954
+ ErrCodeExt?: string
8946
8955
  /**
8947
8956
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
8948
8957
  */
8949
- ErrCode: number
8958
+ ErrCode?: number
8950
8959
  /**
8951
8960
  * 错误信息。
8952
8961
  */
8953
- Message: string
8962
+ Message?: string
8954
8963
  /**
8955
8964
  * 对视频截图做封面任务的输入。
8956
8965
  */
8957
- Input: CoverBySnapshotTaskInput
8966
+ Input?: CoverBySnapshotTaskInput
8958
8967
  /**
8959
8968
  * 对视频截图做封面任务的输出。
8960
8969
  */
8961
- Output: CoverBySnapshotTaskOutput
8970
+ Output?: CoverBySnapshotTaskOutput
8962
8971
  /**
8963
8972
  * 对视频截图做封面任务进度,取值范围 [0-100] 。
8964
8973
  */
8965
- Progress: number
8974
+ Progress?: number
8966
8975
  /**
8967
8976
  * 截图做封面任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
8968
8977
  */
@@ -9090,39 +9099,39 @@ export interface WechatMiniProgramPublishTask {
9090
9099
  /**
9091
9100
  * 任务 ID。
9092
9101
  */
9093
- TaskId: string
9102
+ TaskId?: string
9094
9103
  /**
9095
9104
  * 任务状态,取值:
9096
9105
  WAITING:等待中;
9097
9106
  PROCESSING:处理中;
9098
9107
  FINISH:已完成。
9099
9108
  */
9100
- Status: string
9109
+ Status?: string
9101
9110
  /**
9102
9111
  * 错误码
9103
9112
  <li>0:成功;</li>
9104
9113
  <li>其他值:失败。</li>
9105
9114
  */
9106
- ErrCode: number
9115
+ ErrCode?: number
9107
9116
  /**
9108
9117
  * 错误信息。
9109
9118
  */
9110
- Message: string
9119
+ Message?: string
9111
9120
  /**
9112
9121
  * 发布视频文件 ID。
9113
9122
  */
9114
- FileId: string
9123
+ FileId?: string
9115
9124
  /**
9116
9125
  * 发布视频所对应的转码模板 ID,为 0 代表原始视频。
9117
9126
  */
9118
- SourceDefinition: number
9127
+ SourceDefinition?: number
9119
9128
  /**
9120
9129
  * 微信小程序视频发布状态,取值:
9121
9130
  <li>Pass:发布成功;</li>
9122
9131
  <li>Failed:发布失败;</li>
9123
9132
  <li>Rejected:音视频审核未通过。</li>
9124
9133
  */
9125
- PublishResult: string
9134
+ PublishResult?: string
9126
9135
  }
9127
9136
 
9128
9137
  /**
@@ -9556,11 +9565,16 @@ export interface AiRecognitionTaskObjectResultItem {
9556
9565
  /**
9557
9566
  * 识别的物体名称。
9558
9567
  */
9559
- Name: string
9568
+ Name?: string
9569
+ /**
9570
+ * 物体出现的片段列表。
9571
+ * @deprecated
9572
+ */
9573
+ SegmentSet?: Array<AiRecognitionTaskObjectSeqmentItem>
9560
9574
  /**
9561
9575
  * 物体出现的片段列表。
9562
9576
  */
9563
- SegmentSet: Array<AiRecognitionTaskObjectSeqmentItem>
9577
+ RecognitionSegmentSet?: Array<AiRecognitionTaskObjectSegmentItem>
9564
9578
  }
9565
9579
 
9566
9580
  /**
@@ -9797,70 +9811,70 @@ export interface PlayerConfig {
9797
9811
  /**
9798
9812
  * 播放器配置名字。
9799
9813
  */
9800
- Name: string
9814
+ Name?: string
9801
9815
  /**
9802
9816
  * 播放器配置类型,取值范围:
9803
9817
  <li>Preset:系统预置配置;</li>
9804
9818
  <li>Custom:用户自定义配置。</li>
9805
9819
  */
9806
- Type: string
9820
+ Type?: string
9807
9821
  /**
9808
9822
  * 播放的音视频类型,可选值有:
9809
9823
  <li>AdaptiveDynamicStream:自适应码流输出;</li>
9810
9824
  <li>Transcode:转码输出;</li>
9811
9825
  <li>Original:原始音视频。</li>
9812
9826
  */
9813
- AudioVideoType: string
9827
+ AudioVideoType?: string
9814
9828
  /**
9815
9829
  * 播放 DRM 保护的自适应码流开关:
9816
9830
  <li>ON:开启,表示仅播放 DRM 保护的自适应码流输出;</li>
9817
9831
  <li>OFF:关闭,表示播放未加密的自适应码流输出。</li>
9818
9832
  */
9819
- DrmSwitch: string
9833
+ DrmSwitch?: string
9820
9834
  /**
9821
9835
  * 允许输出的未加密的自适应码流模板 ID。
9822
9836
  */
9823
- AdaptiveDynamicStreamingDefinition: number
9837
+ AdaptiveDynamicStreamingDefinition?: number
9824
9838
  /**
9825
9839
  * 允许输出的 DRM 自适应码流模板内容。
9826
9840
  注意:此字段可能返回 null,表示取不到有效值。
9827
9841
  */
9828
- DrmStreamingsInfo: DrmStreamingsInfo
9842
+ DrmStreamingsInfo?: DrmStreamingsInfo
9829
9843
  /**
9830
9844
  * 允许输出的转码模板 ID。
9831
9845
  */
9832
- TranscodeDefinition: number
9846
+ TranscodeDefinition?: number
9833
9847
  /**
9834
9848
  * 允许输出的雪碧图模板 ID。
9835
9849
  */
9836
- ImageSpriteDefinition: number
9850
+ ImageSpriteDefinition?: number
9837
9851
  /**
9838
9852
  * 播放器对不于不同分辨率的子流展示名字。
9839
9853
  */
9840
- ResolutionNameSet: Array<ResolutionNameInfo>
9854
+ ResolutionNameSet?: Array<ResolutionNameInfo>
9841
9855
  /**
9842
9856
  * 播放器配置创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。
9843
9857
  */
9844
- CreateTime: string
9858
+ CreateTime?: string
9845
9859
  /**
9846
9860
  * 播放器配置最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。
9847
9861
  */
9848
- UpdateTime: string
9862
+ UpdateTime?: string
9849
9863
  /**
9850
9864
  * 播放时使用的域名。值为 Default,表示使用[默认分发配置](https://cloud.tencent.com/document/product/266/33373)中的域名。
9851
9865
  */
9852
- Domain: string
9866
+ Domain?: string
9853
9867
  /**
9854
9868
  * 播放时使用的 Scheme。取值范围:
9855
9869
  <li>Default:使用[默认分发配置](https://cloud.tencent.com/document/product/266/33373)中的 Scheme;</li>
9856
9870
  <li>HTTP;</li>
9857
9871
  <li>HTTPS。</li>
9858
9872
  */
9859
- Scheme: string
9873
+ Scheme?: string
9860
9874
  /**
9861
9875
  * 模板描述信息。
9862
9876
  */
9863
- Comment: string
9877
+ Comment?: string
9864
9878
  }
9865
9879
 
9866
9880
  /**
@@ -10108,27 +10122,27 @@ export interface AiReviewTerrorismOcrTaskOutput {
10108
10122
  /**
10109
10123
  * Ocr 文字有涉及令人不安全信息的评分,分值为0到100。
10110
10124
  */
10111
- Confidence: number
10125
+ Confidence?: number
10112
10126
  /**
10113
10127
  * Ocr 文字有涉及令人不安全信息的结果建议,取值范围:
10114
10128
  <li>pass。</li>
10115
10129
  <li>review。</li>
10116
10130
  <li>block。</li>
10117
10131
  */
10118
- Suggestion: string
10132
+ Suggestion?: string
10119
10133
  /**
10120
10134
  * Ocr 文字有涉及令人不安全信息嫌疑的视频片段列表。
10121
10135
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
10122
10136
  */
10123
- SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>
10137
+ SegmentSet?: Array<MediaContentReviewOcrTextSegmentItem>
10124
10138
  /**
10125
10139
  * Ocr 文字有涉及令人不安全信息嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
10126
10140
  */
10127
- SegmentSetFileUrl: string
10141
+ SegmentSetFileUrl?: string
10128
10142
  /**
10129
10143
  * Ocr 文字有涉及令人不安全信息嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
10130
10144
  */
10131
- SegmentSetFileUrlExpireTime: string
10145
+ SegmentSetFileUrlExpireTime?: string
10132
10146
  }
10133
10147
 
10134
10148
  /**
@@ -10178,23 +10192,23 @@ export interface ReduceMediaBitrateAdaptiveDynamicStreamingResult {
10178
10192
  /**
10179
10193
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
10180
10194
  */
10181
- Status: string
10195
+ Status?: string
10182
10196
  /**
10183
10197
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
10184
10198
  */
10185
- ErrCodeExt: string
10199
+ ErrCodeExt?: string
10186
10200
  /**
10187
10201
  * 错误信息。
10188
10202
  */
10189
- Message: string
10203
+ Message?: string
10190
10204
  /**
10191
10205
  * 对视频转自适应码流任务的输入。
10192
10206
  */
10193
- Input: AdaptiveDynamicStreamingTaskInput
10207
+ Input?: AdaptiveDynamicStreamingTaskInput
10194
10208
  /**
10195
10209
  * 对视频转自适应码流任务的输出。
10196
10210
  */
10197
- Output: AdaptiveDynamicStreamingInfoItem
10211
+ Output?: AdaptiveDynamicStreamingInfoItem
10198
10212
  }
10199
10213
 
10200
10214
  /**
@@ -10405,23 +10419,23 @@ export interface HeadTailTemplate {
10405
10419
  /**
10406
10420
  * 片头片尾模板号。
10407
10421
  */
10408
- Definition: number
10422
+ Definition?: number
10409
10423
  /**
10410
10424
  * 模板名,最大支持 64 个字符。
10411
10425
  */
10412
- Name: string
10426
+ Name?: string
10413
10427
  /**
10414
10428
  * 模板描述,最大支持 256 个字符。
10415
10429
  */
10416
- Comment: string
10430
+ Comment?: string
10417
10431
  /**
10418
10432
  * 片头候选列表。使用时会选择跟正片分辨率最贴近的一个使用,当存在相同的候选时,选择第一个使用,最大支持 5 个。
10419
10433
  */
10420
- HeadCandidateSet: Array<string>
10434
+ HeadCandidateSet?: Array<string>
10421
10435
  /**
10422
10436
  * 片尾候选列表。使用时会选择跟正片分辨率最贴近的一个使用,当存在相同的候选时,选择第一个使用,最大支持 5 个。
10423
10437
  */
10424
- TailCandidateSet: Array<string>
10438
+ TailCandidateSet?: Array<string>
10425
10439
  /**
10426
10440
  * 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
10427
10441
  <li> stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;</li>
@@ -10430,7 +10444,7 @@ export interface HeadTailTemplate {
10430
10444
  <li> black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。</li>
10431
10445
  默认值:stretch 。
10432
10446
  */
10433
- FillType: string
10447
+ FillType?: string
10434
10448
  /**
10435
10449
  * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
10436
10450
  */
@@ -10627,39 +10641,39 @@ export interface DomainDetailInfo {
10627
10641
  /**
10628
10642
  * 域名名称。
10629
10643
  */
10630
- Domain: string
10644
+ Domain?: string
10631
10645
  /**
10632
10646
  * 加速地区信息。
10633
10647
  注意:此字段可能返回 null,表示取不到有效值。
10634
10648
  */
10635
- AccelerateAreaInfos: Array<AccelerateAreaInfo>
10649
+ AccelerateAreaInfos?: Array<AccelerateAreaInfo>
10636
10650
  /**
10637
10651
  * 部署状态,取值有:
10638
10652
  <li>Online:上线;</li>
10639
10653
  <li>Deploying:部署中;</li>
10640
10654
  <li>Locked: 锁定中,出现该状态时,无法对该域名进行部署变更。</li>
10641
10655
  */
10642
- DeployStatus: string
10656
+ DeployStatus?: string
10643
10657
  /**
10644
10658
  * HTTPS 配置信息。
10645
10659
  注意:此字段可能返回 null,表示取不到有效值。
10646
10660
  */
10647
- HTTPSConfig: DomainHTTPSConfig
10661
+ HTTPSConfig?: DomainHTTPSConfig
10648
10662
  /**
10649
10663
  * [Key 防盗链](https://cloud.tencent.com/document/product/266/14047)配置信息。
10650
10664
  注意:此字段可能返回 null,表示取不到有效值。
10651
10665
  */
10652
- UrlSignatureAuthPolicy: UrlSignatureAuthPolicy
10666
+ UrlSignatureAuthPolicy?: UrlSignatureAuthPolicy
10653
10667
  /**
10654
10668
  * [Referer 防盗链](https://cloud.tencent.com/document/product/266/14046)配置信息。
10655
10669
  注意:此字段可能返回 null,表示取不到有效值。
10656
10670
  */
10657
- RefererAuthPolicy: RefererAuthPolicy
10671
+ RefererAuthPolicy?: RefererAuthPolicy
10658
10672
  /**
10659
10673
  * 域名添加到腾讯云点播系统中的时间。
10660
10674
  <li>格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。</li>
10661
10675
  */
10662
- CreateTime: string
10676
+ CreateTime?: string
10663
10677
  /**
10664
10678
  * 域名 QUIC 配置信息。
10665
10679
  注意:此字段可能返回 null,表示取不到有效值。
@@ -10674,32 +10688,32 @@ export interface AiReviewTaskTerrorismResult {
10674
10688
  /**
10675
10689
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
10676
10690
  */
10677
- Status: string
10691
+ Status?: string
10678
10692
  /**
10679
10693
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
10680
10694
  */
10681
- ErrCodeExt: string
10695
+ ErrCodeExt?: string
10682
10696
  /**
10683
10697
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
10684
10698
  */
10685
- ErrCode: number
10699
+ ErrCode?: number
10686
10700
  /**
10687
10701
  * 错误信息。
10688
10702
  */
10689
- Message: string
10703
+ Message?: string
10690
10704
  /**
10691
10705
  * 音视频审核涉及令人不安全的信息的任务输入。
10692
10706
  */
10693
- Input: AiReviewTerrorismTaskInput
10707
+ Input?: AiReviewTerrorismTaskInput
10694
10708
  /**
10695
10709
  * 音视频审核涉及令人不安全的信息的任务输出。
10696
10710
  注意:此字段可能返回 null,表示取不到有效值。
10697
10711
  */
10698
- Output: AiReviewTerrorismTaskOutput
10712
+ Output?: AiReviewTerrorismTaskOutput
10699
10713
  /**
10700
10714
  * 音视频审核涉及令人不安全的信息的任务进度,取值范围 [0-100] 。
10701
10715
  */
10702
- Progress: number
10716
+ Progress?: number
10703
10717
  }
10704
10718
 
10705
10719
  /**
@@ -10709,7 +10723,7 @@ export interface ProcessMediaByUrlResponse {
10709
10723
  /**
10710
10724
  * 任务 ID
10711
10725
  */
10712
- TaskId: string
10726
+ TaskId?: string
10713
10727
  /**
10714
10728
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10715
10729
  */
@@ -10741,26 +10755,26 @@ export interface MediaContentReviewAsrTextSegmentItem {
10741
10755
  /**
10742
10756
  * 嫌疑片段起始的偏移时间,单位:秒。
10743
10757
  */
10744
- StartTimeOffset: number
10758
+ StartTimeOffset?: number
10745
10759
  /**
10746
10760
  * 嫌疑片段结束的偏移时间,单位:秒。
10747
10761
  */
10748
- EndTimeOffset: number
10762
+ EndTimeOffset?: number
10749
10763
  /**
10750
10764
  * 嫌疑片段置信度。
10751
10765
  */
10752
- Confidence: number
10766
+ Confidence?: number
10753
10767
  /**
10754
10768
  * 嫌疑片段音视频审核的结果建议,取值范围:
10755
10769
  <li>pass。</li>
10756
10770
  <li>review。</li>
10757
10771
  <li>block。</li>
10758
10772
  */
10759
- Suggestion: string
10773
+ Suggestion?: string
10760
10774
  /**
10761
10775
  * 嫌疑关键词列表。
10762
10776
  */
10763
- KeywordSet: Array<string>
10777
+ KeywordSet?: Array<string>
10764
10778
  }
10765
10779
 
10766
10780
  /**
@@ -10797,17 +10811,17 @@ export interface DescribeCdnLogsResponse {
10797
10811
  * 日志下载链接总数量。
10798
10812
  注意:此字段可能返回 null,表示取不到有效值。
10799
10813
  */
10800
- TotalCount: number
10814
+ TotalCount?: number
10801
10815
  /**
10802
10816
  * 海外CDN节点的日志下载列表。如果域名没有开启海外加速,忽略该参数。
10803
10817
  注意:此字段可能返回 null,表示取不到有效值。
10804
10818
  */
10805
- OverseaCdnLogs: Array<CdnLogInfo>
10819
+ OverseaCdnLogs?: Array<CdnLogInfo>
10806
10820
  /**
10807
10821
  * 国内CDN节点的日志下载列表。
10808
10822
  注意:此字段可能返回 null,表示取不到有效值。
10809
10823
  */
10810
- DomesticCdnLogs: Array<CdnLogInfo>
10824
+ DomesticCdnLogs?: Array<CdnLogInfo>
10811
10825
  /**
10812
10826
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10813
10827
  */
@@ -10821,26 +10835,26 @@ export interface MediaContentReviewPoliticalSegmentItem {
10821
10835
  /**
10822
10836
  * 嫌疑片段起始的偏移时间,单位:秒。
10823
10837
  */
10824
- StartTimeOffset: number
10838
+ StartTimeOffset?: number
10825
10839
  /**
10826
10840
  * 嫌疑片段结束的偏移时间,单位:秒。
10827
10841
  */
10828
- EndTimeOffset: number
10842
+ EndTimeOffset?: number
10829
10843
  /**
10830
10844
  * 嫌疑片段分数。
10831
10845
  */
10832
- Confidence: number
10846
+ Confidence?: number
10833
10847
  /**
10834
10848
  * 嫌疑片段涉及令人不适宜的信息的结果建议,取值范围:
10835
10849
  <li>pass。</li>
10836
10850
  <li>review。</li>
10837
10851
  <li>block。</li>
10838
10852
  */
10839
- Suggestion: string
10853
+ Suggestion?: string
10840
10854
  /**
10841
10855
  * 涉及令人不适宜的信息、违规图标名字。
10842
10856
  */
10843
- Name: string
10857
+ Name?: string
10844
10858
  /**
10845
10859
  * 嫌疑片段涉及令人不适宜的信息的结果标签。音视频审核模板[画面涉及令人不适宜的信息的任务控制参数](https://cloud.tencent.com/document/api/266/31773#PoliticalImgReviewTemplateInfo)里 LabelSet 参数与此参数取值范围的对应关系:
10846
10860
  violation_photo:
@@ -10867,24 +10881,24 @@ celebrity:
10867
10881
  military:
10868
10882
  <li>sensitive_military:违规相关人物。</li>
10869
10883
  */
10870
- Label: string
10884
+ Label?: string
10871
10885
  /**
10872
10886
  * 嫌疑图片 URL (图片不会永久存储,到达
10873
10887
  PicUrlExpireTime 时间点后图片将被删除)。
10874
10888
  */
10875
- Url: string
10889
+ Url?: string
10876
10890
  /**
10877
10891
  * 涉及令人不适宜的信息、违规图标出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
10878
10892
  */
10879
- AreaCoordSet: Array<number | bigint>
10893
+ AreaCoordSet?: Array<number | bigint>
10880
10894
  /**
10881
10895
  * 该字段已废弃,请使用 PicUrlExpireTime。
10882
10896
  */
10883
- PicUrlExpireTimeStamp: number
10897
+ PicUrlExpireTimeStamp?: number
10884
10898
  /**
10885
10899
  * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
10886
10900
  */
10887
- PicUrlExpireTime: string
10901
+ PicUrlExpireTime?: string
10888
10902
  }
10889
10903
 
10890
10904
  /**
@@ -10904,7 +10918,7 @@ export interface CreateSnapshotByTimeOffsetTemplateResponse {
10904
10918
  /**
10905
10919
  * 时间点截图模板唯一标识。
10906
10920
  */
10907
- Definition: number
10921
+ Definition?: number
10908
10922
  /**
10909
10923
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10910
10924
  */
@@ -10984,17 +10998,17 @@ export interface ImageSpriteTemplate {
10984
10998
  /**
10985
10999
  * 雪碧图模板唯一标识。
10986
11000
  */
10987
- Definition: number
11001
+ Definition?: number
10988
11002
  /**
10989
11003
  * 模板类型,取值范围:
10990
11004
  <li>Preset:系统预置模板;</li>
10991
11005
  <li>Custom:用户自定义模板。</li>
10992
11006
  */
10993
- Type: string
11007
+ Type?: string
10994
11008
  /**
10995
11009
  * 雪碧图模板名称。
10996
11010
  */
10997
- Name: string
11011
+ Name?: string
10998
11012
  /**
10999
11013
  * 雪碧图中小图的宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
11000
11014
  <li>当 Width、Height 均为 0,则分辨率同源;</li>
@@ -11003,7 +11017,7 @@ export interface ImageSpriteTemplate {
11003
11017
  <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
11004
11018
  默认值:0。
11005
11019
  */
11006
- Width: number
11020
+ Width?: number
11007
11021
  /**
11008
11022
  * 雪碧图中小图的高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
11009
11023
  <li>当 Width、Height 均为 0,则分辨率同源;</li>
@@ -11012,53 +11026,53 @@ export interface ImageSpriteTemplate {
11012
11026
  <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
11013
11027
  默认值:0。
11014
11028
  */
11015
- Height: number
11029
+ Height?: number
11016
11030
  /**
11017
11031
  * 分辨率自适应,可选值:
11018
11032
  <li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
11019
11033
  <li>close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。</li>
11020
11034
  默认值:open。
11021
11035
  */
11022
- ResolutionAdaptive: string
11036
+ ResolutionAdaptive?: string
11023
11037
  /**
11024
11038
  * 采样类型。
11025
11039
  */
11026
- SampleType: string
11040
+ SampleType?: string
11027
11041
  /**
11028
11042
  * 采样间隔。
11029
11043
  */
11030
- SampleInterval: number
11044
+ SampleInterval?: number
11031
11045
  /**
11032
11046
  * 雪碧图中小图的行数。
11033
11047
  */
11034
- RowCount: number
11048
+ RowCount?: number
11035
11049
  /**
11036
11050
  * 雪碧图中小图的列数。
11037
11051
  */
11038
- ColumnCount: number
11052
+ ColumnCount?: number
11039
11053
  /**
11040
11054
  * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
11041
11055
  */
11042
- CreateTime: string
11056
+ CreateTime?: string
11043
11057
  /**
11044
11058
  * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
11045
11059
  */
11046
- UpdateTime: string
11060
+ UpdateTime?: string
11047
11061
  /**
11048
11062
  * 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
11049
11063
  <li> stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;</li>
11050
11064
  <li>black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。</li>
11051
11065
  默认值:black 。
11052
11066
  */
11053
- FillType: string
11067
+ FillType?: string
11054
11068
  /**
11055
11069
  * 模板描述信息。
11056
11070
  */
11057
- Comment: string
11071
+ Comment?: string
11058
11072
  /**
11059
11073
  * 图片格式。
11060
11074
  */
11061
- Format: string
11075
+ Format?: string
11062
11076
  }
11063
11077
 
11064
11078
  /**
@@ -11102,7 +11116,7 @@ export interface CreateAdaptiveDynamicStreamingTemplateResponse {
11102
11116
  /**
11103
11117
  * 自适应转码模板唯一标识。
11104
11118
  */
11105
- Definition: number
11119
+ Definition?: number
11106
11120
  /**
11107
11121
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11108
11122
  */
@@ -11179,30 +11193,30 @@ export interface ImageProcessingTemplate {
11179
11193
  /**
11180
11194
  * 图片处理模板唯一标识。
11181
11195
  */
11182
- Definition: number
11196
+ Definition?: number
11183
11197
  /**
11184
11198
  * 模板类型,取值范围:
11185
11199
  <li>Preset:系统预置模板;</li>
11186
11200
  <li>Custom:用户自定义模板。</li>
11187
11201
  */
11188
- Type: string
11202
+ Type?: string
11189
11203
  /**
11190
11204
  * 图片处理模板名称。
11191
11205
  */
11192
- Name: string
11206
+ Name?: string
11193
11207
  /**
11194
11208
  * 模板描述信息。
11195
11209
  */
11196
- Comment: string
11210
+ Comment?: string
11197
11211
  /**
11198
11212
  * 图片处理操作数组,操作将以数组顺序执行。
11199
11213
  <li>长度限制:3。</li>
11200
11214
  */
11201
- Operations: Array<ImageOperation>
11215
+ Operations?: Array<ImageOperation>
11202
11216
  /**
11203
11217
  * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
11204
11218
  */
11205
- CreateTime: string
11219
+ CreateTime?: string
11206
11220
  }
11207
11221
 
11208
11222
  /**
@@ -11328,17 +11342,25 @@ export interface TaskStatDataItem {
11328
11342
  }
11329
11343
 
11330
11344
  /**
11331
- * ParseStreamingManifest返回参数结构体
11345
+ * 物体识别结果片段。
11332
11346
  */
11333
- export interface ParseStreamingManifestResponse {
11347
+ export interface AiRecognitionTaskObjectSegmentItem {
11334
11348
  /**
11335
- * 分片文件列表。
11349
+ * 识别片段起始的偏移时间,单位:秒。
11336
11350
  */
11337
- MediaSegmentSet?: Array<string>
11351
+ StartTimeOffset?: number
11338
11352
  /**
11339
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11353
+ * 识别片段终止的偏移时间,单位:秒。
11340
11354
  */
11341
- RequestId?: string
11355
+ EndTimeOffset?: number
11356
+ /**
11357
+ * 识别片段置信度。取值:0~100。
11358
+ */
11359
+ Confidence?: number
11360
+ /**
11361
+ * 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
11362
+ */
11363
+ AreaCoordSet?: Array<number | bigint>
11342
11364
  }
11343
11365
 
11344
11366
  /**
@@ -11348,27 +11370,27 @@ export interface AiReviewPornOcrTaskOutput {
11348
11370
  /**
11349
11371
  * Ocr 文字涉及令人反感的信息的评分,分值为0到100。
11350
11372
  */
11351
- Confidence: number
11373
+ Confidence?: number
11352
11374
  /**
11353
11375
  * Ocr 文字涉及令人反感的信息的结果建议,取值范围:
11354
11376
  <li>pass。</li>
11355
11377
  <li>review。</li>
11356
11378
  <li>block。</li>
11357
11379
  */
11358
- Suggestion: string
11380
+ Suggestion?: string
11359
11381
  /**
11360
11382
  * Ocr 文字有涉及令人反感的信息的嫌疑的视频片段列表。
11361
11383
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
11362
11384
  */
11363
- SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>
11385
+ SegmentSet?: Array<MediaContentReviewOcrTextSegmentItem>
11364
11386
  /**
11365
11387
  * Ocr 文字有涉及令人反感的信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
11366
11388
  */
11367
- SegmentSetFileUrl: string
11389
+ SegmentSetFileUrl?: string
11368
11390
  /**
11369
11391
  * Ocr 文字有涉及令人反感的信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
11370
11392
  */
11371
- SegmentSetFileUrlExpireTime: string
11393
+ SegmentSetFileUrlExpireTime?: string
11372
11394
  }
11373
11395
 
11374
11396
  /**
@@ -11429,7 +11451,7 @@ export interface CreateSampleSnapshotTemplateResponse {
11429
11451
  /**
11430
11452
  * 采样截图模板唯一标识。
11431
11453
  */
11432
- Definition: number
11454
+ Definition?: number
11433
11455
  /**
11434
11456
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11435
11457
  */
@@ -11463,77 +11485,77 @@ export interface MediaBasicInfo {
11463
11485
  /**
11464
11486
  * 媒体文件名称。
11465
11487
  */
11466
- Name: string
11488
+ Name?: string
11467
11489
  /**
11468
11490
  * 媒体文件描述。
11469
11491
  */
11470
- Description: string
11492
+ Description?: string
11471
11493
  /**
11472
11494
  * 媒体文件的创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
11473
11495
  */
11474
- CreateTime: string
11496
+ CreateTime?: string
11475
11497
  /**
11476
11498
  * 媒体文件的最近更新时间(如修改视频属性、发起视频处理等会触发更新媒体文件信息的操作),使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
11477
11499
  */
11478
- UpdateTime: string
11500
+ UpdateTime?: string
11479
11501
  /**
11480
11502
  * 媒体文件的过期时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。过期后该媒体文件及其相关资源(转码结果、雪碧图等)将被永久删除。“9999-12-31T23:59:59Z”表示永不过期。
11481
11503
  */
11482
- ExpireTime: string
11504
+ ExpireTime?: string
11483
11505
  /**
11484
11506
  * 媒体文件的分类 ID。
11485
11507
  */
11486
- ClassId: number
11508
+ ClassId?: number
11487
11509
  /**
11488
11510
  * 媒体文件的分类名称。
11489
11511
  */
11490
- ClassName: string
11512
+ ClassName?: string
11491
11513
  /**
11492
11514
  * 媒体文件的分类路径,分类间以“-”分隔,如“新的一级分类 - 新的二级分类”。
11493
11515
  */
11494
- ClassPath: string
11516
+ ClassPath?: string
11495
11517
  /**
11496
11518
  * 媒体文件的封面图片地址。
11497
11519
  */
11498
- CoverUrl: string
11520
+ CoverUrl?: string
11499
11521
  /**
11500
11522
  * 媒体文件的封装格式,例如 mp4、flv 等。
11501
11523
  */
11502
- Type: string
11524
+ Type?: string
11503
11525
  /**
11504
11526
  * 原始媒体文件的 URL 地址。
11505
11527
  */
11506
- MediaUrl: string
11528
+ MediaUrl?: string
11507
11529
  /**
11508
11530
  * 该媒体文件的来源信息。
11509
11531
  注意:此字段可能返回 null,表示取不到有效值。
11510
11532
  */
11511
- SourceInfo: MediaSourceData
11533
+ SourceInfo?: MediaSourceData
11512
11534
  /**
11513
11535
  * 媒体文件存储地区,如 ap-chongqing,参见[地域列表](https://cloud.tencent.com/document/product/266/9760#.E5.B7.B2.E6.94.AF.E6.8C.81.E5.9C.B0.E5.9F.9F.E5.88.97.E8.A1.A8)。
11514
11536
  */
11515
- StorageRegion: string
11537
+ StorageRegion?: string
11516
11538
  /**
11517
11539
  * 媒体文件的标签信息。
11518
11540
  */
11519
- TagSet: Array<string>
11541
+ TagSet?: Array<string>
11520
11542
  /**
11521
11543
  * 直播录制文件的唯一标识。
11522
11544
  */
11523
- Vid: string
11545
+ Vid?: string
11524
11546
  /**
11525
11547
  * 文件类型:
11526
11548
  <li>Video: 视频文件</li>
11527
11549
  <li>Audio: 音频文件</li>
11528
11550
  <li>Image: 图片文件</li>
11529
11551
  */
11530
- Category: string
11552
+ Category?: string
11531
11553
  /**
11532
11554
  * 文件状态:Normal:正常,Forbidden:封禁。
11533
11555
 
11534
11556
  *注意:此字段暂不支持。
11535
11557
  */
11536
- Status: string
11558
+ Status?: string
11537
11559
  /**
11538
11560
  * 媒体文件的存储类别:
11539
11561
  <li> STANDARD:标准存储。</li>
@@ -11541,7 +11563,7 @@ export interface MediaBasicInfo {
11541
11563
  <li> ARCHIVE:归档存储。</li>
11542
11564
  <li> DEEP_ARCHIVE:深度归档存储。</li>
11543
11565
  */
11544
- StorageClass: string
11566
+ StorageClass?: string
11545
11567
  }
11546
11568
 
11547
11569
  /**
@@ -11551,7 +11573,7 @@ export interface AiReviewPoliticalAsrTaskInput {
11551
11573
  /**
11552
11574
  * 鉴别涉及令人不适宜信息的模板 ID。
11553
11575
  */
11554
- Definition: number
11576
+ Definition?: number
11555
11577
  }
11556
11578
 
11557
11579
  /**
@@ -11817,70 +11839,70 @@ export interface TranscodeTemplate {
11817
11839
  /**
11818
11840
  * 转码模板唯一标识。
11819
11841
  */
11820
- Definition: string
11842
+ Definition?: string
11821
11843
  /**
11822
11844
  * 封装格式,取值:mp4、flv、hls、mp3、flac、ogg。
11823
11845
  */
11824
- Container: string
11846
+ Container?: string
11825
11847
  /**
11826
11848
  * 转码模板名称。
11827
11849
  */
11828
- Name: string
11850
+ Name?: string
11829
11851
  /**
11830
11852
  * 模板描述信息。
11831
11853
  */
11832
- Comment: string
11854
+ Comment?: string
11833
11855
  /**
11834
11856
  * 模板类型,取值:
11835
11857
  <li>Preset:系统预置模板;</li>
11836
11858
  <li>Custom:用户自定义模板。</li>
11837
11859
  */
11838
- Type: string
11860
+ Type?: string
11839
11861
  /**
11840
11862
  * 是否去除视频数据,取值:
11841
11863
  <li>0:保留;</li>
11842
11864
  <li>1:去除。</li>
11843
11865
  */
11844
- RemoveVideo: number
11866
+ RemoveVideo?: number
11845
11867
  /**
11846
11868
  * 是否去除音频数据,取值:
11847
11869
  <li>0:保留;</li>
11848
11870
  <li>1:去除。</li>
11849
11871
  */
11850
- RemoveAudio: number
11872
+ RemoveAudio?: number
11851
11873
  /**
11852
11874
  * 视频流配置参数,仅当 RemoveVideo 为 0,该字段有效。
11853
11875
  注意:此字段可能返回 null,表示取不到有效值。
11854
11876
  */
11855
- VideoTemplate: VideoTemplateInfo
11877
+ VideoTemplate?: VideoTemplateInfo
11856
11878
  /**
11857
11879
  * 音频流配置参数,仅当 RemoveAudio 为 0,该字段有效 。
11858
11880
  注意:此字段可能返回 null,表示取不到有效值。
11859
11881
  */
11860
- AudioTemplate: AudioTemplateInfo
11882
+ AudioTemplate?: AudioTemplateInfo
11861
11883
  /**
11862
11884
  * 极速高清转码参数。
11863
11885
  注意:此字段可能返回 null,表示取不到有效值。
11864
11886
  */
11865
- TEHDConfig: TEHDConfig
11887
+ TEHDConfig?: TEHDConfig
11866
11888
  /**
11867
11889
  * 封装格式过滤条件,可选值:
11868
11890
  <li>Video:视频格式,可以同时包含视频流和音频流的封装格式;</li>
11869
11891
  <li>PureAudio:纯音频格式,只能包含音频流的封装格式板。</li>
11870
11892
  */
11871
- ContainerType: string
11893
+ ContainerType?: string
11872
11894
  /**
11873
11895
  * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
11874
11896
  */
11875
- CreateTime: string
11897
+ CreateTime?: string
11876
11898
  /**
11877
11899
  * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
11878
11900
  */
11879
- UpdateTime: string
11901
+ UpdateTime?: string
11880
11902
  /**
11881
11903
  * 切片类型,仅当 Container 为 hls 时有效。
11882
11904
  */
11883
- SegmentType: string
11905
+ SegmentType?: string
11884
11906
  }
11885
11907
 
11886
11908
  /**
@@ -11947,31 +11969,31 @@ export interface AiReviewTaskPoliticalAsrResult {
11947
11969
  /**
11948
11970
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
11949
11971
  */
11950
- Status: string
11972
+ Status?: string
11951
11973
  /**
11952
11974
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
11953
11975
  */
11954
- ErrCodeExt: string
11976
+ ErrCodeExt?: string
11955
11977
  /**
11956
11978
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
11957
11979
  */
11958
- ErrCode: number
11980
+ ErrCode?: number
11959
11981
  /**
11960
11982
  * 错误信息。
11961
11983
  */
11962
- Message: string
11984
+ Message?: string
11963
11985
  /**
11964
11986
  * 音视频审核 Asr 文字涉及令人不适宜信息的任务输入。
11965
11987
  */
11966
- Input: AiReviewPoliticalAsrTaskInput
11988
+ Input?: AiReviewPoliticalAsrTaskInput
11967
11989
  /**
11968
11990
  * 音视频审核 Asr 文字涉及令人不适宜信息的任务输出。
11969
11991
  */
11970
- Output: AiReviewPoliticalAsrTaskOutput
11992
+ Output?: AiReviewPoliticalAsrTaskOutput
11971
11993
  /**
11972
11994
  * 音视频审核 Asr 文字涉及令人不适宜信息的任务进度,取值范围 [0-100] 。
11973
11995
  */
11974
- Progress: number
11996
+ Progress?: number
11975
11997
  }
11976
11998
 
11977
11999
  /**
@@ -11995,19 +12017,19 @@ export interface TrtcRecordInfo {
11995
12017
  /**
11996
12018
  * TRTC 应用 ID。
11997
12019
  */
11998
- SdkAppId: number
12020
+ SdkAppId?: number
11999
12021
  /**
12000
12022
  * TRTC 房间 ID。
12001
12023
  */
12002
- RoomId: string
12024
+ RoomId?: string
12003
12025
  /**
12004
12026
  * 录制任务 ID。
12005
12027
  */
12006
- TaskId: string
12028
+ TaskId?: string
12007
12029
  /**
12008
12030
  * 参与录制的用户 ID 列表。
12009
12031
  */
12010
- UserIds: Array<string>
12032
+ UserIds?: Array<string>
12011
12033
  }
12012
12034
 
12013
12035
  /**
@@ -12053,7 +12075,7 @@ export interface AiReviewProhibitedAsrTaskInput {
12053
12075
  /**
12054
12076
  * 鉴违禁模板 ID。
12055
12077
  */
12056
- Definition: number
12078
+ Definition?: number
12057
12079
  }
12058
12080
 
12059
12081
  /**
@@ -12063,39 +12085,53 @@ export interface MediaContentReviewSegmentItem {
12063
12085
  /**
12064
12086
  * 嫌疑片段起始的偏移时间,单位:秒。
12065
12087
  */
12066
- StartTimeOffset: number
12088
+ StartTimeOffset?: number
12067
12089
  /**
12068
12090
  * 嫌疑片段结束的偏移时间,单位:秒。
12069
12091
  */
12070
- EndTimeOffset: number
12092
+ EndTimeOffset?: number
12071
12093
  /**
12072
12094
  * 嫌疑片段涉及令人反感的信息的分数。
12073
12095
  */
12074
- Confidence: number
12096
+ Confidence?: number
12075
12097
  /**
12076
12098
  * 嫌疑片段涉及令人反感的信息的结果标签。
12077
12099
  */
12078
- Label: string
12100
+ Label?: string
12079
12101
  /**
12080
12102
  * 嫌疑片段鉴别涉及令人反感的信息的结果建议,取值范围:
12081
12103
  <li>pass。</li>
12082
12104
  <li>review。</li>
12083
12105
  <li>block。</li>
12084
12106
  */
12085
- Suggestion: string
12107
+ Suggestion?: string
12086
12108
  /**
12087
12109
  * 嫌疑图片 URL (图片不会永久存储,到达
12088
12110
  PicUrlExpireTime 时间点后图片将被删除)。
12089
12111
  */
12090
- Url: string
12112
+ Url?: string
12091
12113
  /**
12092
12114
  * 该字段已废弃,请使用 PicUrlExpireTime。
12093
12115
  */
12094
- PicUrlExpireTimeStamp: number
12116
+ PicUrlExpireTimeStamp?: number
12095
12117
  /**
12096
12118
  * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
12097
12119
  */
12098
- PicUrlExpireTime: string
12120
+ PicUrlExpireTime?: string
12121
+ }
12122
+
12123
+ /**
12124
+ * ParseStreamingManifest返回参数结构体
12125
+ */
12126
+ export interface ParseStreamingManifestResponse {
12127
+ /**
12128
+ * 分片文件列表。
12129
+ */
12130
+ MediaSegmentSet?: Array<string>
12131
+ /**
12132
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12133
+ */
12134
+ RequestId?: string
12099
12135
  }
12100
12136
 
12101
12137
  /**
@@ -12159,32 +12195,32 @@ export interface AiReviewTaskPornResult {
12159
12195
  /**
12160
12196
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
12161
12197
  */
12162
- Status: string
12198
+ Status?: string
12163
12199
  /**
12164
12200
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
12165
12201
  */
12166
- ErrCodeExt: string
12202
+ ErrCodeExt?: string
12167
12203
  /**
12168
12204
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
12169
12205
  */
12170
- ErrCode: number
12206
+ ErrCode?: number
12171
12207
  /**
12172
12208
  * 错误信息。
12173
12209
  */
12174
- Message: string
12210
+ Message?: string
12175
12211
  /**
12176
12212
  * 音视频审核涉及令人反感的信息的任务输入。
12177
12213
  */
12178
- Input: AiReviewPornTaskInput
12214
+ Input?: AiReviewPornTaskInput
12179
12215
  /**
12180
12216
  * 音视频审核涉及令人反感的信息的任务输出。
12181
12217
  注意:此字段可能返回 null,表示取不到有效值。
12182
12218
  */
12183
- Output: AiReviewPornTaskOutput
12219
+ Output?: AiReviewPornTaskOutput
12184
12220
  /**
12185
12221
  * 音视频审核涉及令人反感的信息的任务进度,取值范围 [0-100] 。
12186
12222
  */
12187
- Progress: number
12223
+ Progress?: number
12188
12224
  }
12189
12225
 
12190
12226
  /**
@@ -12242,27 +12278,27 @@ export interface AiReviewProhibitedAsrTaskOutput {
12242
12278
  /**
12243
12279
  * Asr 文字涉违禁评分,分值为0到100。
12244
12280
  */
12245
- Confidence: number
12281
+ Confidence?: number
12246
12282
  /**
12247
12283
  * Asr 文字涉违禁结果建议,取值范围:
12248
12284
  <li>pass。</li>
12249
12285
  <li>review。</li>
12250
12286
  <li>block。</li>
12251
12287
  */
12252
- Suggestion: string
12288
+ Suggestion?: string
12253
12289
  /**
12254
12290
  * Asr 文字有涉违禁嫌疑的视频片段列表。
12255
12291
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
12256
12292
  */
12257
- SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>
12293
+ SegmentSet?: Array<MediaContentReviewAsrTextSegmentItem>
12258
12294
  /**
12259
12295
  * Asr 文字有涉违禁嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
12260
12296
  */
12261
- SegmentSetFileUrl: string
12297
+ SegmentSetFileUrl?: string
12262
12298
  /**
12263
12299
  * Asr 文字有涉违禁嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
12264
12300
  */
12265
- SegmentSetFileUrlExpireTime: string
12301
+ SegmentSetFileUrlExpireTime?: string
12266
12302
  }
12267
12303
 
12268
12304
  /**
@@ -12348,32 +12384,32 @@ export interface AiAnalysisTaskClassificationResult {
12348
12384
  /**
12349
12385
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
12350
12386
  */
12351
- Status: string
12387
+ Status?: string
12352
12388
  /**
12353
12389
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
12354
12390
  */
12355
- ErrCodeExt: string
12391
+ ErrCodeExt?: string
12356
12392
  /**
12357
12393
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
12358
12394
  */
12359
- ErrCode: number
12395
+ ErrCode?: number
12360
12396
  /**
12361
12397
  * 错误信息。
12362
12398
  */
12363
- Message: string
12399
+ Message?: string
12364
12400
  /**
12365
12401
  * 智能分类任务输入。
12366
12402
  */
12367
- Input: AiAnalysisTaskClassificationInput
12403
+ Input?: AiAnalysisTaskClassificationInput
12368
12404
  /**
12369
12405
  * 智能分类任务输出。
12370
12406
  注意:此字段可能返回 null,表示取不到有效值。
12371
12407
  */
12372
- Output: AiAnalysisTaskClassificationOutput
12408
+ Output?: AiAnalysisTaskClassificationOutput
12373
12409
  /**
12374
12410
  * 智能分类任务进度,取值范围 [0-100] 。
12375
12411
  */
12376
- Progress: number
12412
+ Progress?: number
12377
12413
  /**
12378
12414
  * 智能分类任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
12379
12415
  */
@@ -12813,7 +12849,7 @@ export interface DescribeImageReviewUsageDataResponse {
12813
12849
  /**
12814
12850
  * 图片审核次数统计数据,展示查询时间范围内的图片审核次数的概览数据。
12815
12851
  */
12816
- ImageReviewUsageDataSet: Array<ImageReviewUsageDataItem>
12852
+ ImageReviewUsageDataSet?: Array<ImageReviewUsageDataItem>
12817
12853
  /**
12818
12854
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12819
12855
  */
@@ -12839,7 +12875,7 @@ export interface StatDataItem {
12839
12875
  <li>表示小时级别数据时,2019-08-22T00:00:00+08:00表示2019-08-22日0点到1点的统计数据。</li>
12840
12876
  <li>表示天级别数据时,2019-08-22T00:00:00+08:00表示2019-08-22日的统计数据。</li>
12841
12877
  */
12842
- Time: string
12878
+ Time?: string
12843
12879
  /**
12844
12880
  * 数据大小。
12845
12881
  <li>存储空间的数据,单位是字节。</li>
@@ -12849,7 +12885,7 @@ export interface StatDataItem {
12849
12885
  <li>直播剪辑数据,单位是秒。</li>
12850
12886
  <li>轮播数据,单位是秒。</li>
12851
12887
  */
12852
- Value: number
12888
+ Value?: number
12853
12889
  }
12854
12890
 
12855
12891
  /**
@@ -12871,17 +12907,17 @@ export interface AccelerateAreaInfo {
12871
12907
  <li>Chinese Mainland:中国境内(不包含港澳台)。</li>
12872
12908
  <li>Outside Chinese Mainland:中国境外。</li>
12873
12909
  */
12874
- Area: string
12910
+ Area?: string
12875
12911
  /**
12876
12912
  * 腾讯禁用原因,可选值:
12877
12913
  <li>ForLegalReasons:因法律原因导致关闭加速;</li>
12878
12914
  <li>ForOverdueBills:因欠费停服导致关闭加速。</li>
12879
12915
  */
12880
- TencentDisableReason: string
12916
+ TencentDisableReason?: string
12881
12917
  /**
12882
12918
  * 加速域名对应的 CNAME 域名。
12883
12919
  */
12884
- TencentEdgeDomain: string
12920
+ TencentEdgeDomain?: string
12885
12921
  }
12886
12922
 
12887
12923
  /**
@@ -12926,7 +12962,7 @@ export interface DescribePrepaidProductsResponse {
12926
12962
  /**
12927
12963
  * 购买的预付费商品实例列表。
12928
12964
  */
12929
- ProductInstanceSet: Array<ProductInstance>
12965
+ ProductInstanceSet?: Array<ProductInstance>
12930
12966
  /**
12931
12967
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12932
12968
  */
@@ -12974,7 +13010,7 @@ export interface CreateAIAnalysisTemplateResponse {
12974
13010
  /**
12975
13011
  * 音视频内容分析模板唯一标识。
12976
13012
  */
12977
- Definition: number
13013
+ Definition?: number
12978
13014
  /**
12979
13015
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12980
13016
  */
@@ -13181,7 +13217,7 @@ export interface ExtractTraceWatermarkTaskInput {
13181
13217
  /**
13182
13218
  * 需要提取水印的媒体 URL。
13183
13219
  */
13184
- Url: string
13220
+ Url?: string
13185
13221
  /**
13186
13222
  * 媒体文件 ID。Url 对应的原始媒体文件 ID。
13187
13223
  */
@@ -13195,27 +13231,27 @@ export interface AiReviewPoliticalAsrTaskOutput {
13195
13231
  /**
13196
13232
  * Asr 文字涉及令人不适宜的信息、违规评分,分值为0到100。
13197
13233
  */
13198
- Confidence: number
13234
+ Confidence?: number
13199
13235
  /**
13200
13236
  * Asr 文字涉及令人不适宜的信息、违规结果建议,取值范围:
13201
13237
  <li>pass。</li>
13202
13238
  <li>review。</li>
13203
13239
  <li>block。</li>
13204
13240
  */
13205
- Suggestion: string
13241
+ Suggestion?: string
13206
13242
  /**
13207
13243
  * Asr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表。
13208
13244
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
13209
13245
  */
13210
- SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>
13246
+ SegmentSet?: Array<MediaContentReviewAsrTextSegmentItem>
13211
13247
  /**
13212
13248
  * Asr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
13213
13249
  */
13214
- SegmentSetFileUrl: string
13250
+ SegmentSetFileUrl?: string
13215
13251
  /**
13216
13252
  * Asr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
13217
13253
  */
13218
- SegmentSetFileUrlExpireTime: string
13254
+ SegmentSetFileUrlExpireTime?: string
13219
13255
  }
13220
13256
 
13221
13257
  /**
@@ -13486,14 +13522,14 @@ export interface TerrorismImageResult {
13486
13522
  /**
13487
13523
  * 鉴别涉及令人不安全的信息的评分,分值为0到100。
13488
13524
  */
13489
- Confidence: number
13525
+ Confidence?: number
13490
13526
  /**
13491
13527
  * 鉴别涉及令人不安全的信息的结果建议,取值范围:
13492
13528
  <li>pass;</li>
13493
13529
  <li>review;</li>
13494
13530
  <li>block。</li>
13495
13531
  */
13496
- Suggestion: string
13532
+ Suggestion?: string
13497
13533
  /**
13498
13534
  * 鉴别涉及令人不安全的信息的结果标签,取值范围:
13499
13535
  <li>guns:武器枪支;</li>
@@ -13504,7 +13540,7 @@ export interface TerrorismImageResult {
13504
13540
  <li>explosion:爆炸火灾;</li>
13505
13541
  <li>scenario:暴恐画面。</li>
13506
13542
  */
13507
- Label: string
13543
+ Label?: string
13508
13544
  }
13509
13545
 
13510
13546
  /**
@@ -13529,7 +13565,7 @@ export interface DescribeDrmKeyProviderInfoResponse {
13529
13565
  * 华曦达(SDMC)相关的 DRM 密钥提供商信息。
13530
13566
  注意:此字段可能返回 null,表示取不到有效值。
13531
13567
  */
13532
- SDMCInfo: SDMCDrmKeyProviderInfo
13568
+ SDMCInfo?: SDMCDrmKeyProviderInfo
13533
13569
  /**
13534
13570
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13535
13571
  */
@@ -13639,32 +13675,32 @@ export interface AiAnalysisTaskFrameTagResult {
13639
13675
  /**
13640
13676
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
13641
13677
  */
13642
- Status: string
13678
+ Status?: string
13643
13679
  /**
13644
13680
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
13645
13681
  */
13646
- ErrCodeExt: string
13682
+ ErrCodeExt?: string
13647
13683
  /**
13648
13684
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
13649
13685
  */
13650
- ErrCode: number
13686
+ ErrCode?: number
13651
13687
  /**
13652
13688
  * 错误信息。
13653
13689
  */
13654
- Message: string
13690
+ Message?: string
13655
13691
  /**
13656
13692
  * 智能按帧标签任务输入。
13657
13693
  */
13658
- Input: AiAnalysisTaskFrameTagInput
13694
+ Input?: AiAnalysisTaskFrameTagInput
13659
13695
  /**
13660
13696
  * 智能按帧标签任务输出。
13661
13697
  注意:此字段可能返回 null,表示取不到有效值。
13662
13698
  */
13663
- Output: AiAnalysisTaskFrameTagOutput
13699
+ Output?: AiAnalysisTaskFrameTagOutput
13664
13700
  /**
13665
13701
  * 智能按帧标签任务进度,取值范围 [0-100] 。
13666
13702
  */
13667
- Progress: number
13703
+ Progress?: number
13668
13704
  /**
13669
13705
  * 智能按帧标签任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
13670
13706
  */
@@ -13682,14 +13718,14 @@ export interface AiReviewPornTaskOutput {
13682
13718
  /**
13683
13719
  * 视频鉴别涉及令人反感的信息的评分,分值为0到100。
13684
13720
  */
13685
- Confidence: number
13721
+ Confidence?: number
13686
13722
  /**
13687
13723
  * 鉴别涉及令人反感的信息的结果建议,取值范围:
13688
13724
  <li>pass。</li>
13689
13725
  <li>review。</li>
13690
13726
  <li>block。</li>
13691
13727
  */
13692
- Suggestion: string
13728
+ Suggestion?: string
13693
13729
  /**
13694
13730
  * 视频鉴别涉及令人反感的信息的结果标签,取值范围:
13695
13731
  <li>porn:色情。</li>
@@ -13697,20 +13733,20 @@ export interface AiReviewPornTaskOutput {
13697
13733
  <li>vulgar:低俗。</li>
13698
13734
  <li>intimacy:亲密行为。</li>
13699
13735
  */
13700
- Label: string
13736
+ Label?: string
13701
13737
  /**
13702
13738
  * 有涉及令人反感的信息的嫌疑的视频片段列表。
13703
13739
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
13704
13740
  */
13705
- SegmentSet: Array<MediaContentReviewSegmentItem>
13741
+ SegmentSet?: Array<MediaContentReviewSegmentItem>
13706
13742
  /**
13707
13743
  * 涉及令人反感的信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
13708
13744
  */
13709
- SegmentSetFileUrl: string
13745
+ SegmentSetFileUrl?: string
13710
13746
  /**
13711
13747
  * 涉及令人反感的信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
13712
13748
  */
13713
- SegmentSetFileUrlExpireTime: string
13749
+ SegmentSetFileUrlExpireTime?: string
13714
13750
  }
13715
13751
 
13716
13752
  /**
@@ -13742,32 +13778,32 @@ export interface AiRecognitionTaskAsrFullTextResult {
13742
13778
  /**
13743
13779
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
13744
13780
  */
13745
- Status: string
13781
+ Status?: string
13746
13782
  /**
13747
13783
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
13748
13784
  */
13749
- ErrCodeExt: string
13785
+ ErrCodeExt?: string
13750
13786
  /**
13751
13787
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
13752
13788
  */
13753
- ErrCode: number
13789
+ ErrCode?: number
13754
13790
  /**
13755
13791
  * 错误信息。
13756
13792
  */
13757
- Message: string
13793
+ Message?: string
13758
13794
  /**
13759
13795
  * 语音全文识别任务输入信息。
13760
13796
  */
13761
- Input: AiRecognitionTaskAsrFullTextResultInput
13797
+ Input?: AiRecognitionTaskAsrFullTextResultInput
13762
13798
  /**
13763
13799
  * 语音全文识别任务输出信息。
13764
13800
  注意:此字段可能返回 null,表示取不到有效值。
13765
13801
  */
13766
- Output: AiRecognitionTaskAsrFullTextResultOutput
13802
+ Output?: AiRecognitionTaskAsrFullTextResultOutput
13767
13803
  /**
13768
13804
  * 语音全文识别任务进度,取值范围 [0-100] 。
13769
13805
  */
13770
- Progress: number
13806
+ Progress?: number
13771
13807
  /**
13772
13808
  * 语音全文识别任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
13773
13809
  */
@@ -13797,19 +13833,19 @@ export interface PlayStatInfo {
13797
13833
  <li>表示小时级别数据时,2019-08-22T00:00:00+08:00表示2019-08-22日0点到1点的统计数据。</li>
13798
13834
  <li>表示天级别数据时,2019-08-22T00:00:00+08:00表示2019-08-22日的统计数据。</li>
13799
13835
  */
13800
- Time: string
13836
+ Time?: string
13801
13837
  /**
13802
13838
  * 媒体文件ID。
13803
13839
  */
13804
- FileId: string
13840
+ FileId?: string
13805
13841
  /**
13806
13842
  * 播放次数。
13807
13843
  */
13808
- PlayTimes: number
13844
+ PlayTimes?: number
13809
13845
  /**
13810
13846
  * 播放流量,单位:字节。
13811
13847
  */
13812
- Traffic: number
13848
+ Traffic?: number
13813
13849
  }
13814
13850
 
13815
13851
  /**
@@ -14544,6 +14580,62 @@ export interface InspectMediaQualityRequest {
14544
14580
  ExtInfo?: string
14545
14581
  }
14546
14582
 
14583
+ /**
14584
+ * 转场操作
14585
+ */
14586
+ export interface TransitionOperation {
14587
+ /**
14588
+ * 转场类型,取值有:
14589
+ <ul>
14590
+ <li>图像的转场操作,用于两个视频片段图像间的转场处理:
14591
+ <ul>
14592
+ <li>ImageFadeInFadeOut:图像淡入淡出。 </li>
14593
+ <li>BowTieHorizontal:水平蝴蝶结。 </li>
14594
+ <li>BowTieVertical:垂直蝴蝶结。 </li>
14595
+ <li>ButterflyWaveScrawler:晃动。 </li>
14596
+ <li>Cannabisleaf:枫叶。 </li>
14597
+ <li>Circle:弧形收放。 </li>
14598
+ <li>CircleCrop:圆环聚拢。 </li>
14599
+ <li>Circleopen:椭圆聚拢。 </li>
14600
+ <li>Crosswarp:横向翘曲。 </li>
14601
+ <li>Cube:立方体。 </li>
14602
+ <li>DoomScreenTransition:幕布。 </li>
14603
+ <li>Doorway:门廊。 </li>
14604
+ <li>Dreamy:波浪。 </li>
14605
+ <li>DreamyZoom:水平聚拢。 </li>
14606
+ <li>FilmBurn:火烧云。 </li>
14607
+ <li>GlitchMemories:抖动。 </li>
14608
+ <li>Heart:心形。 </li>
14609
+ <li>InvertedPageCurl:翻页。 </li>
14610
+ <li>Luma:腐蚀。 </li>
14611
+ <li>Mosaic:九宫格。 </li>
14612
+ <li>Pinwheel:风车。 </li>
14613
+ <li>PolarFunction:椭圆扩散。 </li>
14614
+ <li>PolkaDotsCurtain:弧形扩散。 </li>
14615
+ <li>Radial:雷达扫描 </li>
14616
+ <li>RotateScaleFade:上下收放。 </li>
14617
+ <li>Squeeze:上下聚拢。 </li>
14618
+ <li>Swap:放大切换。 </li>
14619
+ <li>Swirl:螺旋。 </li>
14620
+ <li>UndulatingBurnOutSwirl:水流蔓延。 </li>
14621
+ <li>Windowblinds:百叶窗。 </li>
14622
+ <li>WipeDown:向下收起。 </li>
14623
+ <li>WipeLeft:向左收起。 </li>
14624
+ <li>WipeRight:向右收起。 </li>
14625
+ <li>WipeUp:向上收起。 </li>
14626
+ <li>ZoomInCircles:水波纹。 </li>
14627
+ </ul>
14628
+ </li>
14629
+ <li>音频的转场操作,用于两个音频片段间的转场处理:
14630
+ <ul>
14631
+ <li>AudioFadeInFadeOut:声音淡入淡出。 </li>
14632
+ </ul>
14633
+ </li>
14634
+ </ul>
14635
+ */
14636
+ Type: string
14637
+ }
14638
+
14547
14639
  /**
14548
14640
  * 智能按帧标签任务输入类型
14549
14641
  */
@@ -15051,7 +15143,7 @@ export interface ModifyEnhanceMediaTemplateRequest {
15051
15143
  */
15052
15144
  export interface RebuildMediaResponse {
15053
15145
  /**
15054
- * 视频重生的任务 ID,可以通过该 ID 查询视频重生任务的状态。
15146
+ * 音画质重生的任务 ID,可以通过该 ID 查询音画质重生任务的状态。
15055
15147
  */
15056
15148
  TaskId?: string
15057
15149
  /**
@@ -15122,17 +15214,17 @@ export interface ReduceMediaBitrateMediaProcessTaskResult {
15122
15214
  <li>Transcode:转码</li>
15123
15215
  <li>AdaptiveDynamicStreaming:自适应码流</li>
15124
15216
  */
15125
- Type: string
15217
+ Type?: string
15126
15218
  /**
15127
15219
  * 降码率任务中视频转码任务的查询结果,当任务类型为 Transcode 时有效。
15128
15220
  注意:此字段可能返回 null,表示取不到有效值。
15129
15221
  */
15130
- TranscodeTask: ReduceMediaBitrateTranscodeResult
15222
+ TranscodeTask?: ReduceMediaBitrateTranscodeResult
15131
15223
  /**
15132
15224
  * 降码率任务中对视频转自适应码流任务的查询结果,当任务类型为 AdaptiveDynamicStreaming 时有效。
15133
15225
  注意:此字段可能返回 null,表示取不到有效值。
15134
15226
  */
15135
- AdaptiveDynamicStreamingTask: ReduceMediaBitrateAdaptiveDynamicStreamingResult
15227
+ AdaptiveDynamicStreamingTask?: ReduceMediaBitrateAdaptiveDynamicStreamingResult
15136
15228
  }
15137
15229
 
15138
15230
  /**
@@ -15313,14 +15405,14 @@ export interface AiReviewPoliticalTaskOutput {
15313
15405
  /**
15314
15406
  * 视频涉及令人不适宜信息的评分,分值为0到100。
15315
15407
  */
15316
- Confidence: number
15408
+ Confidence?: number
15317
15409
  /**
15318
15410
  * 涉及令人不适宜信息的结果建议,取值范围:
15319
15411
  <li>pass。</li>
15320
15412
  <li>review。</li>
15321
15413
  <li>block。</li>
15322
15414
  */
15323
- Suggestion: string
15415
+ Suggestion?: string
15324
15416
  /**
15325
15417
  * 视频涉及令人不适宜信息的结果标签。音视频审核模板[画面鉴政任务控制参数](https://cloud.tencent.com/document/api/266/31773#PoliticalImgReviewTemplateInfo)里 LabelSet 参数与此参数取值范围的对应关系:
15326
15418
  violation_photo:
@@ -15328,20 +15420,20 @@ violation_photo:
15328
15420
  其他(即 politician/entertainment/sport/entrepreneur/scholar/celebrity/military):
15329
15421
  <li>politician:相关人物。</li>
15330
15422
  */
15331
- Label: string
15423
+ Label?: string
15332
15424
  /**
15333
15425
  * 有涉及令人不适宜信息嫌疑的视频片段列表。
15334
15426
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
15335
15427
  */
15336
- SegmentSet: Array<MediaContentReviewPoliticalSegmentItem>
15428
+ SegmentSet?: Array<MediaContentReviewPoliticalSegmentItem>
15337
15429
  /**
15338
15430
  * 有涉及令人不适宜的信息嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
15339
15431
  */
15340
- SegmentSetFileUrl: string
15432
+ SegmentSetFileUrl?: string
15341
15433
  /**
15342
15434
  * 有涉及令人不适宜的信息嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
15343
15435
  */
15344
- SegmentSetFileUrlExpireTime: string
15436
+ SegmentSetFileUrlExpireTime?: string
15345
15437
  }
15346
15438
 
15347
15439
  /**
@@ -15351,32 +15443,32 @@ export interface AiReviewTaskPoliticalResult {
15351
15443
  /**
15352
15444
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
15353
15445
  */
15354
- Status: string
15446
+ Status?: string
15355
15447
  /**
15356
15448
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
15357
15449
  */
15358
- ErrCodeExt: string
15450
+ ErrCodeExt?: string
15359
15451
  /**
15360
15452
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
15361
15453
  */
15362
- ErrCode: number
15454
+ ErrCode?: number
15363
15455
  /**
15364
15456
  * 错误信息。
15365
15457
  */
15366
- Message: string
15458
+ Message?: string
15367
15459
  /**
15368
15460
  * 音视频审核涉及令人不适宜信息的任务输入。
15369
15461
  */
15370
- Input: AiReviewPoliticalTaskInput
15462
+ Input?: AiReviewPoliticalTaskInput
15371
15463
  /**
15372
15464
  * 音视频审核涉及令人不适宜信息的任务输出。
15373
15465
  注意:此字段可能返回 null,表示取不到有效值。
15374
15466
  */
15375
- Output: AiReviewPoliticalTaskOutput
15467
+ Output?: AiReviewPoliticalTaskOutput
15376
15468
  /**
15377
15469
  * 音视频审核涉及令人不适宜信息的任务进度,取值范围 [0-100] 。
15378
15470
  */
15379
- Progress: number
15471
+ Progress?: number
15380
15472
  }
15381
15473
 
15382
15474
  /**
@@ -15490,89 +15582,89 @@ export interface ProcedureTask {
15490
15582
  /**
15491
15583
  * 音视频处理任务 ID。
15492
15584
  */
15493
- TaskId: string
15585
+ TaskId?: string
15494
15586
  /**
15495
15587
  * 任务流状态,取值:
15496
15588
  <li>PROCESSING:处理中;</li>
15497
15589
  <li>FINISH:已完成。</li>
15498
15590
  */
15499
- Status: string
15591
+ Status?: string
15500
15592
  /**
15501
15593
  * 已弃用,请使用各个具体任务的 ErrCode。
15502
15594
  */
15503
- ErrCode: number
15595
+ ErrCode?: number
15504
15596
  /**
15505
15597
  * 已弃用,请使用各个具体任务的 Message。
15506
15598
  */
15507
- Message: string
15599
+ Message?: string
15508
15600
  /**
15509
15601
  * 媒体文件 ID
15510
15602
  <li>若流程由 [ProcessMedia](https://cloud.tencent.com/document/product/266/33427) 发起,该字段表示 [MediaInfo](https://cloud.tencent.com/document/product/266/31773#MediaInfo) 的 FileId;</li>
15511
15603
  <li>若流程由 [ProcessMediaByUrl](https://cloud.tencent.com/document/product/266/33426) 发起,该字段表示 [MediaInputInfo](https://cloud.tencent.com/document/product/266/31773#MediaInputInfo) 的 Id。</li>
15512
15604
  */
15513
- FileId: string
15605
+ FileId?: string
15514
15606
  /**
15515
15607
  * 媒体文件名称
15516
15608
  <li>若流程由 [ProcessMedia](https://cloud.tencent.com/document/product/266/33427) 发起,该字段表示 [MediaInfo](https://cloud.tencent.com/document/product/266/31773#MediaInfo) 的 BasicInfo.Name;</li>
15517
15609
  <li>若流程由 [ProcessMediaByUrl](https://cloud.tencent.com/document/product/266/33426) 发起,该字段表示 [MediaInputInfo](https://cloud.tencent.com/document/product/266/31773#MediaInputInfo) 的 Name。</li>
15518
15610
  */
15519
- FileName: string
15611
+ FileName?: string
15520
15612
  /**
15521
15613
  * 媒体文件地址
15522
15614
  <li>若流程由 [ProcessMedia](https://cloud.tencent.com/document/product/266/33427) 发起,该字段表示 [MediaInfo](https://cloud.tencent.com/document/product/266/31773#MediaInfo) 的 BasicInfo.MediaUrl;</li>
15523
15615
  <li>若流程由 [ProcessMediaByUrl](https://cloud.tencent.com/document/product/266/33426) 发起,该字段表示 [MediaInputInfo](https://cloud.tencent.com/document/product/266/31773#MediaInputInfo) 的 Url。</li>
15524
15616
  */
15525
- FileUrl: string
15617
+ FileUrl?: string
15526
15618
  /**
15527
15619
  * 原始音视频的元信息。
15528
15620
  注意:此字段可能返回 null,表示取不到有效值。
15529
15621
  */
15530
- MetaData: MediaMetaData
15622
+ MetaData?: MediaMetaData
15531
15623
  /**
15532
15624
  * 音视频处理任务的执行状态与结果。
15533
15625
  */
15534
- MediaProcessResultSet: Array<MediaProcessTaskResult>
15626
+ MediaProcessResultSet?: Array<MediaProcessTaskResult>
15535
15627
  /**
15536
15628
  * 音视频审核任务的执行状态与结果。
15537
15629
  */
15538
- AiContentReviewResultSet: Array<AiContentReviewResult>
15630
+ AiContentReviewResultSet?: Array<AiContentReviewResult>
15539
15631
  /**
15540
15632
  * 音视频内容分析任务的执行状态与结果。
15541
15633
  */
15542
- AiAnalysisResultSet: Array<AiAnalysisResult>
15634
+ AiAnalysisResultSet?: Array<AiAnalysisResult>
15543
15635
  /**
15544
15636
  * 音视频内容识别任务的执行状态与结果。
15545
15637
  */
15546
- AiRecognitionResultSet: Array<AiRecognitionResult>
15638
+ AiRecognitionResultSet?: Array<AiRecognitionResult>
15547
15639
  /**
15548
15640
  * 任务流的优先级,取值范围为 [-10, 10]。
15549
15641
  */
15550
- TasksPriority: number
15642
+ TasksPriority?: number
15551
15643
  /**
15552
15644
  * 任务流状态变更通知模式。
15553
15645
  <li>Finish:只有当任务流全部执行完毕时,才发起一次事件通知;</li>
15554
15646
  <li>Change:只要任务流中每个子任务的状态发生变化,都进行事件通知;</li>
15555
15647
  <li>None:不接受该任务流回调。</li>
15556
15648
  */
15557
- TasksNotifyMode: string
15649
+ TasksNotifyMode?: string
15558
15650
  /**
15559
15651
  * 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
15560
15652
  */
15561
- SessionContext: string
15653
+ SessionContext?: string
15562
15654
  /**
15563
15655
  * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
15564
15656
  */
15565
- SessionId: string
15657
+ SessionId?: string
15566
15658
  /**
15567
15659
  * 操作者。取值范围:
15568
15660
  <li>System: 表示系统触发。</li>
15569
15661
  */
15570
- Operator: string
15662
+ Operator?: string
15571
15663
  /**
15572
15664
  * 操作类型。取值范围:
15573
15665
  <li>TSC: 表示使用极速高清进行智能降码。</li>
15574
15666
  */
15575
- OperationType: string
15667
+ OperationType?: string
15576
15668
  }
15577
15669
 
15578
15670
  /**
@@ -15617,15 +15709,15 @@ export interface TaskSimpleInfo {
15617
15709
  /**
15618
15710
  * 任务 ID。
15619
15711
  */
15620
- TaskId: string
15712
+ TaskId?: string
15621
15713
  /**
15622
15714
  * 任务状态。取值:WAITING(等待中)、PROCESSING(处理中)、FINISH(已完成)。
15623
15715
  */
15624
- Status: string
15716
+ Status?: string
15625
15717
  /**
15626
15718
  * 视频 ID。
15627
15719
  */
15628
- FileId: string
15720
+ FileId?: string
15629
15721
  /**
15630
15722
  * 任务类型,取值:
15631
15723
  <li>Procedure:视频处理任务;</li>
@@ -15640,27 +15732,27 @@ export interface TaskSimpleInfo {
15640
15732
  <li>Clip:视频剪辑任务;</li>
15641
15733
  <li>ImageSprites:截取雪碧图任务。</li>
15642
15734
  */
15643
- TaskType: string
15735
+ TaskType?: string
15644
15736
  /**
15645
15737
  * 任务创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
15646
15738
  */
15647
- CreateTime: string
15739
+ CreateTime?: string
15648
15740
  /**
15649
15741
  * 任务开始执行时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。若任务尚未开始,该字段为空。
15650
15742
  */
15651
- BeginProcessTime: string
15743
+ BeginProcessTime?: string
15652
15744
  /**
15653
15745
  * 任务结束时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。若任务尚未完成,该字段为空。
15654
15746
  */
15655
- FinishTime: string
15747
+ FinishTime?: string
15656
15748
  /**
15657
15749
  * 用于去重的识别码,如果七天内曾有过相同的识别码的请求。
15658
15750
  */
15659
- SessionId: string
15751
+ SessionId?: string
15660
15752
  /**
15661
15753
  * 来源上下文,用于透传用户请求信息。
15662
15754
  */
15663
- SessionContext: string
15755
+ SessionContext?: string
15664
15756
  }
15665
15757
 
15666
15758
  /**
@@ -15670,39 +15762,39 @@ export interface ReviewAudioVideoTask {
15670
15762
  /**
15671
15763
  * 任务 ID。
15672
15764
  */
15673
- TaskId: string
15765
+ TaskId?: string
15674
15766
  /**
15675
15767
  * 任务状态,取值:
15676
15768
  <li>PROCESSING:处理中;</li>
15677
15769
  <li>FINISH:已完成。</li>
15678
15770
  */
15679
- Status: string
15771
+ Status?: string
15680
15772
  /**
15681
15773
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
15682
15774
  */
15683
- ErrCodeExt: string
15775
+ ErrCodeExt?: string
15684
15776
  /**
15685
15777
  * 错误信息。
15686
15778
  */
15687
- Message: string
15779
+ Message?: string
15688
15780
  /**
15689
15781
  * 音视频审核任务的输入。
15690
15782
  注意:此字段可能返回 null,表示取不到有效值。
15691
15783
  */
15692
- Input: ReviewAudioVideoTaskInput
15784
+ Input?: ReviewAudioVideoTaskInput
15693
15785
  /**
15694
15786
  * 音视频审核任务的输出。
15695
15787
  注意:此字段可能返回 null,表示取不到有效值。
15696
15788
  */
15697
- Output: ReviewAudioVideoTaskOutput
15789
+ Output?: ReviewAudioVideoTaskOutput
15698
15790
  /**
15699
15791
  * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
15700
15792
  */
15701
- SessionId: string
15793
+ SessionId?: string
15702
15794
  /**
15703
15795
  * 来源上下文,用于透传用户请求信息,音视频审核完成回调将返回该字段值,最长 1000 个字符。
15704
15796
  */
15705
- SessionContext: string
15797
+ SessionContext?: string
15706
15798
  }
15707
15799
 
15708
15800
  /**
@@ -16043,7 +16135,7 @@ export interface AiReviewTerrorismTaskInput {
16043
16135
  /**
16044
16136
  * 鉴别涉及令人不安全的信息的模板 ID。
16045
16137
  */
16046
- Definition: number
16138
+ Definition?: number
16047
16139
  }
16048
16140
 
16049
16141
  /**
@@ -16067,15 +16159,15 @@ export interface MediaAudioStreamItem {
16067
16159
  /**
16068
16160
  * 音频流的码率,单位:bps。
16069
16161
  */
16070
- Bitrate: number
16162
+ Bitrate?: number
16071
16163
  /**
16072
16164
  * 音频流的采样率,单位:hz。
16073
16165
  */
16074
- SamplingRate: number
16166
+ SamplingRate?: number
16075
16167
  /**
16076
16168
  * 音频流的编码格式,例如 aac。
16077
16169
  */
16078
- Codec: string
16170
+ Codec?: string
16079
16171
  }
16080
16172
 
16081
16173
  /**
@@ -16131,19 +16223,19 @@ export interface SubAppIdInfo {
16131
16223
  /**
16132
16224
  * 子应用 ID。
16133
16225
  */
16134
- SubAppId: number
16226
+ SubAppId?: number
16135
16227
  /**
16136
16228
  * 子应用名称。
16137
16229
  */
16138
- SubAppIdName: string
16230
+ SubAppIdName?: string
16139
16231
  /**
16140
16232
  * 子应用简介。
16141
16233
  */
16142
- Description: string
16234
+ Description?: string
16143
16235
  /**
16144
16236
  * 子应用创建时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
16145
16237
  */
16146
- CreateTime: string
16238
+ CreateTime?: string
16147
16239
  /**
16148
16240
  * 子应用状态,有效值:
16149
16241
  <li>On:启用;</li>
@@ -16151,11 +16243,11 @@ export interface SubAppIdInfo {
16151
16243
  <li>Destroying:销毁中。</li>
16152
16244
  <li>Destroyed:销毁完成。</li>
16153
16245
  */
16154
- Status: string
16246
+ Status?: string
16155
16247
  /**
16156
16248
  * 子应用名称(该字段已不推荐使用,建议使用新的子应用名称字段 SubAppIdName)。
16157
16249
  */
16158
- Name: string
16250
+ Name?: string
16159
16251
  }
16160
16252
 
16161
16253
  /**
@@ -16251,7 +16343,7 @@ export interface AiReviewProhibitedOcrTaskInput {
16251
16343
  /**
16252
16344
  * 鉴违禁模板 ID。
16253
16345
  */
16254
- Definition: number
16346
+ Definition?: number
16255
16347
  }
16256
16348
 
16257
16349
  /**
@@ -16477,57 +16569,57 @@ export interface AiContentReviewResult {
16477
16569
  <li>Prohibited.Asr:Asr 文字( 音频中的文字)鉴违禁</li>
16478
16570
  <li>Prohibited.Ocr:Ocr 文字鉴违禁</li>
16479
16571
  */
16480
- Type: string
16572
+ Type?: string
16481
16573
  /**
16482
16574
  * 视频音视频审核任务(画面涉及令人反感的信息)的查询结果,当任务类型为 Porn 时有效。
16483
16575
  注意:此字段可能返回 null,表示取不到有效值。
16484
16576
  */
16485
- PornTask: AiReviewTaskPornResult
16577
+ PornTask?: AiReviewTaskPornResult
16486
16578
  /**
16487
16579
  * 视频音视频审核任务(画面涉及令人不安全的信息)的查询结果,当任务类型为 Terrorism 时有效。
16488
16580
  注意:此字段可能返回 null,表示取不到有效值。
16489
16581
  */
16490
- TerrorismTask: AiReviewTaskTerrorismResult
16582
+ TerrorismTask?: AiReviewTaskTerrorismResult
16491
16583
  /**
16492
16584
  * 视频音视频审核任务(画面涉及令人不适宜的信息)的查询结果,当任务类型为 Political 时有效。
16493
16585
  注意:此字段可能返回 null,表示取不到有效值。
16494
16586
  */
16495
- PoliticalTask: AiReviewTaskPoliticalResult
16587
+ PoliticalTask?: AiReviewTaskPoliticalResult
16496
16588
  /**
16497
16589
  * 视频音视频审核任务(Asr 文字涉及令人反感的信息)的查询结果,当任务类型为 Porn.Asr 时有效。
16498
16590
  注意:此字段可能返回 null,表示取不到有效值。
16499
16591
  */
16500
- PornAsrTask: AiReviewTaskPornAsrResult
16592
+ PornAsrTask?: AiReviewTaskPornAsrResult
16501
16593
  /**
16502
16594
  * 视频音视频审核任务(Ocr 文字涉及令人反感的信息)的查询结果,当任务类型为 Porn.Ocr 时有效。
16503
16595
  注意:此字段可能返回 null,表示取不到有效值。
16504
16596
  */
16505
- PornOcrTask: AiReviewTaskPornOcrResult
16597
+ PornOcrTask?: AiReviewTaskPornOcrResult
16506
16598
  /**
16507
16599
  * 视频音视频审核任务(Asr 文字涉及令人不适宜的信息)的查询结果,当任务类型为 Political.Asr 时有效。
16508
16600
  注意:此字段可能返回 null,表示取不到有效值。
16509
16601
  */
16510
- PoliticalAsrTask: AiReviewTaskPoliticalAsrResult
16602
+ PoliticalAsrTask?: AiReviewTaskPoliticalAsrResult
16511
16603
  /**
16512
16604
  * 视频音视频审核任务(Ocr 文字涉及令人不适宜的信息)的查询结果,当任务类型为 Political.Ocr 时有效。
16513
16605
  注意:此字段可能返回 null,表示取不到有效值。
16514
16606
  */
16515
- PoliticalOcrTask: AiReviewTaskPoliticalOcrResult
16607
+ PoliticalOcrTask?: AiReviewTaskPoliticalOcrResult
16516
16608
  /**
16517
16609
  * 视频音视频审核任务( Ocr 文字涉及令人不安全的信息)的查询结果,当任务类型为 Terrorism.Ocr 时有效。
16518
16610
  注意:此字段可能返回 null,表示取不到有效值。
16519
16611
  */
16520
- TerrorismOcrTask: AiReviewTaskTerrorismOcrResult
16612
+ TerrorismOcrTask?: AiReviewTaskTerrorismOcrResult
16521
16613
  /**
16522
16614
  * 视频音视频审核 Ocr 文字鉴违禁任务的查询结果,当任务类型为 Prohibited.Ocr 时有效。
16523
16615
  注意:此字段可能返回 null,表示取不到有效值。
16524
16616
  */
16525
- ProhibitedOcrTask: AiReviewTaskProhibitedOcrResult
16617
+ ProhibitedOcrTask?: AiReviewTaskProhibitedOcrResult
16526
16618
  /**
16527
16619
  * 视频音视频审核 Asr 文字鉴违禁任务的查询结果,当任务类型为 Prohibited.Asr 时有效。
16528
16620
  注意:此字段可能返回 null,表示取不到有效值。
16529
16621
  */
16530
- ProhibitedAsrTask: AiReviewTaskProhibitedAsrResult
16622
+ ProhibitedAsrTask?: AiReviewTaskProhibitedAsrResult
16531
16623
  }
16532
16624
 
16533
16625
  /**
@@ -16570,27 +16662,27 @@ export interface ApplyUploadResponse {
16570
16662
  /**
16571
16663
  * 存储桶,用于上传接口 URL 的 bucket_name。
16572
16664
  */
16573
- StorageBucket: string
16665
+ StorageBucket?: string
16574
16666
  /**
16575
16667
  * 存储园区,用于上传接口 Host 的 Region。
16576
16668
  */
16577
- StorageRegion: string
16669
+ StorageRegion?: string
16578
16670
  /**
16579
16671
  * 点播会话,用于确认上传接口的参数 VodSessionKey。
16580
16672
  */
16581
- VodSessionKey: string
16673
+ VodSessionKey?: string
16582
16674
  /**
16583
16675
  * 媒体存储路径,用于上传接口存储媒体的对象键(Key)。
16584
16676
  */
16585
- MediaStoragePath: string
16677
+ MediaStoragePath?: string
16586
16678
  /**
16587
16679
  * 封面存储路径,用于上传接口存储封面的对象键(Key)。
16588
16680
  */
16589
- CoverStoragePath: string
16681
+ CoverStoragePath?: string
16590
16682
  /**
16591
16683
  * 临时凭证,用于上传接口的权限验证。
16592
16684
  */
16593
- TempCertificate: TempCertificate
16685
+ TempCertificate?: TempCertificate
16594
16686
  /**
16595
16687
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
16596
16688
  */
@@ -16672,33 +16764,33 @@ export interface ReviewTemplate {
16672
16764
  /**
16673
16765
  * 审核模版唯一标签。
16674
16766
  */
16675
- Definition: number
16767
+ Definition?: number
16676
16768
  /**
16677
16769
  * 模板名称。
16678
16770
  */
16679
- Name: string
16771
+ Name?: string
16680
16772
  /**
16681
16773
  * 模板描述信息。
16682
16774
  */
16683
- Comment: string
16775
+ Comment?: string
16684
16776
  /**
16685
16777
  * 模板类型,可选值:
16686
16778
  <li>Preset:系统预置模板;</li>
16687
16779
  <li>Custom:用户自定义模板。</li>
16688
16780
  */
16689
- Type: string
16781
+ Type?: string
16690
16782
  /**
16691
16783
  * 需要返回的违规标签列表。
16692
16784
  */
16693
- Labels: Array<string>
16785
+ Labels?: Array<string>
16694
16786
  /**
16695
16787
  * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
16696
16788
  */
16697
- CreateTime: string
16789
+ CreateTime?: string
16698
16790
  /**
16699
16791
  * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
16700
16792
  */
16701
- UpdateTime: string
16793
+ UpdateTime?: string
16702
16794
  }
16703
16795
 
16704
16796
  /**
@@ -16758,7 +16850,7 @@ export interface MediaVideoStreamItem {
16758
16850
  * 画面动态范围信息。
16759
16851
  <li><font color=red>注意</font>:在 2023-01-10T00:00:00Z 后处理的转码文件,此字段有效。</li>
16760
16852
  */
16761
- DynamicRangeInfo: DynamicRangeInfo
16853
+ DynamicRangeInfo?: DynamicRangeInfo
16762
16854
  }
16763
16855
 
16764
16856
  /**
@@ -17155,12 +17247,12 @@ export interface ModifyPersonSampleResponse {
17155
17247
  /**
17156
17248
  * 素材信息。
17157
17249
  */
17158
- Person: AiSamplePerson
17250
+ Person?: AiSamplePerson
17159
17251
  /**
17160
17252
  * 处理失败的五官信息。
17161
17253
  注意:此字段可能返回 null,表示取不到有效值。
17162
17254
  */
17163
- FailFaceInfoSet: Array<AiSampleFailFaceInfo>
17255
+ FailFaceInfoSet?: Array<AiSampleFailFaceInfo>
17164
17256
  /**
17165
17257
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
17166
17258
  */
@@ -17362,11 +17454,11 @@ export interface DescribePersonSamplesResponse {
17362
17454
  /**
17363
17455
  * 符合条件的记录总数。
17364
17456
  */
17365
- TotalCount: number
17457
+ TotalCount?: number
17366
17458
  /**
17367
17459
  * 人物信息。
17368
17460
  */
17369
- PersonSet: Array<AiSamplePerson>
17461
+ PersonSet?: Array<AiSamplePerson>
17370
17462
  /**
17371
17463
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
17372
17464
  */
@@ -17465,7 +17557,7 @@ export interface SplitMediaResponse {
17465
17557
  /**
17466
17558
  * 视频拆条的任务 ID,可以通过该 ID 查询拆条任务(任务类型为 SplitMedia)的状态。
17467
17559
  */
17468
- TaskId: string
17560
+ TaskId?: string
17469
17561
  /**
17470
17562
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
17471
17563
  */
@@ -17480,6 +17572,10 @@ export interface RestoreMediaRequest {
17480
17572
  * 媒体文件唯一标识列表,最大长度:100。
17481
17573
  */
17482
17574
  FileIds: Array<string>
17575
+ /**
17576
+ * 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
17577
+ */
17578
+ SubAppId?: number
17483
17579
  /**
17484
17580
  * 解冻出的临时媒体文件的可访问持续时长,必须大于0,单位为“天”。
17485
17581
  */
@@ -17494,10 +17590,6 @@ export interface RestoreMediaRequest {
17494
17590
  <li>批量模式:Bulk,解冻任务在48小时后完成。</li>
17495
17591
  */
17496
17592
  RestoreTier?: string
17497
- /**
17498
- * 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
17499
- */
17500
- SubAppId?: number
17501
17593
  }
17502
17594
 
17503
17595
  /**
@@ -17521,32 +17613,32 @@ export interface AiRecognitionTaskObjectResult {
17521
17613
  /**
17522
17614
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
17523
17615
  */
17524
- Status: string
17616
+ Status?: string
17525
17617
  /**
17526
17618
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
17527
17619
  */
17528
- ErrCodeExt: string
17620
+ ErrCodeExt?: string
17529
17621
  /**
17530
17622
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
17531
17623
  */
17532
- ErrCode: number
17624
+ ErrCode?: number
17533
17625
  /**
17534
17626
  * 错误信息。
17535
17627
  */
17536
- Message: string
17628
+ Message?: string
17537
17629
  /**
17538
17630
  * 物体识别任务输入信息。
17539
17631
  */
17540
- Input: AiRecognitionTaskObjectResultInput
17632
+ Input?: AiRecognitionTaskObjectResultInput
17541
17633
  /**
17542
17634
  * 物体识别任务输出信息。
17543
17635
  注意:此字段可能返回 null,表示取不到有效值。
17544
17636
  */
17545
- Output: AiRecognitionTaskObjectResultOutput
17637
+ Output?: AiRecognitionTaskObjectResultOutput
17546
17638
  /**
17547
17639
  * 物体识别任务进度,取值范围 [0-100] 。
17548
17640
  */
17549
- Progress: number
17641
+ Progress?: number
17550
17642
  /**
17551
17643
  * 物体识别任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
17552
17644
  */
@@ -17656,32 +17748,32 @@ export interface AiRecognitionTaskAsrWordsResult {
17656
17748
  /**
17657
17749
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
17658
17750
  */
17659
- Status: string
17751
+ Status?: string
17660
17752
  /**
17661
17753
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
17662
17754
  */
17663
- ErrCodeExt: string
17755
+ ErrCodeExt?: string
17664
17756
  /**
17665
17757
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
17666
17758
  */
17667
- ErrCode: number
17759
+ ErrCode?: number
17668
17760
  /**
17669
17761
  * 错误信息。
17670
17762
  */
17671
- Message: string
17763
+ Message?: string
17672
17764
  /**
17673
17765
  * 语音关键词识别任务输入信息。
17674
17766
  */
17675
- Input: AiRecognitionTaskAsrWordsResultInput
17767
+ Input?: AiRecognitionTaskAsrWordsResultInput
17676
17768
  /**
17677
17769
  * 语音关键词识别任务输出信息。
17678
17770
  注意:此字段可能返回 null,表示取不到有效值。
17679
17771
  */
17680
- Output: AiRecognitionTaskAsrWordsResultOutput
17772
+ Output?: AiRecognitionTaskAsrWordsResultOutput
17681
17773
  /**
17682
17774
  * 语音关键词识别任务进度,取值范围 [0-100] 。
17683
17775
  */
17684
- Progress: number
17776
+ Progress?: number
17685
17777
  /**
17686
17778
  * 语音关键词识别任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
17687
17779
  */
@@ -18042,32 +18134,32 @@ export interface AiReviewTaskPornAsrResult {
18042
18134
  /**
18043
18135
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
18044
18136
  */
18045
- Status: string
18137
+ Status?: string
18046
18138
  /**
18047
18139
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
18048
18140
  */
18049
- ErrCodeExt: string
18141
+ ErrCodeExt?: string
18050
18142
  /**
18051
18143
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
18052
18144
  */
18053
- ErrCode: number
18145
+ ErrCode?: number
18054
18146
  /**
18055
18147
  * 错误信息。
18056
18148
  */
18057
- Message: string
18149
+ Message?: string
18058
18150
  /**
18059
18151
  * 音视频审核 Asr 文字涉及令人反感的信息的任务输入。
18060
18152
  */
18061
- Input: AiReviewPornAsrTaskInput
18153
+ Input?: AiReviewPornAsrTaskInput
18062
18154
  /**
18063
18155
  * 音视频审核 Asr 文字涉及令人反感的信息的任务输出。
18064
18156
  注意:此字段可能返回 null,表示取不到有效值。
18065
18157
  */
18066
- Output: AiReviewPornAsrTaskOutput
18158
+ Output?: AiReviewPornAsrTaskOutput
18067
18159
  /**
18068
18160
  * 音视频审核 Asr 文字涉及令人反感的信息的任务进度,取值范围 [0-100] 。
18069
18161
  */
18070
- Progress: number
18162
+ Progress?: number
18071
18163
  }
18072
18164
 
18073
18165
  /**
@@ -18288,11 +18380,11 @@ export interface CreateWatermarkTemplateResponse {
18288
18380
  /**
18289
18381
  * 水印模板唯一标识。
18290
18382
  */
18291
- Definition: number
18383
+ Definition?: number
18292
18384
  /**
18293
18385
  * 水印图片地址,仅当 Type 为 image,该字段有效。
18294
18386
  */
18295
- ImageUrl: string
18387
+ ImageUrl?: string
18296
18388
  /**
18297
18389
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
18298
18390
  */
@@ -18420,27 +18512,27 @@ export interface AiReviewPoliticalOcrTaskOutput {
18420
18512
  /**
18421
18513
  * Ocr 文字涉及令人不适宜的信息、违规评分,分值为0到100。
18422
18514
  */
18423
- Confidence: number
18515
+ Confidence?: number
18424
18516
  /**
18425
18517
  * Ocr 文字涉及令人不适宜的信息、违规结果建议,取值范围:
18426
18518
  <li>pass。</li>
18427
18519
  <li>review。</li>
18428
18520
  <li>block。</li>
18429
18521
  */
18430
- Suggestion: string
18522
+ Suggestion?: string
18431
18523
  /**
18432
18524
  * Ocr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表。
18433
18525
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
18434
18526
  */
18435
- SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>
18527
+ SegmentSet?: Array<MediaContentReviewOcrTextSegmentItem>
18436
18528
  /**
18437
18529
  * Ocr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
18438
18530
  */
18439
- SegmentSetFileUrl: string
18531
+ SegmentSetFileUrl?: string
18440
18532
  /**
18441
18533
  * Ocr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
18442
18534
  */
18443
- SegmentSetFileUrlExpireTime: string
18535
+ SegmentSetFileUrlExpireTime?: string
18444
18536
  }
18445
18537
 
18446
18538
  /**
@@ -18972,7 +19064,7 @@ export interface CreateAnimatedGraphicsTemplateResponse {
18972
19064
  /**
18973
19065
  * 转动图模板唯一标识。
18974
19066
  */
18975
- Definition: number
19067
+ Definition?: number
18976
19068
  /**
18977
19069
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
18978
19070
  */
@@ -19064,32 +19156,32 @@ export interface AiRecognitionTaskHeadTailResult {
19064
19156
  /**
19065
19157
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
19066
19158
  */
19067
- Status: string
19159
+ Status?: string
19068
19160
  /**
19069
19161
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
19070
19162
  */
19071
- ErrCodeExt: string
19163
+ ErrCodeExt?: string
19072
19164
  /**
19073
19165
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
19074
19166
  */
19075
- ErrCode: number
19167
+ ErrCode?: number
19076
19168
  /**
19077
19169
  * 错误信息。
19078
19170
  */
19079
- Message: string
19171
+ Message?: string
19080
19172
  /**
19081
19173
  * 视频片头片尾识别任务输入信息。
19082
19174
  */
19083
- Input: AiRecognitionTaskHeadTailResultInput
19175
+ Input?: AiRecognitionTaskHeadTailResultInput
19084
19176
  /**
19085
19177
  * 视频片头片尾识别任务输出信息。
19086
19178
  注意:此字段可能返回 null,表示取不到有效值。
19087
19179
  */
19088
- Output: AiRecognitionTaskHeadTailResultOutput
19180
+ Output?: AiRecognitionTaskHeadTailResultOutput
19089
19181
  /**
19090
19182
  * 视频片头片尾识别任务进度,取值范围 [0-100] 。
19091
19183
  */
19092
- Progress: number
19184
+ Progress?: number
19093
19185
  /**
19094
19186
  * 视频片头片尾识别任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
19095
19187
  */
@@ -19662,7 +19754,7 @@ export interface CreateImageSpriteTemplateResponse {
19662
19754
  /**
19663
19755
  * 雪碧图模板唯一标识。
19664
19756
  */
19665
- Definition: number
19757
+ Definition?: number
19666
19758
  /**
19667
19759
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
19668
19760
  */