tencentcloud-sdk-nodejs-vod 4.0.688 → 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.
@@ -482,24 +482,24 @@ export interface LiveRealTimeClipResponse {
482
482
  /**
483
483
  * 剪辑后的视频播放 URL。
484
484
  */
485
- Url: string;
485
+ Url?: string;
486
486
  /**
487
487
  * 剪辑固化后的视频的媒体文件的唯一标识。
488
488
  */
489
- FileId: string;
489
+ FileId?: string;
490
490
  /**
491
491
  * 剪辑固化后的视频任务流 ID。
492
492
  */
493
- VodTaskId: string;
493
+ VodTaskId?: string;
494
494
  /**
495
495
  * 剪辑后的视频元信息。
496
496
  注意:此字段可能返回 null,表示取不到有效值。
497
497
  */
498
- MetaData: MediaMetaData;
498
+ MetaData?: MediaMetaData;
499
499
  /**
500
500
  * <span id="p_segmentset">剪辑后的视频片段信息。</span>
501
501
  */
502
- SegmentSet: Array<LiveRealTimeClipMediaSegmentInfo>;
502
+ SegmentSet?: Array<LiveRealTimeClipMediaSegmentInfo>;
503
503
  /**
504
504
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
505
505
  */
@@ -512,32 +512,32 @@ export interface AiReviewTaskProhibitedAsrResult {
512
512
  /**
513
513
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
514
514
  */
515
- Status: string;
515
+ Status?: string;
516
516
  /**
517
517
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
518
518
  */
519
- ErrCodeExt: string;
519
+ ErrCodeExt?: string;
520
520
  /**
521
521
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
522
522
  */
523
- ErrCode: number;
523
+ ErrCode?: number;
524
524
  /**
525
525
  * 错误信息。
526
526
  */
527
- Message: string;
527
+ Message?: string;
528
528
  /**
529
529
  * 音视频审核 Asr 文字鉴违禁任务输入。
530
530
  */
531
- Input: AiReviewProhibitedAsrTaskInput;
531
+ Input?: AiReviewProhibitedAsrTaskInput;
532
532
  /**
533
533
  * 音视频审核 Asr 文字鉴违禁任务输出。
534
534
  注意:此字段可能返回 null,表示取不到有效值。
535
535
  */
536
- Output: AiReviewProhibitedAsrTaskOutput;
536
+ Output?: AiReviewProhibitedAsrTaskOutput;
537
537
  /**
538
538
  * 音视频审核 Asr 文字鉴违禁任务进度,取值范围 [0-100] 。
539
539
  */
540
- Progress: number;
540
+ Progress?: number;
541
541
  }
542
542
  /**
543
543
  * 转自适应码流模板详情
@@ -626,32 +626,32 @@ export interface AiReviewTaskProhibitedOcrResult {
626
626
  /**
627
627
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
628
628
  */
629
- Status: string;
629
+ Status?: string;
630
630
  /**
631
631
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
632
632
  */
633
- ErrCodeExt: string;
633
+ ErrCodeExt?: string;
634
634
  /**
635
635
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
636
636
  */
637
- ErrCode: number;
637
+ ErrCode?: number;
638
638
  /**
639
639
  * 错误信息。
640
640
  */
641
- Message: string;
641
+ Message?: string;
642
642
  /**
643
643
  * 音视频审核 Ocr 文字鉴违禁任务输入。
644
644
  */
645
- Input: AiReviewProhibitedOcrTaskInput;
645
+ Input?: AiReviewProhibitedOcrTaskInput;
646
646
  /**
647
647
  * 音视频审核 Ocr 文字鉴违禁任务输出。
648
648
  注意:此字段可能返回 null,表示取不到有效值。
649
649
  */
650
- Output: AiReviewProhibitedOcrTaskOutput;
650
+ Output?: AiReviewProhibitedOcrTaskOutput;
651
651
  /**
652
652
  * 音视频审核 Ocr 文字鉴违禁任务进度,取值范围 [0-100] 。
653
653
  */
654
- Progress: number;
654
+ Progress?: number;
655
655
  }
656
656
  /**
657
657
  * 语音全文识别结果。
@@ -686,27 +686,27 @@ export interface AiReviewProhibitedOcrTaskOutput {
686
686
  /**
687
687
  * Ocr 文字涉违禁评分,分值为0到100。
688
688
  */
689
- Confidence: number;
689
+ Confidence?: number;
690
690
  /**
691
691
  * Ocr 文字涉违禁结果建议,取值范围:
692
692
  <li>pass。</li>
693
693
  <li>review。</li>
694
694
  <li>block。</li>
695
695
  */
696
- Suggestion: string;
696
+ Suggestion?: string;
697
697
  /**
698
698
  * Ocr 文字有涉违禁嫌疑的视频片段列表。
699
699
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
700
700
  */
701
- SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
701
+ SegmentSet?: Array<MediaContentReviewOcrTextSegmentItem>;
702
702
  /**
703
703
  * Ocr 文字有涉违禁嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
704
704
  */
705
- SegmentSetFileUrl: string;
705
+ SegmentSetFileUrl?: string;
706
706
  /**
707
707
  * Ocr 文字有涉违禁嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
708
708
  */
709
- SegmentSetFileUrlExpireTime: string;
709
+ SegmentSetFileUrlExpireTime?: string;
710
710
  }
711
711
  /**
712
712
  * 小程序音视频审核概要元信息
@@ -1122,28 +1122,28 @@ export interface AiReviewTaskPoliticalOcrResult {
1122
1122
  /**
1123
1123
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
1124
1124
  */
1125
- Status: string;
1125
+ Status?: string;
1126
1126
  /**
1127
1127
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
1128
1128
  */
1129
- ErrCodeExt: string;
1129
+ ErrCodeExt?: string;
1130
1130
  /**
1131
1131
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
1132
1132
  */
1133
- ErrCode: number;
1133
+ ErrCode?: number;
1134
1134
  /**
1135
1135
  * 错误信息。
1136
1136
  */
1137
- Message: string;
1137
+ Message?: string;
1138
1138
  /**
1139
1139
  * 音视频审核 Ocr 文字涉及令人不适宜信息的任务输入。
1140
1140
  */
1141
- Input: AiReviewPoliticalOcrTaskInput;
1141
+ Input?: AiReviewPoliticalOcrTaskInput;
1142
1142
  /**
1143
1143
  * 音视频审核 Ocr 文字涉及令人不适宜信息的任务输出。
1144
1144
  注意:此字段可能返回 null,表示取不到有效值。
1145
1145
  */
1146
- Output: AiReviewPoliticalOcrTaskOutput;
1146
+ Output?: AiReviewPoliticalOcrTaskOutput;
1147
1147
  /**
1148
1148
  * 音视频审核 Ocr 文字涉及令人不适宜信息的任务进度,取值范围 [0-100] 。
1149
1149
  */
