tencentcloud-sdk-nodejs-vod 4.0.685 → 4.0.686

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.
@@ -368,6 +368,12 @@ class Client extends TencentCloudCommon.AbstractClient {
368
368
  async DescribePrepaidProducts(req, cb) {
369
369
  return this.request("DescribePrepaidProducts", req, cb);
370
370
  }
371
+ /**
372
+ * 该接口用于生成一条子域名解析,提示客户添加到域名解析上,用于泛域名及域名取回校验归属权。
373
+ */
374
+ async CreateDomainVerifyRecord(req, cb) {
375
+ return this.request("CreateDomainVerifyRecord", req, cb);
376
+ }
371
377
  /**
372
378
  * 查询指定时间点截图模板,支持根据条件,分页查询。
373
379
  */
@@ -700,6 +706,12 @@ class Client extends TencentCloudCommon.AbstractClient {
700
706
  async ModifyQualityInspectTemplate(req, cb) {
701
707
  return this.request("ModifyQualityInspectTemplate", req, cb);
702
708
  }
709
+ /**
710
+ * 该接口用于验证域名解析值。
711
+ */
712
+ async VerifyDomainRecord(req, cb) {
713
+ return this.request("VerifyDomainRecord", req, cb);
714
+ }
703
715
  /**
704
716
  * 该 API 已经<font color='red'>不再维护</font>,新版播放器签名不再使用播放器配置模板,详细请参考 [播放器签名](https://cloud.tencent.com/document/product/266/45554)。
705
717
  创建播放器配置,数量上限:100。
@@ -753,6 +765,12 @@ class Client extends TencentCloudCommon.AbstractClient {
753
765
  async ModifyHeadTailTemplate(req, cb) {
754
766
  return this.request("ModifyHeadTailTemplate", req, cb);
755
767
  }
768
+ /**
769
+ * 控制台验证域名归属
770
+ */
771
+ async VerifyDomainOwnershipForConsole(req, cb) {
772
+ return this.request("VerifyDomainOwnershipForConsole", req, cb);
773
+ }
756
774
  /**
757
775
  * 删除用户自定义图片处理模板。
758
776
  */
@@ -1433,6 +1433,19 @@ export interface AiReviewPoliticalTaskInput {
1433
1433
  */
1434
1434
  Definition: number;
1435
1435
  }
1436
+ /**
1437
+ * VerifyDomainRecord返回参数结构体
1438
+ */
1439
+ export interface VerifyDomainRecordResponse {
1440
+ /**
1441
+ * 是否验证成功。
1442
+ */
1443
+ Result?: boolean;
1444
+ /**
1445
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1446
+ */
1447
+ RequestId?: string;
1448
+ }
1436
1449
  /**
1437
1450
  * 音频操作
1438
1451
  */
@@ -1829,6 +1842,32 @@ export interface AiRecognitionTaskAsrWordsSegmentItem {
1829
1842
  */
1830
1843
  Confidence: number;
1831
1844
  }
1845
+ /**
1846
+ * 文字水印模板
1847
+ */
1848
+ export interface TextWatermarkTemplateInput {
1849
+ /**
1850
+ * 字体类型,目前可以支持两种:
1851
+ <li>simkai.ttf:可以支持中文和英文;</li>
1852
+ <li>arial.ttf:仅支持英文。</li>
1853
+ */
1854
+ FontType: string;
1855
+ /**
1856
+ * 字体大小,格式:Npx,N 为数值。
1857
+ */
1858
+ FontSize: string;
1859
+ /**
1860
+ * 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
1861
+ */
1862
+ FontColor: string;
1863
+ /**
1864
+ * 文字透明度,取值范围:(0, 1]
1865
+ <li>0:完全透明</li>
1866
+ <li>1:完全不透明</li>
1867
+ 默认值:1。
1868
+ */
1869
+ FontAlpha: number;
1870
+ }
1832
1871
  /**
1833
1872
  * 视频画面质量评价的控制参数。
1834
1873
  */
@@ -3549,30 +3588,54 @@ export interface ModifyQualityInspectTemplateResponse {
3549
3588
  RequestId?: string;
3550
3589
  }
3551
3590
  /**
3552
- * 文字水印模板
3591
+ * ModifyAdaptiveDynamicStreamingTemplate请求参数结构体
3553
3592
  */
3554
- export interface TextWatermarkTemplateInput {
3593
+ export interface ModifyAdaptiveDynamicStreamingTemplateRequest {
3555
3594
  /**
3556
- * 字体类型,目前可以支持两种:
3557
- <li>simkai.ttf:可以支持中文和英文;</li>
3558
- <li>arial.ttf:仅支持英文。</li>
3595
+ * 自适应转码模板唯一标识。
3559
3596
  */
3560
- FontType: string;
3597
+ Definition: number;
3561
3598
  /**
3562
- * 字体大小,格式:Npx,N 为数值。
3599
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
3563
3600
  */
3564
- FontSize: string;
3601
+ SubAppId?: number;
3565
3602
  /**
3566
- * 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
3603
+ * 模板名称,长度限制:64 个字符。
3567
3604
  */
3568
- FontColor: string;
3605
+ Name?: string;
3569
3606
  /**
3570
- * 文字透明度,取值范围:(0, 1]
3571
- <li>0:完全透明</li>
3572
- <li>1:完全不透明</li>
3573
- 默认值:1。
3607
+ * 自适应转码格式,取值范围:
3608
+ <li>HLS;</li>
3609
+ <li>MPEG-DASH。</li>
3574
3610
  */
3575
- FontAlpha: number;
3611
+ Format?: string;
3612
+ /**
3613
+ * 是否禁止视频低码率转高码率,取值范围:
3614
+ <li>0:否,</li>
3615
+ <li>1:是。</li>
3616
+ */
3617
+ DisableHigherVideoBitrate?: number;
3618
+ /**
3619
+ * 是否禁止视频分辨率转高分辨率,取值范围:
3620
+ <li>0:否,</li>
3621
+ <li>1:是。</li>
3622
+ */
3623
+ DisableHigherVideoResolution?: number;
3624
+ /**
3625
+ * 自适应转码输入流参数信息,最多输入10路流。
3626
+ 注意:各个流的帧率必须保持一致;如果不一致,采用第一个流的帧率作为输出帧率。
3627
+ */
3628
+ StreamInfos?: Array<AdaptiveStreamTemplate>;
3629
+ /**
3630
+ * 模板描述信息,长度限制:256 个字符。
3631
+ */
3632
+ Comment?: string;
3633
+ /**
3634
+ * 切片类型,当 Format 为 HLS 时有效,可选值:
3635
+ <li>ts:ts 切片;</li>
3636
+ <li>fmp4:fmp4 切片。</li>
3637
+ */
3638
+ SegmentType?: string;
3576
3639
  }
3577
3640
  /**
3578
3641
  * ForbidMediaDistribution请求参数结构体
@@ -5854,23 +5917,17 @@ export interface ModifyAnimatedGraphicsTemplateRequest {
5854
5917
  Comment?: string;
5855
5918
  }
5856
5919
  /**
5857
- * DescribeProcedureTemplates请求参数结构体
5920
+ * DescribeAIAnalysisTemplates请求参数结构体
5858
5921
  */
5859
- export interface DescribeProcedureTemplatesRequest {
5922
+ export interface DescribeAIAnalysisTemplatesRequest {
5860
5923
  /**
5861
5924
  * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
5862
5925
  */
5863
5926
  SubAppId?: number;
5864
5927
  /**
5865
- * 任务流模板名字过滤条件,数组长度限制:100。
5866
- */
5867
- Names?: Array<string>;
5868
- /**
5869
- * 任务流模板类型过滤条件,可选值:
5870
- <li>Preset:系统预置任务流模板;</li>
5871
- <li>Custom:用户自定义任务流模板。</li>
5928
+ * 音视频内容分析模板唯一标识过滤条件,数组长度最大值:100。
5872
5929
  */
5873
- Type?: string;
5930
+ Definitions?: Array<number | bigint>;
5874
5931
  /**
5875
5932
  * 分页偏移量,默认值:0。
5876
5933
  */
@@ -6050,6 +6107,56 @@ export interface DescribeDrmDataKeyResponse {
6050
6107
  */
6051
6108
  RequestId?: string;
6052
6109
  }
6110
+ /**
6111
+ * ProcessMedia请求参数结构体
6112
+ */
6113
+ export interface ProcessMediaRequest {
6114
+ /**
6115
+ * 媒体文件 ID,即该文件在云点播上的全局唯一标识符,在上传成功后由云点播后台分配。可以在 [视频上传完成事件通知](/document/product/266/7830) 或 [云点播控制台](https://console.cloud.tencent.com/vod/media) 获取该字段。
6116
+ */
6117
+ FileId: string;
6118
+ /**
6119
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6120
+ */
6121
+ SubAppId?: number;
6122
+ /**
6123
+ * 视频处理类型任务参数。
6124
+ */
6125
+ MediaProcessTask?: MediaProcessTaskInput;
6126
+ /**
6127
+ * 音视频内容审核类型任务参数 \*。
6128
+ <font color=red>\* 不建议使用</font>,推荐使用 [音视频审核(ReviewAudioVideo)](https://cloud.tencent.com/document/api/266/80283) 或 [图片审核(ReviewImage)](https://cloud.tencent.com/document/api/266/73217)。
6129
+ */
6130
+ AiContentReviewTask?: AiContentReviewTaskInput;
6131
+ /**
6132
+ * 音视频内容分析类型任务参数。
6133
+ */
6134
+ AiAnalysisTask?: AiAnalysisTaskInput;
6135
+ /**
6136
+ * 音视频内容识别类型任务参数。
6137
+ */
6138
+ AiRecognitionTask?: AiRecognitionTaskInput;
6139
+ /**
6140
+ * 任务流的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
6141
+ */
6142
+ TasksPriority?: number;
6143
+ /**
6144
+ * 任务流状态变更通知模式,可取值有 Finish,Change 和 None,不填代表 Finish。
6145
+ */
6146
+ TasksNotifyMode?: string;
6147
+ /**
6148
+ * 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
6149
+ */
6150
+ SessionContext?: string;
6151
+ /**
6152
+ * 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
6153
+ */
6154
+ SessionId?: string;
6155
+ /**
6156
+ * 保留字段,特殊用途时使用。
6157
+ */
6158
+ ExtInfo?: string;
6159
+ }
6053
6160
  /**
6054
6161
  * DescribeMediaPlayStatDetails返回参数结构体
6055
6162
  */
@@ -6581,54 +6688,21 @@ export interface DeleteReviewTemplateResponse {
6581
6688
  RequestId?: string;
6582
6689
  }
6583
6690
  /**
6584
- * ModifyAdaptiveDynamicStreamingTemplate请求参数结构体
6691
+ * DNS解析验证信息
6585
6692
  */
6586
- export interface ModifyAdaptiveDynamicStreamingTemplateRequest {
6587
- /**
6588
- * 自适应转码模板唯一标识。
6589
- */
6590
- Definition: number;
6591
- /**
6592
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6593
- */
6594
- SubAppId?: number;
6595
- /**
6596
- * 模板名称,长度限制:64 个字符。
6597
- */
6598
- Name?: string;
6599
- /**
6600
- * 自适应转码格式,取值范围:
6601
- <li>HLS;</li>
6602
- <li>MPEG-DASH。</li>
6603
- */
6604
- Format?: string;
6605
- /**
6606
- * 是否禁止视频低码率转高码率,取值范围:
6607
- <li>0:否,</li>
6608
- <li>1:是。</li>
6609
- */
6610
- DisableHigherVideoBitrate?: number;
6693
+ export interface DNSVerifyInfo {
6611
6694
  /**
6612
- * 是否禁止视频分辨率转高分辨率,取值范围:
6613
- <li>0:否,</li>
6614
- <li>1:是。</li>
6695
+ * 子解析。
6615
6696
  */
6616
- DisableHigherVideoResolution?: number;
6697
+ SubDomain?: string;
6617
6698
  /**
6618
- * 自适应转码输入流参数信息,最多输入10路流。
6619
- 注意:各个流的帧率必须保持一致;如果不一致,采用第一个流的帧率作为输出帧率。
6699
+ * 解析值。
6620
6700
  */
6621
- StreamInfos?: Array<AdaptiveStreamTemplate>;
6701
+ Record?: string;
6622
6702
  /**
6623
- * 模板描述信息,长度限制:256 个字符。
6703
+ * 解析类型。
6624
6704
  */
6625
- Comment?: string;
6626
- /**
6627
- * 切片类型,当 Format 为 HLS 时有效,可选值:
6628
- <li>ts:ts 切片;</li>
6629
- <li>fmp4:fmp4 切片。</li>
6630
- */
6631
- SegmentType?: string;
6705
+ RecordType?: string;
6632
6706
  }
6633
6707
  /**
6634
6708
  * 视频转动图结果信息
@@ -7185,54 +7259,22 @@ export interface MediaSubtitleInput {
7185
7259
  Id?: string;
7186
7260
  }
7187
7261
  /**
7188
- * ProcessMedia请求参数结构体
7262
+ * 文件验证信息
7189
7263
  */
7190
- export interface ProcessMediaRequest {
7264
+ export interface FileVerifyInfo {
7191
7265
  /**
7192
- * 媒体文件 ID,即该文件在云点播上的全局唯一标识符,在上传成功后由云点播后台分配。可以在 [视频上传完成事件通知](/document/product/266/7830) 或 [云点播控制台](https://console.cloud.tencent.com/vod/media) 获取该字段。
7266
+ * 文件验证 URL 指引。
7193
7267
  */
7194
- FileId: string;
7268
+ FileVerifyUrl?: string;
7195
7269
  /**
7196
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
7270
+ * 文件校验域名列表。
7197
7271
  */
7198
- SubAppId?: number;
7272
+ FileVerifyDomains?: Array<string>;
7199
7273
  /**
7200
- * 视频处理类型任务参数。
7201
- */
7202
- MediaProcessTask?: MediaProcessTaskInput;
7203
- /**
7204
- * 音视频内容审核类型任务参数 \*。
7205
- <font color=red>\* 不建议使用</font>,推荐使用 [音视频审核(ReviewAudioVideo)](https://cloud.tencent.com/document/api/266/80283) 或 [图片审核(ReviewImage)](https://cloud.tencent.com/document/api/266/73217)。
7206
- */
7207
- AiContentReviewTask?: AiContentReviewTaskInput;
7208
- /**
7209
- * 音视频内容分析类型任务参数。
7210
- */
7211
- AiAnalysisTask?: AiAnalysisTaskInput;
7212
- /**
7213
- * 音视频内容识别类型任务参数。
7214
- */
7215
- AiRecognitionTask?: AiRecognitionTaskInput;
7216
- /**
7217
- * 任务流的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
7218
- */
7219
- TasksPriority?: number;
7220
- /**
7221
- * 任务流状态变更通知模式,可取值有 Finish,Change 和 None,不填代表 Finish。
7222
- */
7223
- TasksNotifyMode?: string;
7224
- /**
7225
- * 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
7226
- */
7227
- SessionContext?: string;
7228
- /**
7229
- * 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
7230
- */
7231
- SessionId?: string;
7232
- /**
7233
- * 保留字段,特殊用途时使用。
7274
+ * 文件校验文件名。
7275
+ 注意:此字段可能返回 null,表示取不到有效值。
7234
7276
  */
7235
- ExtInfo?: string;
7277
+ FileVerifyName?: string;
7236
7278
  }
7237
7279
  /**
7238
7280
  * 人脸增强控制
@@ -9773,25 +9815,21 @@ export interface ImageWatermarkInputForUpdate {
9773
9815
  Transparency?: number;
9774
9816
  }
9775
9817
  /**
9776
- * DescribeAIAnalysisTemplates请求参数结构体
9818
+ * CreateDomainVerifyRecord返回参数结构体
9777
9819
  */
9778
- export interface DescribeAIAnalysisTemplatesRequest {
9820
+ export interface CreateDomainVerifyRecordResponse {
9779
9821
  /**
9780
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
9822
+ * DNS解析信息
9781
9823
  */
9782
- SubAppId?: number;
9824
+ DNSVerifyInfo?: DNSVerifyInfo;
9783
9825
  /**
9784
- * 音视频内容分析模板唯一标识过滤条件,数组长度最大值:100。
9826
+ * 文件验证信息
9785
9827
  */
9786
- Definitions?: Array<number | bigint>;
9787
- /**
9788
- * 分页偏移量,默认值:0。
9789
- */
9790
- Offset?: number;
9828
+ FileVerifyInfo?: FileVerifyInfo;
9791
9829
  /**
9792
- * 返回记录条数,默认值:10,最大值:100
9830
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
9793
9831
  */
9794
- Limit?: number;
9832
+ RequestId?: string;
9795
9833
  }
9796
9834
  /**
9797
9835
  * ExtractCopyRightWatermark返回参数结构体
@@ -9828,6 +9866,23 @@ export interface ResolutionNameInfo {
9828
9866
  */
9829
9867
  Name: string;
9830
9868
  }
9869
+ /**
9870
+ * VerifyDomainRecord请求参数结构体
9871
+ */
9872
+ export interface VerifyDomainRecordRequest {
9873
+ /**
9874
+ * 需要接入点播的加速域名。
9875
+ */
9876
+ Domain: string;
9877
+ /**
9878
+ * 验证方式:
9879
+ <li>dns:DNS 解析验证;</li>
9880
+ <li>fIle:文件验证。</li>
9881
+
9882
+ 默认值:dns。
9883
+ */
9884
+ VerifyType?: string;
9885
+ }
9831
9886
  /**
9832
9887
  * 文本关键词识别结果。
9833
9888
  */
@@ -13613,6 +13668,10 @@ export interface DescribeSubAppIdsResponse {
13613
13668
  */
13614
13669
  RequestId?: string;
13615
13670
  }
13671
+ /**
13672
+ * CreateDomainVerifyRecord请求参数结构体
13673
+ */
13674
+ export declare type CreateDomainVerifyRecordRequest = null;
13616
13675
  /**
13617
13676
  * 点播文件信息
13618
13677
  */
@@ -16140,6 +16199,19 @@ export interface MediaSubStreamInfoItem {
16140
16199
  */
16141
16200
  Size?: number;
16142
16201
  }
16202
+ /**
16203
+ * VerifyDomainOwnershipForConsole请求参数结构体
16204
+ */
16205
+ export interface VerifyDomainOwnershipForConsoleRequest {
16206
+ /**
16207
+ * 需要接入点播的域名。
16208
+ */
16209
+ Domain: string;
16210
+ /**
16211
+ * 需要开启加速的区域: <li>Mainland: 中国大陆地区</li> <li>Internation: 海外地区及港澳台</li> <li>Global: 全球</li> 不填会根据用户注册腾讯云时的地域信息自动判断 Mainland 或 Internation
16212
+ */
16213
+ AccelerateArea: string;
16214
+ }
16143
16215
  /**
16144
16216
  * 视频画面马赛克检测的控制参数。
16145
16217
  */
@@ -17482,6 +17554,15 @@ export interface DeleteImageProcessingTemplateResponse {
17482
17554
  */
17483
17555
  RequestId?: string;
17484
17556
  }
17557
+ /**
17558
+ * VerifyDomainOwnershipForConsole返回参数结构体
17559
+ */
17560
+ export interface VerifyDomainOwnershipForConsoleResponse {
17561
+ /**
17562
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
17563
+ */
17564
+ RequestId?: string;
17565
+ }
17485
17566
  /**
17486
17567
  * 画面鉴别涉及令人反感的信息的任务控制参数。
17487
17568
  */
@@ -17946,6 +18027,69 @@ export interface QualityInspectItem {
17946
18027
  */
17947
18028
  Confidence?: number;
17948
18029
  }
18030
+ /**
18031
+ * 拉取上传任务信息
18032
+ */
18033
+ export interface PullUploadTask {
18034
+ /**
18035
+ * 拉取上传任务 ID。
18036
+ */
18037
+ TaskId?: string;
18038
+ /**
18039
+ * 任务流状态,取值:
18040
+ <li>PROCESSING:处理中;</li>
18041
+ <li>FINISH:已完成。</li>
18042
+ */
18043
+ Status?: string;
18044
+ /**
18045
+ * 错误码,0 表示成功,其他值表示失败:
18046
+ <li>40000:输入参数不合法,请检查输入参数;</li>
18047
+ <li>60000:源文件错误(如视频数据损坏),请确认源文件是否正常;</li>
18048
+ <li>70000:内部服务错误,建议重试。</li>
18049
+ */
18050
+ ErrCode?: number;
18051
+ /**
18052
+ * 错误信息。
18053
+ */
18054
+ Message?: string;
18055
+ /**
18056
+ * 拉取上传完成后生成的视频 ID。
18057
+ */
18058
+ FileId?: string;
18059
+ /**
18060
+ * 拉取上传完成后生成的媒体文件基础信息。
18061
+ 注意:此字段可能返回 null,表示取不到有效值。
18062
+ */
18063
+ MediaBasicInfo?: MediaBasicInfo;
18064
+ /**
18065
+ * 输出视频的元信息。
18066
+ */
18067
+ MetaData?: MediaMetaData;
18068
+ /**
18069
+ * 拉取上传完成后生成的播放地址。
18070
+ */
18071
+ FileUrl?: string;
18072
+ /**
18073
+ * 任务类型为 Procedure 的任务 ID。若[拉取上传](https://cloud.tencent.com/document/api/266/35575)时指定了媒体后续任务操作(Procedure),当该任务流模板指定了 MediaProcessTask、AiAnalysisTask、AiRecognitionTask 中的一个或多个时发起该任务。
18074
+ */
18075
+ ProcedureTaskId?: string;
18076
+ /**
18077
+ * 任务类型为 ReviewAudioVideo 的任务 ID。若[拉取上传](https://cloud.tencent.com/document/api/266/35575)时指定了媒体后续任务操作(Procedure),当该任务流模板指定了 ReviewAudioVideoTask 时,发起该任务。
18078
+ */
18079
+ ReviewAudioVideoTaskId?: string;
18080
+ /**
18081
+ * 来源上下文,用于透传用户请求信息,[URL 拉取视频上传完成](https://cloud.tencent.com/document/product/266/7831)将返回该字段值,最长 1000 个字符。
18082
+ */
18083
+ SessionContext?: string;
18084
+ /**
18085
+ * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
18086
+ */
18087
+ SessionId?: string;
18088
+ /**
18089
+ * 拉取上传进度,取值范围 [0-100] 。
18090
+ */
18091
+ Progress?: number;
18092
+ }
17949
18093
  /**
17950
18094
  * DescribeImageProcessingTemplates返回参数结构体
17951
18095
  */
@@ -18084,7 +18228,7 @@ export interface TerrorismConfigureInfo {
18084
18228
  * 文字鉴别涉及令人不安全的信息的任务控制参数。
18085
18229
  注意:此字段可能返回 null,表示取不到有效值。
18086
18230
  */
18087
- OcrReviewInfo: TerrorismOcrReviewTemplateInfo;
18231
+ OcrReviewInfo?: TerrorismOcrReviewTemplateInfo;
18088
18232
  }
18089
18233
  /**
18090
18234
  * 语音鉴别涉及令人不适宜的信息的任务控制参数
@@ -18715,67 +18859,31 @@ export interface ModifyWatermarkTemplateResponse {
18715
18859
  RequestId?: string;
18716
18860
  }
18717
18861
  /**
18718
- * 拉取上传任务信息
18862
+ * DescribeProcedureTemplates请求参数结构体
18719
18863
  */
18720
- export interface PullUploadTask {
18721
- /**
18722
- * 拉取上传任务 ID。
18723
- */
18724
- TaskId?: string;
18725
- /**
18726
- * 任务流状态,取值:
18727
- <li>PROCESSING:处理中;</li>
18728
- <li>FINISH:已完成。</li>
18729
- */
18730
- Status?: string;
18731
- /**
18732
- * 错误码,0 表示成功,其他值表示失败:
18733
- <li>40000:输入参数不合法,请检查输入参数;</li>
18734
- <li>60000:源文件错误(如视频数据损坏),请确认源文件是否正常;</li>
18735
- <li>70000:内部服务错误,建议重试。</li>
18736
- */
18737
- ErrCode?: number;
18738
- /**
18739
- * 错误信息。
18740
- */
18741
- Message?: string;
18742
- /**
18743
- * 拉取上传完成后生成的视频 ID。
18744
- */
18745
- FileId?: string;
18746
- /**
18747
- * 拉取上传完成后生成的媒体文件基础信息。
18748
- 注意:此字段可能返回 null,表示取不到有效值。
18749
- */
18750
- MediaBasicInfo?: MediaBasicInfo;
18751
- /**
18752
- * 输出视频的元信息。
18753
- */
18754
- MetaData?: MediaMetaData;
18755
- /**
18756
- * 拉取上传完成后生成的播放地址。
18757
- */
18758
- FileUrl?: string;
18864
+ export interface DescribeProcedureTemplatesRequest {
18759
18865
  /**
18760
- * 任务类型为 Procedure 的任务 ID。若[拉取上传](https://cloud.tencent.com/document/api/266/35575)时指定了媒体后续任务操作(Procedure),当该任务流模板指定了 MediaProcessTask、AiAnalysisTask、AiRecognitionTask 中的一个或多个时发起该任务。
18866
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
18761
18867
  */
18762
- ProcedureTaskId?: string;
18868
+ SubAppId?: number;
18763
18869
  /**
18764
- * 任务类型为 ReviewAudioVideo 的任务 ID。若[拉取上传](https://cloud.tencent.com/document/api/266/35575)时指定了媒体后续任务操作(Procedure),当该任务流模板指定了 ReviewAudioVideoTask 时,发起该任务。
18870
+ * 任务流模板名字过滤条件,数组长度限制:100。
18765
18871
  */
18766
- ReviewAudioVideoTaskId?: string;
18872
+ Names?: Array<string>;
18767
18873
  /**
18768
- * 来源上下文,用于透传用户请求信息,[URL 拉取视频上传完成](https://cloud.tencent.com/document/product/266/7831)将返回该字段值,最长 1000 个字符。
18874
+ * 任务流模板类型过滤条件,可选值:
18875
+ <li>Preset:系统预置任务流模板;</li>
18876
+ <li>Custom:用户自定义任务流模板。</li>
18769
18877
  */
18770
- SessionContext?: string;
18878
+ Type?: string;
18771
18879
  /**
18772
- * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
18880
+ * 分页偏移量,默认值:0。
18773
18881
  */
18774
- SessionId?: string;
18882
+ Offset?: number;
18775
18883
  /**
18776
- * 拉取上传进度,取值范围 [0-100]
18884
+ * 返回记录条数,默认值:10,最大值:100。
18777
18885
  */
18778
- Progress?: number;
18886
+ Limit?: number;
18779
18887
  }
18780
18888
  /**
18781
18889
  * 违禁任务控制参数