@@ -1192,10 +1192,12 @@ export interface CreateImageSpriteTemplateRequest {
1192
1192
  SampleInterval: number;
1193
1193
  /**
1194
1194
  * 雪碧图中小图的行数。
1195
+ 注意:小图的行数会影响最终大图的高度,大图的高度最大为15000像素,其中大图的高度为小图行数与小图高度的乘积。
1195
1196
  */
1196
1197
  RowCount: number;
1197
1198
  /**
1198
1199
  * 雪碧图中小图的列数。
1200
+ 注意:小图的列数会影响最终大图的宽度,大图的宽度最大为15000像素,其中大图的宽度为小图列数与小图宽度的乘积。
1199
1201
  */
1200
1202
  ColumnCount: number;
1201
1203
  /**
@@ -1224,6 +1226,7 @@ export interface CreateImageSpriteTemplateRequest {
1224
1226
  <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
1225
1227
  <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
1226
1228
  默认值:0。
1229
+ 注意:小图的宽度会影响最终大图的宽度,大图的宽度最大为15000像素,其中大图的宽度为小图列数与小图宽度的乘积。
1227
1230
  */
1228
1231
  Width?: number;
1229
1232
  /**
@@ -1233,6 +1236,7 @@ export interface CreateImageSpriteTemplateRequest {
1233
1236
  <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
1234
1237
  <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
1235
1238
  默认值:0。
1239
+ 注意:小图的高度会影响最终大图的高度,大图的高度最大为15000像素,其中大图的高度为小图行数与小图高度的乘积。
1236
1240
  */
1237
1241
  Height?: number;
1238
1242
  /**
@@ -1336,60 +1340,60 @@ export interface ContentReviewTemplateItem {
1336
1340
  /**
1337
1341
  * 音视频审核模板唯一标识。
1338
1342
  */
1339
- Definition: number;
1343
+ Definition?: number;
1340
1344
  /**
1341
1345
  * 音视频审核模板名称,长度限制:64 个字符。
1342
1346
  */
1343
- Name: string;
1347
+ Name?: string;
1344
1348
  /**
1345
1349
  * 音视频审核模板描述信息,长度限制:256 个字符。
1346
1350
  */
1347
- Comment: string;
1351
+ Comment?: string;
1348
1352
  /**
1349
1353
  * 鉴别涉及令人反感的信息的控制参数。
1350
1354
  注意:此字段可能返回 null,表示取不到有效值。
1351
1355
  */
1352
- PornConfigure: PornConfigureInfo;
1356
+ PornConfigure?: PornConfigureInfo;
1353
1357
  /**
1354
1358
  * 鉴别涉及令人不安全的信息的控制参数。
1355
1359
  注意:此字段可能返回 null,表示取不到有效值。
1356
1360
  */
1357
- TerrorismConfigure: TerrorismConfigureInfo;
1361
+ TerrorismConfigure?: TerrorismConfigureInfo;
1358
1362
  /**
1359
1363
  * 鉴别涉及令人不适宜的信息的控制参数。
1360
1364
  注意:此字段可能返回 null,表示取不到有效值。
1361
1365
  */
1362
- PoliticalConfigure: PoliticalConfigureInfo;
1366
+ PoliticalConfigure?: PoliticalConfigureInfo;
1363
1367
  /**
1364
1368
  * 违禁控制参数。违禁内容包括:
1365
1369
  <li>谩骂;</li>
1366
1370
  <li>涉毒违法。</li>
1367
1371
  注意:此字段可能返回 null,表示取不到有效值。
1368
1372
  */
1369
- ProhibitedConfigure: ProhibitedConfigureInfo;
1373
+ ProhibitedConfigure?: ProhibitedConfigureInfo;
1370
1374
  /**
1371
1375
  * 用户自定义音视频审核控制参数。
1372
1376
  注意:此字段可能返回 null,表示取不到有效值。
1373
1377
  */
1374
- UserDefineConfigure: UserDefineConfigureInfo;
1378
+ UserDefineConfigure?: UserDefineConfigureInfo;
1375
1379
  /**
1376
1380
  * 音视频审核结果是否进入音视频审核墙(对音视频审核结果进行人工复核)的开关。
1377
1381
  <li>ON:是;</li>
1378
1382
  <li>OFF:否。</li>
1379
1383
  */
1380
- ReviewWallSwitch: string;
1384
+ ReviewWallSwitch?: string;
1381
1385
  /**
1382
1386
  * 截帧间隔,单位为秒。当不填时,默认截帧间隔为 1 秒,最小值为 0.5 秒。
1383
1387
  */
1384
- ScreenshotInterval: number;
1388
+ ScreenshotInterval?: number;
1385
1389
  /**
1386
1390
  * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
1387
1391
  */
1388
- CreateTime: string;
1392
+ CreateTime?: string;
1389
1393
  /**
1390
1394
  * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
1391
1395
  */
1392
- UpdateTime: string;
1396
+ UpdateTime?: string;
1393
1397
  }
1394
1398
  /**
1395
1399
  * DeleteAIRecognitionTemplate返回参数结构体
@@ -1647,7 +1651,7 @@ export interface DescribeLicenseUsageDataResponse {
1647
1651
  /**
1648
1652
  * License 查询次数统计数据,展示所查询 License 次数的明细数据。
1649
1653
  */
1650
- LicenseUsageDataSet: Array<LicenseUsageDataItem>;
1654
+ LicenseUsageDataSet?: Array<LicenseUsageDataItem>;
1651
1655
  /**
1652
1656
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1653
1657
  */
@@ -1773,7 +1777,7 @@ export interface DescribeDailyMediaPlayStatResponse {
1773
1777
  /**
1774
1778
  * 播放统计数据。
1775
1779
  */
1776
- DailyPlayStatInfoSet: Array<DailyPlayStatInfo>;
1780
+ DailyPlayStatInfoSet?: Array<DailyPlayStatInfo>;
1777
1781
  /**
1778
1782
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1779
1783
  */
@@ -1949,7 +1953,7 @@ export interface ExecuteFunctionResponse {
1949
1953
  /**
1950
1954
  * 处理结果打包后的字符串,具体与后台一同协调。
1951
1955
  */
1952
- Result: string;
1956
+ Result?: string;
1953
1957
  /**
1954
1958
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1955
1959
  */
@@ -1973,7 +1977,7 @@ export interface DescribeClientUploadAccelerationUsageDataResponse {
1973
1977
  /**
1974
1978
  * 客户端上传加速统计数据。
1975
1979
  */
1976
- ClientUploadAccelerationUsageDataSet: Array<StatDataItem>;
1980
+ ClientUploadAccelerationUsageDataSet?: Array<StatDataItem>;
1977
1981
  /**
1978
1982
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1979
1983
  */
@@ -2218,7 +2222,7 @@ export interface CreateAdaptiveDynamicStreamingTemplateRequest {
2218
2222
  <li>SimpleAES</li>
2219
2223
  <li>Widevine</li>
2220
2224
  <li>FairPlay</li>
2221
- 如果取值为空字符串,代表不对视频做 DRM 保护。
2225
+ 默认值为空字符串,如果取值为空字符串,代表不对视频做 DRM 保护。
2222
2226
  */
2223
2227
  DrmType?: string;
2224
2228
  /**
@@ -2493,7 +2497,7 @@ export interface DescribeDailyPlayStatFileListResponse {
2493
2497
  /**
2494
2498
  * 播放统计文件列表。
2495
2499
  */
2496
- PlayStatFileSet: Array<PlayStatFileInfo>;
2500
+ PlayStatFileSet?: Array<PlayStatFileInfo>;
2497
2501
  /**
2498
2502
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2499
2503
  */
@@ -2923,11 +2927,11 @@ export interface DescribeWordSamplesResponse {
2923
2927
  /**
2924
2928
  * 符合条件的记录总数。
2925
2929
  */
2926
- TotalCount: number;
2930
+ TotalCount?: number;
2927
2931
  /**
2928
2932
  * 关键词信息。
2929
2933
  */
2930
- WordSet: Array<AiSampleWord>;
2934
+ WordSet?: Array<AiSampleWord>;
2931
2935
  /**
2932
2936
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2933
2937
  */
@@ -3439,31 +3443,31 @@ export interface MediaProcessTaskAdaptiveDynamicStreamingResult {
3439
3443
  /**
3440
3444
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
3441
3445
  */
3442
- Status: string;
3446
+ Status?: string;
3443
3447
  /**
3444
3448
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
3445
3449
  */
3446
- ErrCodeExt: string;
3450
+ ErrCodeExt?: string;
3447
3451
  /**
3448
3452
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
3449
3453
  */
3450
- ErrCode: number;
3454
+ ErrCode?: number;
3451
3455
  /**
3452
3456
  * 错误信息。
3453
3457
  */
3454
- Message: string;
3458
+ Message?: string;
3455
3459
  /**
3456
3460
  * 转自适应码流任务进度,取值范围 [0-100] 。
3457
3461
  */
3458
- Progress: number;
3462
+ Progress?: number;
3459
3463
  /**
3460
3464
  * 对视频转自适应码流任务的输入。
3461
3465
  */
3462
- Input: AdaptiveDynamicStreamingTaskInput;
3466
+ Input?: AdaptiveDynamicStreamingTaskInput;
3463
3467
  /**
3464
3468
  * 对视频转自适应码流任务的输出。
3465
3469
  */
3466
- Output: AdaptiveDynamicStreamingInfoItem;
3470
+ Output?: AdaptiveDynamicStreamingInfoItem;
3467
3471
  /**
3468
3472
  * 转自适应码流任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
3469
3473
  */
@@ -3683,7 +3687,7 @@ export interface EditMediaResponse {
3683
3687
  /**
3684
3688
  * 编辑视频的任务 ID,可以通过该 ID 查询编辑任务(任务类型为 EditMedia)的状态。
3685
3689
  */
3686
- TaskId: string;
3690
+ TaskId?: string;
3687
3691
  /**
3688
3692
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3689
3693
  */
@@ -4350,10 +4354,6 @@ export interface CreateVodDomainRequest {
4350
4354
  * 需要接入点播的加速域名。注意:不支持填写泛域名。
4351
4355
  */
4352
4356
  Domain: string;
4353
- /**
4354
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
4355
- */
4356
- SubAppId?: number;
4357
4357
  /**
4358
4358
  * 需要开启 CDN 加速的区域:
4359
4359
  <li>Chinese Mainland:中国境内(不包含港澳台)。</li>
@@ -4362,6 +4362,10 @@ export interface CreateVodDomainRequest {
4362
4362
  如果没有设置 AccelerateArea, 点播会根据用户在腾讯云设置的地域信息自动开通中国境内或者中国境外的 CDN 加速。开启中国境内加速的域名,需要先[备案域名](/document/product/243/18905)。
4363
4363
  */
4364
4364
  AccelerateArea?: string;
4365
+ /**
4366
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
4367
+ */
4368
+ SubAppId?: number;
4365
4369
  }
4366
4370
  /**
4367
4371
  * 文本全文本识别任务控制参数
@@ -4668,32 +4672,32 @@ export interface AiReviewTaskTerrorismOcrResult {
4668
4672
  /**
4669
4673
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
4670
4674
  */
4671
- Status: string;
4675
+ Status?: string;
4672
4676
  /**
4673
4677
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
4674
4678
  */
4675
- ErrCodeExt: string;
4679
+ ErrCodeExt?: string;
4676
4680
  /**
4677
4681
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
4678
4682
  */
4679
- ErrCode: number;
4683
+ ErrCode?: number;
4680
4684
  /**
4681
4685
  * 错误信息。
4682
4686
  */
4683
- Message: string;
4687
+ Message?: string;
4684
4688
  /**
4685
4689
  * 音视频审核 Ocr 文字涉及令人不安全的信息的任务输入。
4686
4690
  */
4687
- Input: AiReviewTerrorismOcrTaskInput;
4691
+ Input?: AiReviewTerrorismOcrTaskInput;
4688
4692
  /**
4689
4693
  * 音视频审核 Ocr 文字涉及令人不安全的信息的任务输出。
4690
4694
  注意:此字段可能返回 null,表示取不到有效值。
4691
4695
  */
4692
- Output: AiReviewTerrorismOcrTaskOutput;
4696
+ Output?: AiReviewTerrorismOcrTaskOutput;
4693
4697
  /**
4694
4698
  * 音视频审核 Ocr 文字涉及令人不安全的信息的任务进度,取值范围 [0-100] 。
4695
4699
  */
4696
- Progress: number;
4700
+ Progress?: number;
4697
4701
  }
4698
4702
  /**
4699
4703
  * 文本关键识别结果。
@@ -5059,27 +5063,27 @@ export interface AiReviewPornAsrTaskOutput {
5059
5063
  /**
5060
5064
  * Asr 文字涉及令人反感的信息的评分,分值为0到100。
5061
5065
  */
5062
- Confidence: number;
5066
+ Confidence?: number;
5063
5067
  /**
5064
5068
  * Asr 文字涉及令人反感的信息的结果建议,取值范围:
5065
5069
  <li>pass。</li>
5066
5070
  <li>review。</li>
5067
5071
  <li>block。</li>
5068
5072
  */
5069
- Suggestion: string;
5073
+ Suggestion?: string;
5070
5074
  /**
5071
5075
  * Asr 文字有涉及令人反感的信息的嫌疑的视频片段列表。
5072
5076
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
5073
5077
  */
5074
- SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>;
5078
+ SegmentSet?: Array<MediaContentReviewAsrTextSegmentItem>;
5075
5079
  /**
5076
5080
  * Asr 文字有涉及令人反感的信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
5077
5081
  */
5078
- SegmentSetFileUrl: string;
5082
+ SegmentSetFileUrl?: string;
5079
5083
  /**
5080
5084
  * Asr 文字有涉及令人反感的信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
5081
5085
  */
5082
- SegmentSetFileUrlExpireTime: string;
5086
+ SegmentSetFileUrlExpireTime?: string;
5083
5087
  }
5084
5088
  /**
5085
5089
  * 字幕信息。
@@ -5313,37 +5317,37 @@ export interface ContentReviewResult {
5313
5317
  <li>Terrorism.Ocr:图片 OCR 文字中的鉴别令人不安全的信息结果;</li>
5314
5318
  <li>Political.Ocr:图片 OCR 文字中的鉴别令人不适宜信息结果。</li>
5315
5319
  */
5316
- Type: string;
5320
+ Type?: string;
5317
5321
  /**
5318
5322
  * 图片画面中的鉴别令人反感的信息结果,当 Type 为 Porn.Image 时有效。
5319
5323
  注意:此字段可能返回 null,表示取不到有效值。
5320
5324
  */
5321
- PornImageResult: PornImageResult;
5325
+ PornImageResult?: PornImageResult;
5322
5326
  /**
5323
5327
  * 图片画面中的鉴别令人不安全的信息结果,当 Type 为 Terrorism.Image 时有效。
5324
5328
  注意:此字段可能返回 null,表示取不到有效值。
5325
5329
  */
5326
- TerrorismImageResult: TerrorismImageResult;
5330
+ TerrorismImageResult?: TerrorismImageResult;
5327
5331
  /**
5328
5332
  * 图片画面中的鉴别令人不适宜信息结果,当 Type 为 Political.Image 时有效。
5329
5333
  注意:此字段可能返回 null,表示取不到有效值。
5330
5334
  */
5331
- PoliticalImageResult: PoliticalImageResult;
5335
+ PoliticalImageResult?: PoliticalImageResult;
5332
5336
  /**
5333
5337
  * 图片 OCR 文字中的鉴别令人反感的信息结果,当 Type 为 Porn.Ocr 时有效。
5334
5338
  注意:此字段可能返回 null,表示取不到有效值。
5335
5339
  */
5336
- PornOcrResult: ContentReviewOcrResult;
5340
+ PornOcrResult?: ContentReviewOcrResult;
5337
5341
  /**
5338
5342
  * 图片 OCR 中的鉴别令人不安全的信息结果,当 Type 为 Terrorism.Ocr 时有效。
5339
5343
  注意:此字段可能返回 null,表示取不到有效值。
5340
5344
  */
5341
- TerrorismOcrResult: ContentReviewOcrResult;
5345
+ TerrorismOcrResult?: ContentReviewOcrResult;
5342
5346
  /**
5343
5347
  * 图片 OCR 文字中的鉴别令人不适宜信息结果,当 Type 为 Political.Ocr 时有效。
5344
5348
  注意:此字段可能返回 null,表示取不到有效值。
5345
5349
  */
5346
- PoliticalOcrResult: ContentReviewOcrResult;
5350
+ PoliticalOcrResult?: ContentReviewOcrResult;
5347
5351
  }
5348
5352
  /**
5349
5353
  * 对视频截雪碧图任务结果类型
@@ -5840,11 +5844,11 @@ export interface CreatePersonSampleResponse {
5840
5844
  /**
5841
5845
  * 素材信息。
5842
5846
  */
5843
- Person: AiSamplePerson;
5847
+ Person?: AiSamplePerson;
5844
5848
  /**
5845
5849
  * 处理失败的五官定位信息。
5846
5850
  */
5847
- FailFaceInfoSet: Array<AiSampleFailFaceInfo>;
5851
+ FailFaceInfoSet?: Array<AiSampleFailFaceInfo>;
5848
5852
  /**
5849
5853
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5850
5854
  */
@@ -6308,32 +6312,32 @@ export interface AiReviewTaskPornOcrResult {
6308
6312
  /**
6309
6313
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
6310
6314
  */
6311
- Status: string;
6315
+ Status?: string;
6312
6316
  /**
6313
6317
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
6314
6318
  */
6315
- ErrCodeExt: string;
6319
+ ErrCodeExt?: string;
6316
6320
  /**
6317
6321
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
6318
6322
  */
6319
- ErrCode: number;
6323
+ ErrCode?: number;
6320
6324
  /**
6321
6325
  * 错误信息。
6322
6326
  */
6323
- Message: string;
6327
+ Message?: string;
6324
6328
  /**
6325
6329
  * 音视频审核 Ocr 文字涉及令人反感的信息的任务输入。
6326
6330
  */
6327
- Input: AiReviewPornOcrTaskInput;
6331
+ Input?: AiReviewPornOcrTaskInput;
6328
6332
  /**
6329
6333
  * Ocr 文字音视频审核涉及令人反感的信息的任务输出。
6330
6334
  注意:此字段可能返回 null,表示取不到有效值。
6331
6335
  */
6332
- Output: AiReviewPornOcrTaskOutput;
6336
+ Output?: AiReviewPornOcrTaskOutput;
6333
6337
  /**
6334
6338
  * Ocr 文字音视频审核涉及令人反感的信息的任务进度,取值范围 [0-100] 。
6335
6339
  */
6336
- Progress: number;
6340
+ Progress?: number;
6337
6341
  }
6338
6342
  /**
6339
6343
  * ModifyContentReviewTemplate返回参数结构体
@@ -7328,7 +7332,7 @@ export interface ProcessImageResponse {
7328
7332
  /**
7329
7333
  * 图片内容智能识别任务结果。
7330
7334
  */
7331
- ContentReviewResultSet: Array<ContentReviewResult>;
7335
+ ContentReviewResultSet?: Array<ContentReviewResult>;
7332
7336
  /**
7333
7337
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7334
7338
  */
@@ -7363,11 +7367,11 @@ export interface ModifyMediaInfoResponse {
7363
7367
  * 新的视频封面 URL。
7364
7368
  * 注意:仅当请求携带 CoverData 时此返回值有效。 *
7365
7369
  */
7366
- CoverUrl: string;
7370
+ CoverUrl?: string;
7367
7371
  /**
7368
7372
  * 新增的字幕信息。
7369
7373
  */
7370
- AddedSubtitleSet: Array<MediaSubtitleItem>;
7374
+ AddedSubtitleSet?: Array<MediaSubtitleItem>;
7371
7375
  /**
7372
7376
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7373
7377
  */
@@ -7683,40 +7687,40 @@ export interface MediaProcessTaskTranscodeResult {
7683
7687
  /**
7684
7688
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
7685
7689
  */
7686
- Status: string;
7690
+ Status?: string;
7687
7691
  /**
7688
7692
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
7689
7693
  */
7690
- ErrCodeExt: string;
7694
+ ErrCodeExt?: string;
7691
7695
  /**
7692
7696
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
7693
7697
  */
7694
- ErrCode: number;
7698
+ ErrCode?: number;
7695
7699
  /**
7696
7700
  * 错误信息。
7697
7701
  */
7698
- Message: string;
7702
+ Message?: string;
7699
7703
  /**
7700
7704
  * 转码任务的输入。
7701
7705
  */
7702
- Input: TranscodeTaskInput;
7706
+ Input?: TranscodeTaskInput;
7703
7707
  /**
7704
7708
  * 转码任务的输出。
7705
7709
  注意:此字段可能返回 null,表示取不到有效值。
7706
7710
  */
7707
- Output: MediaTranscodeItem;
7711
+ Output?: MediaTranscodeItem;
7708
7712
  /**
7709
7713
  * 转码进度,取值范围 [0-100] 。
7710
7714
  */
7711
- Progress: number;
7715
+ Progress?: number;
7712
7716
  /**
7713
7717
  * 转码任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
7714
7718
  */
7715
- BeginProcessTime: string;
7719
+ BeginProcessTime?: string;
7716
7720
  /**
7717
7721
  * 转码任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
7718
7722
  */
7719
- FinishTime: string;
7723
+ FinishTime?: string;
7720
7724
  }
7721
7725
  /**
7722
7726
  * 视频画面模糊检测的控制参数。
@@ -8220,11 +8224,11 @@ export interface DescribeSuperPlayerConfigsResponse {
8220
8224
  /**
8221
8225
  * 符合过滤条件的记录总数。
8222
8226
  */
8223
- TotalCount: number;
8227
+ TotalCount?: number;
8224
8228
  /**
8225
8229
  * 播放器配置数组。
8226
8230
  */
8227
- PlayerConfigSet: Array<PlayerConfig>;
8231
+ PlayerConfigSet?: Array<PlayerConfig>;
8228
8232
  /**
8229
8233
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8230
8234
  */
@@ -8509,7 +8513,7 @@ export interface DescribeEventsStateResponse {
8509
8513
  /**
8510
8514
  * 待进行拉取的事件通知数,为近似值,约5秒延迟。
8511
8515
  */
8512
- CountOfEventsToPull: number;
8516
+ CountOfEventsToPull?: number;
8513
8517
  /**
8514
8518
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8515
8519
  */
@@ -10201,39 +10205,39 @@ export interface DomainDetailInfo {
10201
10205
  /**
10202
10206
  * 域名名称。
10203
10207
  */
10204
- Domain: string;
10208
+ Domain?: string;
10205
10209
  /**
10206
10210
  * 加速地区信息。
10207
10211
  注意:此字段可能返回 null,表示取不到有效值。
10208
10212
  */
10209
- AccelerateAreaInfos: Array<AccelerateAreaInfo>;
10213
+ AccelerateAreaInfos?: Array<AccelerateAreaInfo>;
10210
10214
  /**
10211
10215
  * 部署状态,取值有:
10212
10216
  <li>Online:上线;</li>
10213
10217
  <li>Deploying:部署中;</li>
10214
10218
  <li>Locked: 锁定中,出现该状态时,无法对该域名进行部署变更。</li>
10215
10219
  */
10216
- DeployStatus: string;
10220
+ DeployStatus?: string;
10217
10221
  /**
10218
10222
  * HTTPS 配置信息。
10219
10223
  注意:此字段可能返回 null,表示取不到有效值。
10220
10224
  */
10221
- HTTPSConfig: DomainHTTPSConfig;
10225
+ HTTPSConfig?: DomainHTTPSConfig;
10222
10226
  /**
10223
10227
  * [Key 防盗链](https://cloud.tencent.com/document/product/266/14047)配置信息。
10224
10228
  注意:此字段可能返回 null,表示取不到有效值。
10225
10229
  */
10226
- UrlSignatureAuthPolicy: UrlSignatureAuthPolicy;
10230
+ UrlSignatureAuthPolicy?: UrlSignatureAuthPolicy;
10227
10231
  /**
10228
10232
  * [Referer 防盗链](https://cloud.tencent.com/document/product/266/14046)配置信息。
10229
10233
  注意:此字段可能返回 null,表示取不到有效值。
10230
10234
  */
10231
- RefererAuthPolicy: RefererAuthPolicy;
10235
+ RefererAuthPolicy?: RefererAuthPolicy;
10232
10236
  /**
10233
10237
  * 域名添加到腾讯云点播系统中的时间。
10234
10238
  <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>
10235
10239
  */
10236
- CreateTime: string;
10240
+ CreateTime?: string;
10237
10241
  /**
10238
10242
  * 域名 QUIC 配置信息。
10239
10243
  注意:此字段可能返回 null,表示取不到有效值。
@@ -10281,7 +10285,7 @@ export interface ProcessMediaByUrlResponse {
10281
10285
  /**
10282
10286
  * 任务 ID
10283
10287
  */
10284
- TaskId: string;
10288
+ TaskId?: string;
10285
10289
  /**
10286
10290
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10287
10291
  */
@@ -10365,17 +10369,17 @@ export interface DescribeCdnLogsResponse {
10365
10369
  * 日志下载链接总数量。
10366
10370
  注意:此字段可能返回 null,表示取不到有效值。
10367
10371
  */
10368
- TotalCount: number;
10372
+ TotalCount?: number;
10369
10373
  /**
10370
10374
  * 海外CDN节点的日志下载列表。如果域名没有开启海外加速,忽略该参数。
10371
10375
  注意:此字段可能返回 null,表示取不到有效值。
10372
10376
  */
10373
- OverseaCdnLogs: Array<CdnLogInfo>;
10377
+ OverseaCdnLogs?: Array<CdnLogInfo>;
10374
10378
  /**
10375
10379
  * 国内CDN节点的日志下载列表。
10376
10380
  注意:此字段可能返回 null,表示取不到有效值。
10377
10381
  */
10378
- DomesticCdnLogs: Array<CdnLogInfo>;
10382
+ DomesticCdnLogs?: Array<CdnLogInfo>;
10379
10383
  /**
10380
10384
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10381
10385
  */
@@ -10469,7 +10473,7 @@ export interface CreateSnapshotByTimeOffsetTemplateResponse {
10469
10473
  /**
10470
10474
  * 时间点截图模板唯一标识。
10471
10475
  */
10472
- Definition: number;
10476
+ Definition?: number;
10473
10477
  /**
10474
10478
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10475
10479
  */
@@ -10660,7 +10664,7 @@ export interface CreateAdaptiveDynamicStreamingTemplateResponse {
10660
10664
  /**
10661
10665
  * 自适应转码模板唯一标识。
10662
10666
  */
10663
- Definition: number;
10667
+ Definition?: number;
10664
10668
  /**
10665
10669
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10666
10670
  */
@@ -10901,27 +10905,27 @@ export interface AiReviewPornOcrTaskOutput {
10901
10905
  /**
10902
10906
  * Ocr 文字涉及令人反感的信息的评分,分值为0到100。
10903
10907
  */
10904
- Confidence: number;
10908
+ Confidence?: number;
10905
10909
  /**
10906
10910
  * Ocr 文字涉及令人反感的信息的结果建议,取值范围:
10907
10911
  <li>pass。</li>
10908
10912
  <li>review。</li>
10909
10913
  <li>block。</li>
10910
10914
  */
10911
- Suggestion: string;
10915
+ Suggestion?: string;
10912
10916
  /**
10913
10917
  * Ocr 文字有涉及令人反感的信息的嫌疑的视频片段列表。
10914
10918
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
10915
10919
  */
10916
- SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
10920
+ SegmentSet?: Array<MediaContentReviewOcrTextSegmentItem>;
10917
10921
  /**
10918
10922
  * Ocr 文字有涉及令人反感的信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
10919
10923
  */
10920
- SegmentSetFileUrl: string;
10924
+ SegmentSetFileUrl?: string;
10921
10925
  /**
10922
10926
  * Ocr 文字有涉及令人反感的信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
10923
10927
  */
10924
- SegmentSetFileUrlExpireTime: string;
10928
+ SegmentSetFileUrlExpireTime?: string;
10925
10929
  }
10926
10930
  /**
10927
10931
  * ApplyUpload请求参数结构体
@@ -10980,7 +10984,7 @@ export interface CreateSampleSnapshotTemplateResponse {
10980
10984
  /**
10981
10985
  * 采样截图模板唯一标识。
10982
10986
  */
10983
- Definition: number;
10987
+ Definition?: number;
10984
10988
  /**
10985
10989
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10986
10990
  */
@@ -11484,31 +11488,31 @@ export interface AiReviewTaskPoliticalAsrResult {
11484
11488
  /**
11485
11489
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
11486
11490
  */
11487
- Status: string;
11491
+ Status?: string;
11488
11492
  /**
11489
11493
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
11490
11494
  */
11491
- ErrCodeExt: string;
11495
+ ErrCodeExt?: string;
11492
11496
  /**
11493
11497
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
11494
11498
  */
11495
- ErrCode: number;
11499
+ ErrCode?: number;
11496
11500
  /**
11497
11501
  * 错误信息。
11498
11502
  */
11499
- Message: string;
11503
+ Message?: string;
11500
11504
  /**
11501
11505
  * 音视频审核 Asr 文字涉及令人不适宜信息的任务输入。
11502
11506
  */
11503
- Input: AiReviewPoliticalAsrTaskInput;
11507
+ Input?: AiReviewPoliticalAsrTaskInput;
11504
11508
  /**
11505
11509
  * 音视频审核 Asr 文字涉及令人不适宜信息的任务输出。
11506
11510
  */
11507
- Output: AiReviewPoliticalAsrTaskOutput;
11511
+ Output?: AiReviewPoliticalAsrTaskOutput;
11508
11512
  /**
11509
11513
  * 音视频审核 Asr 文字涉及令人不适宜信息的任务进度,取值范围 [0-100] 。
11510
11514
  */
11511
- Progress: number;
11515
+ Progress?: number;
11512
11516
  }
11513
11517
  /**
11514
11518
  * 获取文件属性任务输出
@@ -11700,32 +11704,32 @@ export interface AiReviewTaskPornResult {
11700
11704
  /**
11701
11705
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
11702
11706
  */
11703
- Status: string;
11707
+ Status?: string;
11704
11708
  /**
11705
11709
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
11706
11710
  */
11707
- ErrCodeExt: string;
11711
+ ErrCodeExt?: string;
11708
11712
  /**
11709
11713
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
11710
11714
  */
11711
- ErrCode: number;
11715
+ ErrCode?: number;
11712
11716
  /**
11713
11717
  * 错误信息。
11714
11718
  */
11715
- Message: string;
11719
+ Message?: string;
11716
11720
  /**
11717
11721
  * 音视频审核涉及令人反感的信息的任务输入。
11718
11722
  */
11719
- Input: AiReviewPornTaskInput;
11723
+ Input?: AiReviewPornTaskInput;
11720
11724
  /**
11721
11725
  * 音视频审核涉及令人反感的信息的任务输出。
11722
11726
  注意:此字段可能返回 null,表示取不到有效值。
11723
11727
  */
11724
- Output: AiReviewPornTaskOutput;
11728
+ Output?: AiReviewPornTaskOutput;
11725
11729
  /**
11726
11730
  * 音视频审核涉及令人反感的信息的任务进度,取值范围 [0-100] 。
11727
11731
  */
11728
- Progress: number;
11732
+ Progress?: number;
11729
11733
  }
11730
11734
  /**
11731
11735
  * 智能物体识别输出。
@@ -11780,27 +11784,27 @@ export interface AiReviewProhibitedAsrTaskOutput {
11780
11784
  /**
11781
11785
  * Asr 文字涉违禁评分,分值为0到100。
11782
11786
  */
11783
- Confidence: number;
11787
+ Confidence?: number;
11784
11788
  /**
11785
11789
  * Asr 文字涉违禁结果建议,取值范围:
11786
11790
  <li>pass。</li>
11787
11791
  <li>review。</li>
11788
11792
  <li>block。</li>
11789
11793
  */
11790
- Suggestion: string;
11794
+ Suggestion?: string;
11791
11795
  /**
11792
11796
  * Asr 文字有涉违禁嫌疑的视频片段列表。
11793
11797
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
11794
11798
  */
11795
- SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>;
11799
+ SegmentSet?: Array<MediaContentReviewAsrTextSegmentItem>;
11796
11800
  /**
11797
11801
  * Asr 文字有涉违禁嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
11798
11802
  */
11799
- SegmentSetFileUrl: string;
11803
+ SegmentSetFileUrl?: string;
11800
11804
  /**
11801
11805
  * Asr 文字有涉违禁嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
11802
11806
  */
11803
- SegmentSetFileUrlExpireTime: string;
11807
+ SegmentSetFileUrlExpireTime?: string;
11804
11808
  }
11805
11809
  /**
11806
11810
  * CreateClass返回参数结构体
@@ -12332,7 +12336,7 @@ export interface DescribeImageReviewUsageDataResponse {
12332
12336
  /**
12333
12337
  * 图片审核次数统计数据,展示查询时间范围内的图片审核次数的概览数据。
12334
12338
  */
12335
- ImageReviewUsageDataSet: Array<ImageReviewUsageDataItem>;
12339
+ ImageReviewUsageDataSet?: Array<ImageReviewUsageDataItem>;
12336
12340
  /**
12337
12341
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12338
12342
  */
@@ -12439,7 +12443,7 @@ export interface DescribePrepaidProductsResponse {
12439
12443
  /**
12440
12444
  * 购买的预付费商品实例列表。
12441
12445
  */
12442
- ProductInstanceSet: Array<ProductInstance>;
12446
+ ProductInstanceSet?: Array<ProductInstance>;
12443
12447
  /**
12444
12448
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12445
12449
  */
@@ -12484,7 +12488,7 @@ export interface CreateAIAnalysisTemplateResponse {
12484
12488
  /**
12485
12489
  * 音视频内容分析模板唯一标识。
12486
12490
  */
12487
- Definition: number;
12491
+ Definition?: number;
12488
12492
  /**
12489
12493
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12490
12494
  */
@@ -12699,27 +12703,27 @@ export interface AiReviewPoliticalAsrTaskOutput {
12699
12703
  /**
12700
12704
  * Asr 文字涉及令人不适宜的信息、违规评分,分值为0到100。
12701
12705
  */
12702
- Confidence: number;
12706
+ Confidence?: number;
12703
12707
  /**
12704
12708
  * Asr 文字涉及令人不适宜的信息、违规结果建议,取值范围:
12705
12709
  <li>pass。</li>
12706
12710
  <li>review。</li>
12707
12711
  <li>block。</li>
12708
12712
  */
12709
- Suggestion: string;
12713
+ Suggestion?: string;
12710
12714
  /**
12711
12715
  * Asr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表。
12712
12716
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
12713
12717
  */
12714
- SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>;
12718
+ SegmentSet?: Array<MediaContentReviewAsrTextSegmentItem>;
12715
12719
  /**
12716
12720
  * Asr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
12717
12721
  */
12718
- SegmentSetFileUrl: string;
12722
+ SegmentSetFileUrl?: string;
12719
12723
  /**
12720
12724
  * Asr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
12721
12725
  */
12722
- SegmentSetFileUrlExpireTime: string;
12726
+ SegmentSetFileUrlExpireTime?: string;
12723
12727
  }
12724
12728
  /**
12725
12729
  * 输出的音频流信息
@@ -13019,7 +13023,7 @@ export interface DescribeDrmKeyProviderInfoResponse {
13019
13023
  * 华曦达(SDMC)相关的 DRM 密钥提供商信息。
13020
13024
  注意:此字段可能返回 null,表示取不到有效值。
13021
13025
  */
13022
- SDMCInfo: SDMCDrmKeyProviderInfo;
13026
+ SDMCInfo?: SDMCDrmKeyProviderInfo;
13023
13027
  /**
13024
13028
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13025
13029
  */
@@ -13166,14 +13170,14 @@ export interface AiReviewPornTaskOutput {
13166
13170
  /**
13167
13171
  * 视频鉴别涉及令人反感的信息的评分,分值为0到100。
13168
13172
  */
13169
- Confidence: number;
13173
+ Confidence?: number;
13170
13174
  /**
13171
13175
  * 鉴别涉及令人反感的信息的结果建议,取值范围:
13172
13176
  <li>pass。</li>
13173
13177
  <li>review。</li>
13174
13178
  <li>block。</li>
13175
13179
  */
13176
- Suggestion: string;
13180
+ Suggestion?: string;
13177
13181
  /**
13178
13182
  * 视频鉴别涉及令人反感的信息的结果标签,取值范围:
13179
13183
  <li>porn:色情。</li>
@@ -13181,20 +13185,20 @@ export interface AiReviewPornTaskOutput {
13181
13185
  <li>vulgar:低俗。</li>
13182
13186
  <li>intimacy:亲密行为。</li>
13183
13187
  */
13184
- Label: string;
13188
+ Label?: string;
13185
13189
  /**
13186
13190
  * 有涉及令人反感的信息的嫌疑的视频片段列表。
13187
13191
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
13188
13192
  */
13189
- SegmentSet: Array<MediaContentReviewSegmentItem>;
13193
+ SegmentSet?: Array<MediaContentReviewSegmentItem>;
13190
13194
  /**
13191
13195
  * 涉及令人反感的信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
13192
13196
  */
13193
- SegmentSetFileUrl: string;
13197
+ SegmentSetFileUrl?: string;
13194
13198
  /**
13195
13199
  * 涉及令人反感的信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
13196
13200
  */
13197
- SegmentSetFileUrlExpireTime: string;
13201
+ SegmentSetFileUrlExpireTime?: string;
13198
13202
  }
13199
13203
  /**
13200
13204
  * 华曦达(SDMC)相关的 DRM 密钥提供商信息。
@@ -14542,7 +14546,7 @@ export interface ModifyEnhanceMediaTemplateRequest {
14542
14546
  */
14543
14547
  export interface RebuildMediaResponse {
14544
14548
  /**
14545
- * 视频重生的任务 ID,可以通过该 ID 查询视频重生任务的状态。
14549
+ * 音画质重生的任务 ID,可以通过该 ID 查询音画质重生任务的状态。
14546
14550
  */
14547
14551
  TaskId?: string;
14548
14552
  /**
@@ -14789,14 +14793,14 @@ export interface AiReviewPoliticalTaskOutput {
14789
14793
  /**
14790
14794
  * 视频涉及令人不适宜信息的评分,分值为0到100。
14791
14795
  */
14792
- Confidence: number;
14796
+ Confidence?: number;
14793
14797
  /**
14794
14798
  * 涉及令人不适宜信息的结果建议,取值范围:
14795
14799
  <li>pass。</li>
14796
14800
  <li>review。</li>
14797
14801
  <li>block。</li>
14798
14802
  */
14799
- Suggestion: string;
14803
+ Suggestion?: string;
14800
14804
  /**
14801
14805
  * 视频涉及令人不适宜信息的结果标签。音视频审核模板[画面鉴政任务控制参数](https://cloud.tencent.com/document/api/266/31773#PoliticalImgReviewTemplateInfo)里 LabelSet 参数与此参数取值范围的对应关系:
14802
14806
  violation_photo:
@@ -14804,20 +14808,20 @@ export interface AiReviewPoliticalTaskOutput {
14804
14808
  其他(即 politician/entertainment/sport/entrepreneur/scholar/celebrity/military):
14805
14809
  <li>politician:相关人物。</li>
14806
14810
  */
14807
- Label: string;
14811
+ Label?: string;
14808
14812
  /**
14809
14813
  * 有涉及令人不适宜信息嫌疑的视频片段列表。
14810
14814
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
14811
14815
  */
14812
- SegmentSet: Array<MediaContentReviewPoliticalSegmentItem>;
14816
+ SegmentSet?: Array<MediaContentReviewPoliticalSegmentItem>;
14813
14817
  /**
14814
14818
  * 有涉及令人不适宜的信息嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
14815
14819
  */
14816
- SegmentSetFileUrl: string;
14820
+ SegmentSetFileUrl?: string;
14817
14821
  /**
14818
14822
  * 有涉及令人不适宜的信息嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
14819
14823
  */
14820
- SegmentSetFileUrlExpireTime: string;
14824
+ SegmentSetFileUrlExpireTime?: string;
14821
14825
  }
14822
14826
  /**
14823
14827
  * 音视频审核涉及令人不适宜信息的任务结果类型
@@ -14826,32 +14830,32 @@ export interface AiReviewTaskPoliticalResult {
14826
14830
  /**
14827
14831
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
14828
14832
  */
14829
- Status: string;
14833
+ Status?: string;
14830
14834
  /**
14831
14835
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
14832
14836
  */
14833
- ErrCodeExt: string;
14837
+ ErrCodeExt?: string;
14834
14838
  /**
14835
14839
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
14836
14840
  */
14837
- ErrCode: number;
14841
+ ErrCode?: number;
14838
14842
  /**
14839
14843
  * 错误信息。
14840
14844
  */
14841
- Message: string;
14845
+ Message?: string;
14842
14846
  /**
14843
14847
  * 音视频审核涉及令人不适宜信息的任务输入。
14844
14848
  */
14845
- Input: AiReviewPoliticalTaskInput;
14849
+ Input?: AiReviewPoliticalTaskInput;
14846
14850
  /**
14847
14851
  * 音视频审核涉及令人不适宜信息的任务输出。
14848
14852
  注意:此字段可能返回 null,表示取不到有效值。
14849
14853
  */
14850
- Output: AiReviewPoliticalTaskOutput;
14854
+ Output?: AiReviewPoliticalTaskOutput;
14851
14855
  /**
14852
14856
  * 音视频审核涉及令人不适宜信息的任务进度,取值范围 [0-100] 。
14853
14857
  */
14854
- Progress: number;
14858
+ Progress?: number;
14855
14859
  }
14856
14860
  /**
14857
14861
  * ModifySubAppIdStatus返回参数结构体
@@ -14960,89 +14964,89 @@ export interface ProcedureTask {
14960
14964
  /**
14961
14965
  * 音视频处理任务 ID。
14962
14966
  */
14963
- TaskId: string;
14967
+ TaskId?: string;
14964
14968
  /**
14965
14969
  * 任务流状态,取值:
14966
14970
  <li>PROCESSING:处理中;</li>
14967
14971
  <li>FINISH:已完成。</li>
14968
14972
  */
14969
- Status: string;
14973
+ Status?: string;
14970
14974
  /**
14971
14975
  * 已弃用,请使用各个具体任务的 ErrCode。
14972
14976
  */
14973
- ErrCode: number;
14977
+ ErrCode?: number;
14974
14978
  /**
14975
14979
  * 已弃用,请使用各个具体任务的 Message。
14976
14980
  */
14977
- Message: string;
14981
+ Message?: string;
14978
14982
  /**
14979
14983
  * 媒体文件 ID
14980
14984
  <li>若流程由 [ProcessMedia](https://cloud.tencent.com/document/product/266/33427) 发起,该字段表示 [MediaInfo](https://cloud.tencent.com/document/product/266/31773#MediaInfo) 的 FileId;</li>
14981
14985
  <li>若流程由 [ProcessMediaByUrl](https://cloud.tencent.com/document/product/266/33426) 发起,该字段表示 [MediaInputInfo](https://cloud.tencent.com/document/product/266/31773#MediaInputInfo) 的 Id。</li>
14982
14986
  */
14983
- FileId: string;
14987
+ FileId?: string;
14984
14988
  /**
14985
14989
  * 媒体文件名称
14986
14990
  <li>若流程由 [ProcessMedia](https://cloud.tencent.com/document/product/266/33427) 发起,该字段表示 [MediaInfo](https://cloud.tencent.com/document/product/266/31773#MediaInfo) 的 BasicInfo.Name;</li>
14987
14991
  <li>若流程由 [ProcessMediaByUrl](https://cloud.tencent.com/document/product/266/33426) 发起,该字段表示 [MediaInputInfo](https://cloud.tencent.com/document/product/266/31773#MediaInputInfo) 的 Name。</li>
14988
14992
  */
14989
- FileName: string;
14993
+ FileName?: string;
14990
14994
  /**
14991
14995
  * 媒体文件地址
14992
14996
  <li>若流程由 [ProcessMedia](https://cloud.tencent.com/document/product/266/33427) 发起,该字段表示 [MediaInfo](https://cloud.tencent.com/document/product/266/31773#MediaInfo) 的 BasicInfo.MediaUrl;</li>
14993
14997
  <li>若流程由 [ProcessMediaByUrl](https://cloud.tencent.com/document/product/266/33426) 发起,该字段表示 [MediaInputInfo](https://cloud.tencent.com/document/product/266/31773#MediaInputInfo) 的 Url。</li>
14994
14998
  */
14995
- FileUrl: string;
14999
+ FileUrl?: string;
14996
15000
  /**
14997
15001
  * 原始音视频的元信息。
14998
15002
  注意:此字段可能返回 null,表示取不到有效值。
14999
15003
  */
15000
- MetaData: MediaMetaData;
15004
+ MetaData?: MediaMetaData;
15001
15005
  /**
15002
15006
  * 音视频处理任务的执行状态与结果。
15003
15007
  */
15004
- MediaProcessResultSet: Array<MediaProcessTaskResult>;
15008
+ MediaProcessResultSet?: Array<MediaProcessTaskResult>;
15005
15009
  /**
15006
15010
  * 音视频审核任务的执行状态与结果。
15007
15011
  */
15008
- AiContentReviewResultSet: Array<AiContentReviewResult>;
15012
+ AiContentReviewResultSet?: Array<AiContentReviewResult>;
15009
15013
  /**
15010
15014
  * 音视频内容分析任务的执行状态与结果。
15011
15015
  */
15012
- AiAnalysisResultSet: Array<AiAnalysisResult>;
15016
+ AiAnalysisResultSet?: Array<AiAnalysisResult>;
15013
15017
  /**
15014
15018
  * 音视频内容识别任务的执行状态与结果。
15015
15019
  */
15016
- AiRecognitionResultSet: Array<AiRecognitionResult>;
15020
+ AiRecognitionResultSet?: Array<AiRecognitionResult>;
15017
15021
  /**
15018
15022
  * 任务流的优先级,取值范围为 [-10, 10]。
15019
15023
  */
15020
- TasksPriority: number;
15024
+ TasksPriority?: number;
15021
15025
  /**
15022
15026
  * 任务流状态变更通知模式。
15023
15027
  <li>Finish:只有当任务流全部执行完毕时,才发起一次事件通知;</li>
15024
15028
  <li>Change:只要任务流中每个子任务的状态发生变化,都进行事件通知;</li>
15025
15029
  <li>None:不接受该任务流回调。</li>
15026
15030
  */
15027
- TasksNotifyMode: string;
15031
+ TasksNotifyMode?: string;
15028
15032
  /**
15029
15033
  * 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
15030
15034
  */
15031
- SessionContext: string;
15035
+ SessionContext?: string;
15032
15036
  /**
15033
15037
  * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
15034
15038
  */
15035
- SessionId: string;
15039
+ SessionId?: string;
15036
15040
  /**
15037
15041
  * 操作者。取值范围:
15038
15042
  <li>System: 表示系统触发。</li>
15039
15043
  */
15040
- Operator: string;
15044
+ Operator?: string;
15041
15045
  /**
15042
15046
  * 操作类型。取值范围:
15043
15047
  <li>TSC: 表示使用极速高清进行智能降码。</li>
15044
15048
  */
15045
- OperationType: string;
15049
+ OperationType?: string;
15046
15050
  }
15047
15051
  /**
15048
15052
  * ExtractTraceWatermark请求参数结构体
@@ -15911,57 +15915,57 @@ export interface AiContentReviewResult {
15911
15915
  <li>Prohibited.Asr:Asr 文字( 音频中的文字)鉴违禁</li>
15912
15916
  <li>Prohibited.Ocr:Ocr 文字鉴违禁</li>
15913
15917
  */
15914
- Type: string;
15918
+ Type?: string;
15915
15919
  /**
15916
15920
  * 视频音视频审核任务(画面涉及令人反感的信息)的查询结果,当任务类型为 Porn 时有效。
15917
15921
  注意:此字段可能返回 null,表示取不到有效值。
15918
15922
  */
15919
- PornTask: AiReviewTaskPornResult;
15923
+ PornTask?: AiReviewTaskPornResult;
15920
15924
  /**
15921
15925
  * 视频音视频审核任务(画面涉及令人不安全的信息)的查询结果,当任务类型为 Terrorism 时有效。
15922
15926
  注意:此字段可能返回 null,表示取不到有效值。
15923
15927
  */
15924
- TerrorismTask: AiReviewTaskTerrorismResult;
15928
+ TerrorismTask?: AiReviewTaskTerrorismResult;
15925
15929
  /**
15926
15930
  * 视频音视频审核任务(画面涉及令人不适宜的信息)的查询结果,当任务类型为 Political 时有效。
15927
15931
  注意:此字段可能返回 null,表示取不到有效值。
15928
15932
  */
15929
- PoliticalTask: AiReviewTaskPoliticalResult;
15933
+ PoliticalTask?: AiReviewTaskPoliticalResult;
15930
15934
  /**
15931
15935
  * 视频音视频审核任务(Asr 文字涉及令人反感的信息)的查询结果,当任务类型为 Porn.Asr 时有效。
15932
15936
  注意:此字段可能返回 null,表示取不到有效值。
15933
15937
  */
15934
- PornAsrTask: AiReviewTaskPornAsrResult;
15938
+ PornAsrTask?: AiReviewTaskPornAsrResult;
15935
15939
  /**
15936
15940
  * 视频音视频审核任务(Ocr 文字涉及令人反感的信息)的查询结果,当任务类型为 Porn.Ocr 时有效。
15937
15941
  注意:此字段可能返回 null,表示取不到有效值。
15938
15942
  */
15939
- PornOcrTask: AiReviewTaskPornOcrResult;
15943
+ PornOcrTask?: AiReviewTaskPornOcrResult;
15940
15944
  /**
15941
15945
  * 视频音视频审核任务(Asr 文字涉及令人不适宜的信息)的查询结果,当任务类型为 Political.Asr 时有效。
15942
15946
  注意:此字段可能返回 null,表示取不到有效值。
15943
15947
  */
15944
- PoliticalAsrTask: AiReviewTaskPoliticalAsrResult;
15948
+ PoliticalAsrTask?: AiReviewTaskPoliticalAsrResult;
15945
15949
  /**
15946
15950
  * 视频音视频审核任务(Ocr 文字涉及令人不适宜的信息)的查询结果,当任务类型为 Political.Ocr 时有效。
15947
15951
  注意:此字段可能返回 null,表示取不到有效值。
15948
15952
  */
15949
- PoliticalOcrTask: AiReviewTaskPoliticalOcrResult;
15953
+ PoliticalOcrTask?: AiReviewTaskPoliticalOcrResult;
15950
15954
  /**
15951
15955
  * 视频音视频审核任务( Ocr 文字涉及令人不安全的信息)的查询结果,当任务类型为 Terrorism.Ocr 时有效。
15952
15956
  注意:此字段可能返回 null,表示取不到有效值。
15953
15957
  */
15954
- TerrorismOcrTask: AiReviewTaskTerrorismOcrResult;
15958
+ TerrorismOcrTask?: AiReviewTaskTerrorismOcrResult;
15955
15959
  /**
15956
15960
  * 视频音视频审核 Ocr 文字鉴违禁任务的查询结果,当任务类型为 Prohibited.Ocr 时有效。
15957
15961
  注意:此字段可能返回 null,表示取不到有效值。
15958
15962
  */
15959
- ProhibitedOcrTask: AiReviewTaskProhibitedOcrResult;
15963
+ ProhibitedOcrTask?: AiReviewTaskProhibitedOcrResult;
15960
15964
  /**
15961
15965
  * 视频音视频审核 Asr 文字鉴违禁任务的查询结果,当任务类型为 Prohibited.Asr 时有效。
15962
15966
  注意:此字段可能返回 null,表示取不到有效值。
15963
15967
  */
15964
- ProhibitedAsrTask: AiReviewTaskProhibitedAsrResult;
15968
+ ProhibitedAsrTask?: AiReviewTaskProhibitedAsrResult;
15965
15969
  }
15966
15970
  /**
15967
15971
  * 画面鉴别涉及令人不安全的信息的任务控制参数
@@ -16002,27 +16006,27 @@ export interface ApplyUploadResponse {
16002
16006
  /**
16003
16007
  * 存储桶,用于上传接口 URL 的 bucket_name。
16004
16008
  */
16005
- StorageBucket: string;
16009
+ StorageBucket?: string;
16006
16010
  /**
16007
16011
  * 存储园区,用于上传接口 Host 的 Region。
16008
16012
  */
16009
- StorageRegion: string;
16013
+ StorageRegion?: string;
16010
16014
  /**
16011
16015
  * 点播会话,用于确认上传接口的参数 VodSessionKey。
16012
16016
  */
16013
- VodSessionKey: string;
16017
+ VodSessionKey?: string;
16014
16018
  /**
16015
16019
  * 媒体存储路径,用于上传接口存储媒体的对象键(Key)。
16016
16020
  */
16017
- MediaStoragePath: string;
16021
+ MediaStoragePath?: string;
16018
16022
  /**
16019
16023
  * 封面存储路径,用于上传接口存储封面的对象键(Key)。
16020
16024
  */
16021
- CoverStoragePath: string;
16025
+ CoverStoragePath?: string;
16022
16026
  /**
16023
16027
  * 临时凭证,用于上传接口的权限验证。
16024
16028
  */
16025
- TempCertificate: TempCertificate;
16029
+ TempCertificate?: TempCertificate;
16026
16030
  /**
16027
16031
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
16028
16032
  */
@@ -16566,12 +16570,12 @@ export interface ModifyPersonSampleResponse {
16566
16570
  /**
16567
16571
  * 素材信息。
16568
16572
  */
16569
- Person: AiSamplePerson;
16573
+ Person?: AiSamplePerson;
16570
16574
  /**
16571
16575
  * 处理失败的五官信息。
16572
16576
  注意:此字段可能返回 null,表示取不到有效值。
16573
16577
  */
16574
- FailFaceInfoSet: Array<AiSampleFailFaceInfo>;
16578
+ FailFaceInfoSet?: Array<AiSampleFailFaceInfo>;
16575
16579
  /**
16576
16580
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
16577
16581
  */
@@ -16767,11 +16771,11 @@ export interface DescribePersonSamplesResponse {
16767
16771
  /**
16768
16772
  * 符合条件的记录总数。
16769
16773
  */
16770
- TotalCount: number;
16774
+ TotalCount?: number;
16771
16775
  /**
16772
16776
  * 人物信息。
16773
16777
  */
16774
- PersonSet: Array<AiSamplePerson>;
16778
+ PersonSet?: Array<AiSamplePerson>;
16775
16779
  /**
16776
16780
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
16777
16781
  */
@@ -16865,7 +16869,7 @@ export interface SplitMediaResponse {
16865
16869
  /**
16866
16870
  * 视频拆条的任务 ID,可以通过该 ID 查询拆条任务(任务类型为 SplitMedia)的状态。
16867
16871
  */
16868
- TaskId: string;
16872
+ TaskId?: string;
16869
16873
  /**
16870
16874
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
16871
16875
  */
@@ -16879,6 +16883,10 @@ export interface RestoreMediaRequest {
16879
16883
  * 媒体文件唯一标识列表,最大长度:100。
16880
16884
  */
16881
16885
  FileIds: Array<string>;
16886
+ /**
16887
+ * 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
16888
+ */
16889
+ SubAppId?: number;
16882
16890
  /**
16883
16891
  * 解冻出的临时媒体文件的可访问持续时长,必须大于0,单位为“天”。
16884
16892
  */
@@ -16893,10 +16901,6 @@ export interface RestoreMediaRequest {
16893
16901
  <li>批量模式:Bulk,解冻任务在48小时后完成。</li>
16894
16902
  */
16895
16903
  RestoreTier?: string;
16896
- /**
16897
- * 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
16898
- */
16899
- SubAppId?: number;
16900
16904
  }
16901
16905
  /**
16902
16906
  * PullEvents请求参数结构体
@@ -16918,32 +16922,32 @@ export interface AiRecognitionTaskObjectResult {
16918
16922
  /**
16919
16923
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
16920
16924
  */
16921
- Status: string;
16925
+ Status?: string;
16922
16926
  /**
16923
16927
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
16924
16928
  */
16925
- ErrCodeExt: string;
16929
+ ErrCodeExt?: string;
16926
16930
  /**
16927
16931
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
16928
16932
  */
16929
- ErrCode: number;
16933
+ ErrCode?: number;
16930
16934
  /**
16931
16935
  * 错误信息。
16932
16936
  */
16933
- Message: string;
16937
+ Message?: string;
16934
16938
  /**
16935
16939
  * 物体识别任务输入信息。
16936
16940
  */
16937
- Input: AiRecognitionTaskObjectResultInput;
16941
+ Input?: AiRecognitionTaskObjectResultInput;
16938
16942
  /**
16939
16943
  * 物体识别任务输出信息。
16940
16944
  注意:此字段可能返回 null,表示取不到有效值。
16941
16945
  */
16942
- Output: AiRecognitionTaskObjectResultOutput;
16946
+ Output?: AiRecognitionTaskObjectResultOutput;
16943
16947
  /**
16944
16948
  * 物体识别任务进度,取值范围 [0-100] 。
16945
16949
  */
16946
- Progress: number;
16950
+ Progress?: number;
16947
16951
  /**
16948
16952
  * 物体识别任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
16949
16953
  */
@@ -17427,32 +17431,32 @@ export interface AiReviewTaskPornAsrResult {
17427
17431
  /**
17428
17432
  * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
17429
17433
  */
17430
- Status: string;
17434
+ Status?: string;
17431
17435
  /**
17432
17436
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
17433
17437
  */
17434
- ErrCodeExt: string;
17438
+ ErrCodeExt?: string;
17435
17439
  /**
17436
17440
  * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
17437
17441
  */
17438
- ErrCode: number;
17442
+ ErrCode?: number;
17439
17443
  /**
17440
17444
  * 错误信息。
17441
17445
  */
17442
- Message: string;
17446
+ Message?: string;
17443
17447
  /**
17444
17448
  * 音视频审核 Asr 文字涉及令人反感的信息的任务输入。
17445
17449
  */
17446
- Input: AiReviewPornAsrTaskInput;
17450
+ Input?: AiReviewPornAsrTaskInput;
17447
17451
  /**
17448
17452
  * 音视频审核 Asr 文字涉及令人反感的信息的任务输出。
17449
17453
  注意:此字段可能返回 null,表示取不到有效值。
17450
17454
  */
17451
- Output: AiReviewPornAsrTaskOutput;
17455
+ Output?: AiReviewPornAsrTaskOutput;
17452
17456
  /**
17453
17457
  * 音视频审核 Asr 文字涉及令人反感的信息的任务进度,取值范围 [0-100] 。
17454
17458
  */
17455
- Progress: number;
17459
+ Progress?: number;
17456
17460
  }
17457
17461
  /**
17458
17462
  * 资源包中包含的资源。
@@ -17661,11 +17665,11 @@ export interface CreateWatermarkTemplateResponse {
17661
17665
  /**
17662
17666
  * 水印模板唯一标识。
17663
17667
  */
17664
- Definition: number;
17668
+ Definition?: number;
17665
17669
  /**
17666
17670
  * 水印图片地址,仅当 Type 为 image,该字段有效。
17667
17671
  */
17668
- ImageUrl: string;
17672
+ ImageUrl?: string;
17669
17673
  /**
17670
17674
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
17671
17675
  */
@@ -17790,27 +17794,27 @@ export interface AiReviewPoliticalOcrTaskOutput {
17790
17794
  /**
17791
17795
  * Ocr 文字涉及令人不适宜的信息、违规评分,分值为0到100。
17792
17796
  */
17793
- Confidence: number;
17797
+ Confidence?: number;
17794
17798
  /**
17795
17799
  * Ocr 文字涉及令人不适宜的信息、违规结果建议,取值范围:
17796
17800
  <li>pass。</li>
17797
17801
  <li>review。</li>
17798
17802
  <li>block。</li>
17799
17803
  */
17800
- Suggestion: string;
17804
+ Suggestion?: string;
17801
17805
  /**
17802
17806
  * Ocr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表。
17803
17807
  <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
17804
17808
  */
17805
- SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
17809
+ SegmentSet?: Array<MediaContentReviewOcrTextSegmentItem>;
17806
17810
  /**
17807
17811
  * Ocr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
17808
17812
  */
17809
- SegmentSetFileUrl: string;
17813
+ SegmentSetFileUrl?: string;
17810
17814
  /**
17811
17815
  * Ocr 文字有涉及令人不适宜的信息、违规嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
17812
17816
  */
17813
- SegmentSetFileUrlExpireTime: string;
17817
+ SegmentSetFileUrlExpireTime?: string;
17814
17818
  }
17815
17819
  /**
17816
17820
  * 文本全文本识别任务控制参数
@@ -18320,7 +18324,7 @@ export interface CreateAnimatedGraphicsTemplateResponse {
18320
18324
  /**
18321
18325
  * 转动图模板唯一标识。
18322
18326
  */
18323
- Definition: number;
18327
+ Definition?: number;
18324
18328
  /**
18325
18329
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
18326
18330
  */
@@ -18984,7 +18988,7 @@ export interface CreateImageSpriteTemplateResponse {
18984
18988
  /**
18985
18989
  * 雪碧图模板唯一标识。
18986
18990
  */
18987
- Definition: number;
18991
+ Definition?: number;
18988
18992
  /**
18989
18993
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
18990
18994
  */