tencentcloud-sdk-nodejs-mps 4.0.555 → 4.0.557

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.
@@ -567,6 +567,15 @@ export interface AiReviewProhibitedOcrTaskOutput {
567
567
  */
568
568
  SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
569
569
  }
570
+ /**
571
+ * DeleteSchedule返回参数结构体
572
+ */
573
+ export interface DeleteScheduleResponse {
574
+ /**
575
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
576
+ */
577
+ RequestId?: string;
578
+ }
570
579
  /**
571
580
  * ManageTask返回参数结构体
572
581
  */
@@ -1314,6 +1323,41 @@ export interface AiReviewPoliticalTaskInput {
1314
1323
  */
1315
1324
  Definition: number;
1316
1325
  }
1326
+ /**
1327
+ * ModifySchedule请求参数结构体
1328
+ */
1329
+ export interface ModifyScheduleRequest {
1330
+ /**
1331
+ * 编排唯一标识。
1332
+ */
1333
+ ScheduleId: number;
1334
+ /**
1335
+ * 编排名称。
1336
+ */
1337
+ ScheduleName?: string;
1338
+ /**
1339
+ * 编排绑定的触发规则。
1340
+ */
1341
+ Trigger?: WorkflowTrigger;
1342
+ /**
1343
+ * 编排任务列表。
1344
+ 注意:内部不允许部分更新,如果需要更新需全量提交编排任务列表。
1345
+ */
1346
+ Activities?: Array<Activity>;
1347
+ /**
1348
+ * 媒体处理的文件输出存储位置。
1349
+ */
1350
+ OutputStorage?: TaskOutputStorage;
1351
+ /**
1352
+ * 媒体处理生成的文件输出的目标目录。
1353
+ 注意:如果设置为空,则表示取消老配置的OutputDir值。
1354
+ */
1355
+ OutputDir?: string;
1356
+ /**
1357
+ * 任务的事件通知配置。
1358
+ */
1359
+ TaskNotifyConfig?: TaskNotifyConfig;
1360
+ }
1317
1361
  /**
1318
1362
  * 创建媒体传输流的输出的RTP的目标地址。
1319
1363
  */
@@ -2147,6 +2191,19 @@ export interface CosInputInfo {
2147
2191
  */
2148
2192
  Object: string;
2149
2193
  }
2194
+ /**
2195
+ * CreateSchedule返回参数结构体
2196
+ */
2197
+ export interface CreateScheduleResponse {
2198
+ /**
2199
+ * 编排 ID。
2200
+ */
2201
+ ScheduleId: number;
2202
+ /**
2203
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2204
+ */
2205
+ RequestId?: string;
2206
+ }
2150
2207
  /**
2151
2208
  * 智能标签任务控制参数
2152
2209
  */
@@ -2860,6 +2917,15 @@ export interface MediaProcessTaskInput {
2860
2917
  */
2861
2918
  AdaptiveDynamicStreamingTaskSet?: Array<AdaptiveDynamicStreamingTaskInput>;
2862
2919
  }
2920
+ /**
2921
+ * DisableSchedule请求参数结构体
2922
+ */
2923
+ export interface DisableScheduleRequest {
2924
+ /**
2925
+ * 编排唯一表示。
2926
+ */
2927
+ ScheduleId: number;
2928
+ }
2863
2929
  /**
2864
2930
  * 创建的输入RTMP拉流源站配置信息。
2865
2931
  */
@@ -2887,25 +2953,34 @@ export interface CosOutputStorage {
2887
2953
  Region?: string;
2888
2954
  }
2889
2955
  /**
2890
- * 人脸识别结果片段
2956
+ * 转动图任务结果类型
2891
2957
  */
2892
- export interface AiRecognitionTaskFaceSegmentItem {
2958
+ export interface MediaProcessTaskAnimatedGraphicResult {
2893
2959
  /**
2894
- * 识别片段起始的偏移时间,单位:秒。
2960
+ * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
2895
2961
  */
2896
- StartTimeOffset: number;
2962
+ Status: string;
2897
2963
  /**
2898
- * 识别片段终止的偏移时间,单位:秒。
2964
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
2899
2965
  */
2900
- EndTimeOffset: number;
2966
+ ErrCodeExt: string;
2901
2967
  /**
2902
- * 识别片段置信度。取值:0~100。
2968
+ * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
2903
2969
  */
2904
- Confidence: number;
2970
+ ErrCode: number;
2905
2971
  /**
2906
- * 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
2972
+ * 错误信息。
2907
2973
  */
2908
- AreaCoordSet: Array<number>;
2974
+ Message: string;
2975
+ /**
2976
+ * 转动图任务的输入。
2977
+ */
2978
+ Input: AnimatedGraphicTaskInput;
2979
+ /**
2980
+ * 转动图任务的输出。
2981
+ 注意:此字段可能返回 null,表示取不到有效值。
2982
+ */
2983
+ Output: MediaAnimatedGraphicsItem;
2909
2984
  }
2910
2985
  /**
2911
2986
  * ProcessMedia返回参数结构体
@@ -2941,13 +3016,33 @@ export interface ClassificationConfigureInfoForUpdate {
2941
3016
  Switch?: string;
2942
3017
  }
2943
3018
  /**
2944
- * DeleteAdaptiveDynamicStreamingTemplate返回参数结构体
3019
+ * CreateSchedule请求参数结构体
2945
3020
  */
2946
- export interface DeleteAdaptiveDynamicStreamingTemplateResponse {
3021
+ export interface CreateScheduleRequest {
2947
3022
  /**
2948
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3023
+ * 编排名称,最多128字符。同一个用户该名称唯一。
2949
3024
  */
2950
- RequestId?: string;
3025
+ ScheduleName: string;
3026
+ /**
3027
+ * 编排绑定的触发规则,当上传视频命中该规则到该对象时即触发工作流。
3028
+ */
3029
+ Trigger: WorkflowTrigger;
3030
+ /**
3031
+ * 编排任务列表。
3032
+ */
3033
+ Activities: Array<Activity>;
3034
+ /**
3035
+ * 媒体处理的文件输出存储位置。不填则继承 Trigger 中的存储位置。
3036
+ */
3037
+ OutputStorage?: TaskOutputStorage;
3038
+ /**
3039
+ * 媒体处理生成的文件输出的目标目录,如`/movie/201907/`。如果不填,表示与触发文件所在的目录一致。
3040
+ */
3041
+ OutputDir?: string;
3042
+ /**
3043
+ * 任务的事件通知配置,不填代表不获取事件通知。
3044
+ */
3045
+ TaskNotifyConfig?: TaskNotifyConfig;
2951
3046
  }
2952
3047
  /**
2953
3048
  * CreateAnimatedGraphicsTemplate请求参数结构体
@@ -3230,6 +3325,15 @@ export interface ProhibitedAsrReviewTemplateInfoForUpdate {
3230
3325
  */
3231
3326
  ReviewConfidence?: number;
3232
3327
  }
3328
+ /**
3329
+ * DisableSchedule返回参数结构体
3330
+ */
3331
+ export interface DisableScheduleResponse {
3332
+ /**
3333
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3334
+ */
3335
+ RequestId?: string;
3336
+ }
3233
3337
  /**
3234
3338
  * ModifyAnimatedGraphicsTemplate返回参数结构体
3235
3339
  */
@@ -3674,6 +3778,15 @@ export interface DeleteWordSamplesRequest {
3674
3778
  */
3675
3779
  Keywords: Array<string>;
3676
3780
  }
3781
+ /**
3782
+ * EnableSchedule请求参数结构体
3783
+ */
3784
+ export interface EnableScheduleRequest {
3785
+ /**
3786
+ * 编排唯一标识。
3787
+ */
3788
+ ScheduleId: number;
3789
+ }
3677
3790
  /**
3678
3791
  * 自定义转码的规格参数。
3679
3792
  */
@@ -3974,49 +4087,50 @@ export interface TaskOutputStorage {
3974
4087
  S3OutputStorage?: S3OutputStorage;
3975
4088
  }
3976
4089
  /**
3977
- * 传输流日志信息。
4090
+ * 任务查询结果类型
3978
4091
  */
3979
- export interface FlowLogInfo {
3980
- /**
3981
- * 时间戳,单位为秒。
3982
- */
3983
- Timestamp: number;
4092
+ export interface MediaProcessTaskResult {
3984
4093
  /**
3985
- * 输入输出类型(input/output)。
3986
- */
4094
+ * 任务的类型,可以取的值有:
4095
+ <li>Transcode:转码</li>
4096
+ <li>AnimatedGraphics:转动图</li>
4097
+ <li>SnapshotByTimeOffset:时间点截图</li>
4098
+ <li>SampleSnapshot:采样截图</li>
4099
+ <li>ImageSprites:雪碧图</li>
4100
+ <li>CoverBySnapshot:截图做封面</li>
4101
+ <li>AdaptiveDynamicStreaming:自适应码流</li>
4102
+ */
3987
4103
  Type: string;
3988
4104
  /**
3989
- * 输入或输出Id。
3990
- */
3991
- InputOutputId: string;
3992
- /**
3993
- * 协议。
3994
- */
3995
- Protocol: string;
3996
- /**
3997
- * 事件代码。
3998
- */
3999
- EventCode: string;
4105
+ * 视频转码任务的查询结果,当任务类型为 Transcode 时有效。
4106
+ 注意:此字段可能返回 null,表示取不到有效值。
4107
+ */
4108
+ TranscodeTask: MediaProcessTaskTranscodeResult;
4000
4109
  /**
4001
- * 事件信息。
4002
- */
4003
- EventMessage: string;
4110
+ * 视频转动图任务的查询结果,当任务类型为 AnimatedGraphics 时有效。
4111
+ 注意:此字段可能返回 null,表示取不到有效值。
4112
+ */
4113
+ AnimatedGraphicTask: MediaProcessTaskAnimatedGraphicResult;
4004
4114
  /**
4005
- * 对端IP。
4006
- */
4007
- RemoteIp: string;
4115
+ * 对视频按时间点截图任务的查询结果,当任务类型为 SnapshotByTimeOffset 时有效。
4116
+ 注意:此字段可能返回 null,表示取不到有效值。
4117
+ */
4118
+ SnapshotByTimeOffsetTask: MediaProcessTaskSnapshotByTimeOffsetResult;
4008
4119
  /**
4009
- * 对端端口。
4010
- */
4011
- RemotePort: string;
4120
+ * 对视频采样截图任务的查询结果,当任务类型为 SampleSnapshot 时有效。
4121
+ 注意:此字段可能返回 null,表示取不到有效值。
4122
+ */
4123
+ SampleSnapshotTask: MediaProcessTaskSampleSnapshotResult;
4012
4124
  /**
4013
- * 主备通道,0为主通道,1为备通道。
4014
- */
4015
- Pipeline: string;
4125
+ * 对视频截雪碧图任务的查询结果,当任务类型为 ImageSprite 时有效。
4126
+ 注意:此字段可能返回 null,表示取不到有效值。
4127
+ */
4128
+ ImageSpriteTask: MediaProcessTaskImageSpriteResult;
4016
4129
  /**
4017
- * 输入或输出的名称。
4018
- */
4019
- InputOutputName: string;
4130
+ * 转自适应码流任务查询结果,当任务类型为 AdaptiveDynamicStreaming 时有效。
4131
+ 注意:此字段可能返回 null,表示取不到有效值。
4132
+ */
4133
+ AdaptiveDynamicStreamingTask: MediaProcessTaskAdaptiveDynamicStreamingResult;
4020
4134
  }
4021
4135
  /**
4022
4136
  * ModifyAIAnalysisTemplate请求参数结构体
@@ -4251,34 +4365,25 @@ export interface ModifyWordSampleRequest {
4251
4365
  TagOperationInfo?: AiSampleTagOperation;
4252
4366
  }
4253
4367
  /**
4254
- * 转动图任务结果类型
4368
+ * 人脸识别结果片段
4255
4369
  */
4256
- export interface MediaProcessTaskAnimatedGraphicResult {
4257
- /**
4258
- * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
4259
- */
4260
- Status: string;
4370
+ export interface AiRecognitionTaskFaceSegmentItem {
4261
4371
  /**
4262
- * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
4372
+ * 识别片段起始的偏移时间,单位:秒。
4263
4373
  */
4264
- ErrCodeExt: string;
4374
+ StartTimeOffset: number;
4265
4375
  /**
4266
- * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
4376
+ * 识别片段终止的偏移时间,单位:秒。
4267
4377
  */
4268
- ErrCode: number;
4378
+ EndTimeOffset: number;
4269
4379
  /**
4270
- * 错误信息。
4380
+ * 识别片段置信度。取值:0~100。
4271
4381
  */
4272
- Message: string;
4382
+ Confidence: number;
4273
4383
  /**
4274
- * 转动图任务的输入。
4384
+ * 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
4275
4385
  */
4276
- Input: AnimatedGraphicTaskInput;
4277
- /**
4278
- * 转动图任务的输出。
4279
- 注意:此字段可能返回 null,表示取不到有效值。
4280
- */
4281
- Output: MediaAnimatedGraphicsItem;
4386
+ AreaCoordSet: Array<number>;
4282
4387
  }
4283
4388
  /**
4284
4389
  * 智能标签结果类型
@@ -4509,6 +4614,23 @@ export interface AiRecognitionTaskTransTextResultInput {
4509
4614
  */
4510
4615
  Definition: number;
4511
4616
  }
4617
+ /**
4618
+ * DescribeSchedules返回参数结构体
4619
+ */
4620
+ export interface DescribeSchedulesResponse {
4621
+ /**
4622
+ * 符合过滤条件的记录总数。
4623
+ */
4624
+ TotalCount: number;
4625
+ /**
4626
+ * 编排信息数组。
4627
+ */
4628
+ ScheduleInfoSet: Array<SchedulesInfo>;
4629
+ /**
4630
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4631
+ */
4632
+ RequestId?: string;
4633
+ }
4512
4634
  /**
4513
4635
  * 综合增强配置
4514
4636
  */
@@ -5191,51 +5313,45 @@ export interface LiveStreamAiRecognitionResultInfo {
5191
5313
  ResultSet: Array<LiveStreamAiRecognitionResultItem>;
5192
5314
  }
5193
5315
  /**
5194
- * 直播 AI 内容审核图片敏感结果
5316
+ * 编排原子任务
5195
5317
  */
5196
- export interface LiveStreamAiReviewImagePoliticalResult {
5318
+ export interface ActivityPara {
5197
5319
  /**
5198
- * 嫌疑片段起始的 PTS 时间,单位:秒。
5320
+ * 视频转码任务
5199
5321
  */
5200
- StartPtsTime: number;
5322
+ TranscodeTask?: TranscodeTaskInput;
5201
5323
  /**
5202
- * 嫌疑片段结束的 PTS 时间,单位:秒。
5324
+ * 视频转动图任务
5203
5325
  */
5204
- EndPtsTime: number;
5326
+ AnimatedGraphicTask?: AnimatedGraphicTaskInput;
5205
5327
  /**
5206
- * 嫌疑片段敏感分数。
5328
+ * 视频按时间点截图任务
5207
5329
  */
5208
- Confidence: number;
5330
+ SnapshotByTimeOffsetTask?: SnapshotByTimeOffsetTaskInput;
5209
5331
  /**
5210
- * 嫌疑片段鉴黄结果建议,取值范围:
5211
- <li>pass</li>
5212
- <li>review</li>
5213
- <li>block</li>
5214
- */
5215
- Suggestion: string;
5332
+ * 视频采样截图任务
5333
+ */
5334
+ SampleSnapshotTask?: SampleSnapshotTaskInput;
5216
5335
  /**
5217
- * 视频敏感结果标签,取值范围:
5218
- <li>politician:敏感人物。</li>
5219
- <li>violation_photo:违规图标。</li>
5220
- */
5221
- Label: string;
5336
+ * 视频截雪碧图任务
5337
+ */
5338
+ ImageSpriteTask?: ImageSpriteTaskInput;
5222
5339
  /**
5223
- * 敏感人物、违规图标名字。
5340
+ * 转自适应码流任务
5224
5341
  */
5225
- Name: string;
5342
+ AdaptiveDynamicStreamingTask?: AdaptiveDynamicStreamingTaskInput;
5226
5343
  /**
5227
- * 敏感人物、违规图标出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
5344
+ * 视频内容审核类型任务
5228
5345
  */
5229
- AreaCoordSet: Array<number>;
5346
+ AiContentReviewTask?: AiContentReviewTaskInput;
5230
5347
  /**
5231
- * 嫌疑图片 URL (图片不会永久存储,到达
5232
- PicUrlExpireTime 时间点后图片将被删除)。
5233
- */
5234
- Url: string;
5348
+ * 视频内容分析类型任务
5349
+ */
5350
+ AiAnalysisTask?: AiAnalysisTaskInput;
5235
5351
  /**
5236
- * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
5352
+ * 视频内容识别类型任务
5237
5353
  */
5238
- PicUrlExpireTime: string;
5354
+ AiRecognitionTask?: AiRecognitionTaskInput;
5239
5355
  }
5240
5356
  /**
5241
5357
  * 文本涉敏任务控制参数
@@ -5387,6 +5503,15 @@ export interface TerrorismConfigureInfoForUpdate {
5387
5503
  */
5388
5504
  OcrReviewInfo?: TerrorismOcrReviewTemplateInfoForUpdate;
5389
5505
  }
5506
+ /**
5507
+ * EnableSchedule返回参数结构体
5508
+ */
5509
+ export interface EnableScheduleResponse {
5510
+ /**
5511
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5512
+ */
5513
+ RequestId?: string;
5514
+ }
5390
5515
  /**
5391
5516
  * SRT输出的监听地址。
5392
5517
  */
@@ -5400,6 +5525,15 @@ export interface OutputSRTSourceAddressResp {
5400
5525
  */
5401
5526
  Port: number;
5402
5527
  }
5528
+ /**
5529
+ * DeleteAdaptiveDynamicStreamingTemplate返回参数结构体
5530
+ */
5531
+ export interface DeleteAdaptiveDynamicStreamingTemplateResponse {
5532
+ /**
5533
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5534
+ */
5535
+ RequestId?: string;
5536
+ }
5403
5537
  /**
5404
5538
  * 媒体传输的地区信息。
5405
5539
  */
@@ -5575,6 +5709,53 @@ export interface HeadTailParameter {
5575
5709
  */
5576
5710
  TailSet?: Array<MediaInputInfo>;
5577
5711
  }
5712
+ /**
5713
+ * 直播 AI 内容审核图片敏感结果
5714
+ */
5715
+ export interface LiveStreamAiReviewImagePoliticalResult {
5716
+ /**
5717
+ * 嫌疑片段起始的 PTS 时间,单位:秒。
5718
+ */
5719
+ StartPtsTime: number;
5720
+ /**
5721
+ * 嫌疑片段结束的 PTS 时间,单位:秒。
5722
+ */
5723
+ EndPtsTime: number;
5724
+ /**
5725
+ * 嫌疑片段敏感分数。
5726
+ */
5727
+ Confidence: number;
5728
+ /**
5729
+ * 嫌疑片段鉴黄结果建议,取值范围:
5730
+ <li>pass</li>
5731
+ <li>review</li>
5732
+ <li>block</li>
5733
+ */
5734
+ Suggestion: string;
5735
+ /**
5736
+ * 视频敏感结果标签,取值范围:
5737
+ <li>politician:敏感人物。</li>
5738
+ <li>violation_photo:违规图标。</li>
5739
+ */
5740
+ Label: string;
5741
+ /**
5742
+ * 敏感人物、违规图标名字。
5743
+ */
5744
+ Name: string;
5745
+ /**
5746
+ * 敏感人物、违规图标出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
5747
+ */
5748
+ AreaCoordSet: Array<number>;
5749
+ /**
5750
+ * 嫌疑图片 URL (图片不会永久存储,到达
5751
+ PicUrlExpireTime 时间点后图片将被删除)。
5752
+ */
5753
+ Url: string;
5754
+ /**
5755
+ * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
5756
+ */
5757
+ PicUrlExpireTime: string;
5758
+ }
5578
5759
  /**
5579
5760
  * 图片水印模板输入参数
5580
5761
  */
@@ -6354,6 +6535,15 @@ export interface InputAddress {
6354
6535
  */
6355
6536
  Port: number;
6356
6537
  }
6538
+ /**
6539
+ * DeleteSchedule请求参数结构体
6540
+ */
6541
+ export interface DeleteScheduleRequest {
6542
+ /**
6543
+ * 编排唯一标识。
6544
+ */
6545
+ ScheduleId: number;
6546
+ }
6357
6547
  /**
6358
6548
  * CreateAdaptiveDynamicStreamingTemplate返回参数结构体
6359
6549
  */
@@ -6852,41 +7042,17 @@ export interface AiReviewProhibitedAsrTaskInput {
6852
7042
  Definition: number;
6853
7043
  }
6854
7044
  /**
6855
- * 内容审核涉黄/涉敏嫌疑片段
7045
+ * DescribeMediaMetaData返回参数结构体
6856
7046
  */
6857
- export interface MediaContentReviewSegmentItem {
6858
- /**
6859
- * 嫌疑片段起始的偏移时间,单位:秒。
6860
- */
6861
- StartTimeOffset: number;
6862
- /**
6863
- * 嫌疑片段结束的偏移时间,单位:秒。
6864
- */
6865
- EndTimeOffset: number;
6866
- /**
6867
- * 嫌疑片段涉黄分数。
6868
- */
6869
- Confidence: number;
7047
+ export interface DescribeMediaMetaDataResponse {
6870
7048
  /**
6871
- * 嫌疑片段鉴黄结果标签。
7049
+ * 媒体元信息。
6872
7050
  */
6873
- Label: string;
6874
- /**
6875
- * 嫌疑片段鉴黄结果建议,取值范围:
6876
- <li>pass。</li>
6877
- <li>review。</li>
6878
- <li>block。</li>
6879
- */
6880
- Suggestion: string;
6881
- /**
6882
- * 嫌疑图片 URL (图片不会永久存储,到达
6883
- PicUrlExpireTime 时间点后图片将被删除)。
6884
- */
6885
- Url: string;
7051
+ MetaData?: MediaMetaData;
6886
7052
  /**
6887
- * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)
7053
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
6888
7054
  */
6889
- PicUrlExpireTime: string;
7055
+ RequestId?: string;
6890
7056
  }
6891
7057
  /**
6892
7058
  * 文本涉敏任务控制参数
@@ -7918,50 +8084,49 @@ export interface AiRecognitionTaskOcrWordsSegmentItem {
7918
8084
  AreaCoordSet: Array<number>;
7919
8085
  }
7920
8086
  /**
7921
- * 任务查询结果类型
8087
+ * 传输流日志信息。
7922
8088
  */
7923
- export interface MediaProcessTaskResult {
8089
+ export interface FlowLogInfo {
7924
8090
  /**
7925
- * 任务的类型,可以取的值有:
7926
- <li>Transcode:转码</li>
7927
- <li>AnimatedGraphics:转动图</li>
7928
- <li>SnapshotByTimeOffset:时间点截图</li>
7929
- <li>SampleSnapshot:采样截图</li>
7930
- <li>ImageSprites:雪碧图</li>
7931
- <li>CoverBySnapshot:截图做封面</li>
7932
- <li>AdaptiveDynamicStreaming:自适应码流</li>
7933
- */
8091
+ * 时间戳,单位为秒。
8092
+ */
8093
+ Timestamp: number;
8094
+ /**
8095
+ * 输入输出类型(input/output)。
8096
+ */
7934
8097
  Type: string;
7935
8098
  /**
7936
- * 视频转码任务的查询结果,当任务类型为 Transcode 时有效。
7937
- 注意:此字段可能返回 null,表示取不到有效值。
7938
- */
7939
- TranscodeTask: MediaProcessTaskTranscodeResult;
8099
+ * 输入或输出Id。
8100
+ */
8101
+ InputOutputId: string;
7940
8102
  /**
7941
- * 视频转动图任务的查询结果,当任务类型为 AnimatedGraphics 时有效。
7942
- 注意:此字段可能返回 null,表示取不到有效值。
7943
- */
7944
- AnimatedGraphicTask: MediaProcessTaskAnimatedGraphicResult;
8103
+ * 协议。
8104
+ */
8105
+ Protocol: string;
7945
8106
  /**
7946
- * 对视频按时间点截图任务的查询结果,当任务类型为 SnapshotByTimeOffset 时有效。
7947
- 注意:此字段可能返回 null,表示取不到有效值。
7948
- */
7949
- SnapshotByTimeOffsetTask: MediaProcessTaskSnapshotByTimeOffsetResult;
8107
+ * 事件代码。
8108
+ */
8109
+ EventCode: string;
7950
8110
  /**
7951
- * 对视频采样截图任务的查询结果,当任务类型为 SampleSnapshot 时有效。
7952
- 注意:此字段可能返回 null,表示取不到有效值。
7953
- */
7954
- SampleSnapshotTask: MediaProcessTaskSampleSnapshotResult;
8111
+ * 事件信息。
8112
+ */
8113
+ EventMessage: string;
7955
8114
  /**
7956
- * 对视频截雪碧图任务的查询结果,当任务类型为 ImageSprite 时有效。
7957
- 注意:此字段可能返回 null,表示取不到有效值。
7958
- */
7959
- ImageSpriteTask: MediaProcessTaskImageSpriteResult;
8115
+ * 对端IP。
8116
+ */
8117
+ RemoteIp: string;
7960
8118
  /**
7961
- * 转自适应码流任务查询结果,当任务类型为 AdaptiveDynamicStreaming 时有效。
7962
- 注意:此字段可能返回 null,表示取不到有效值。
7963
- */
7964
- AdaptiveDynamicStreamingTask: MediaProcessTaskAdaptiveDynamicStreamingResult;
8119
+ * 对端端口。
8120
+ */
8121
+ RemotePort: string;
8122
+ /**
8123
+ * 主备通道,0为主通道,1为备通道。
8124
+ */
8125
+ Pipeline: string;
8126
+ /**
8127
+ * 输入或输出的名称。
8128
+ */
8129
+ InputOutputName: string;
7965
8130
  }
7966
8131
  /**
7967
8132
  * DeleteWordSamples返回参数结构体
@@ -8045,6 +8210,34 @@ export interface EnableWorkflowResponse {
8045
8210
  */
8046
8211
  RequestId?: string;
8047
8212
  }
8213
+ /**
8214
+ * 编排原子任务
8215
+ */
8216
+ export interface Activity {
8217
+ /**
8218
+ * 原子任务类型:
8219
+ <li>input: 起始节点</li>
8220
+ <li>output:终止节点</li>
8221
+ <li>action-trans:转码</li>
8222
+ <li>action-samplesnapshot:采样截图</li>
8223
+ <li>action-AIAnalysis: 分析</li>
8224
+ <li>action-AIRecognition:识别</li>
8225
+ <li>action-aiReview:审核</li>
8226
+ <li>action-animated-graphics:转动图</li>
8227
+ <li>action-image-sprite:雪碧图</li>
8228
+ <li>action-snapshotByTimeOffset: 时间点截图</li>
8229
+ <li>action-adaptive-substream:自适应码流</li>
8230
+ */
8231
+ ActivityType: string;
8232
+ /**
8233
+ * 后驱节点索引数组
8234
+ */
8235
+ ReardriveIndex?: Array<number>;
8236
+ /**
8237
+ * 原子任务参数
8238
+ */
8239
+ ActivityPara?: ActivityPara;
8240
+ }
8048
8241
  /**
8049
8242
  * AI 样本管理,关键词输入信息。
8050
8243
  */
@@ -9498,6 +9691,30 @@ export interface DescribeWorkflowsRequest {
9498
9691
  */
9499
9692
  Limit?: number;
9500
9693
  }
9694
+ /**
9695
+ * DescribeSchedules请求参数结构体
9696
+ */
9697
+ export interface DescribeSchedulesRequest {
9698
+ /**
9699
+ * 编排 ID 过滤条件,数组长度限制:100。
9700
+ */
9701
+ ScheduleIds?: Array<number>;
9702
+ /**
9703
+ * 状态,取值范围:
9704
+ <li>Enabled:已启用,</li>
9705
+ <li>Disabled:已禁用。</li>
9706
+ 不填此参数,则不区分工作流状态。
9707
+ */
9708
+ Status?: string;
9709
+ /**
9710
+ * 分页偏移量,默认值:0。
9711
+ */
9712
+ Offset?: number;
9713
+ /**
9714
+ * 返回记录条数,默认值:10,最大值:100。
9715
+ */
9716
+ Limit?: number;
9717
+ }
9501
9718
  /**
9502
9719
  * 点播文件音频流信息
9503
9720
  */
@@ -9820,17 +10037,41 @@ export interface DescribeSampleSnapshotTemplatesResponse {
9820
10037
  RequestId?: string;
9821
10038
  }
9822
10039
  /**
9823
- * DescribeMediaMetaData返回参数结构体
10040
+ * 内容审核涉黄/涉敏嫌疑片段
9824
10041
  */
9825
- export interface DescribeMediaMetaDataResponse {
10042
+ export interface MediaContentReviewSegmentItem {
9826
10043
  /**
9827
- * 媒体元信息。
10044
+ * 嫌疑片段起始的偏移时间,单位:秒。
9828
10045
  */
9829
- MetaData?: MediaMetaData;
10046
+ StartTimeOffset: number;
9830
10047
  /**
9831
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10048
+ * 嫌疑片段结束的偏移时间,单位:秒。
9832
10049
  */
9833
- RequestId?: string;
10050
+ EndTimeOffset: number;
10051
+ /**
10052
+ * 嫌疑片段涉黄分数。
10053
+ */
10054
+ Confidence: number;
10055
+ /**
10056
+ * 嫌疑片段鉴黄结果标签。
10057
+ */
10058
+ Label: string;
10059
+ /**
10060
+ * 嫌疑片段鉴黄结果建议,取值范围:
10061
+ <li>pass。</li>
10062
+ <li>review。</li>
10063
+ <li>block。</li>
10064
+ */
10065
+ Suggestion: string;
10066
+ /**
10067
+ * 嫌疑图片 URL (图片不会永久存储,到达
10068
+ PicUrlExpireTime 时间点后图片将被删除)。
10069
+ */
10070
+ Url: string;
10071
+ /**
10072
+ * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
10073
+ */
10074
+ PicUrlExpireTime: string;
9834
10075
  }
9835
10076
  /**
9836
10077
  * DescribeStreamLinkFlowRealtimeStatus返回参数结构体
@@ -9945,6 +10186,62 @@ export interface DescribeTranscodeTemplatesRequest {
9945
10186
  */
9946
10187
  TranscodeType?: string;
9947
10188
  }
10189
+ /**
10190
+ * 编排详情。
10191
+ */
10192
+ export interface SchedulesInfo {
10193
+ /**
10194
+ * 编排唯一标识。
10195
+ */
10196
+ ScheduleId: number;
10197
+ /**
10198
+ * 编排名称。
10199
+ 注意:此字段可能返回 null,表示取不到有效值。
10200
+ */
10201
+ ScheduleName: string;
10202
+ /**
10203
+ * 编排状态,取值范围:
10204
+ Enabled:已启用,
10205
+ Disabled:已禁用。
10206
+ 注意:此字段可能返回 null,表示取不到有效值。
10207
+ */
10208
+ Status: Array<string>;
10209
+ /**
10210
+ * 编排绑定的触发规则。
10211
+ 注意:此字段可能返回 null,表示取不到有效值。
10212
+ */
10213
+ Trigger: WorkflowTrigger;
10214
+ /**
10215
+ * 编排任务列表。
10216
+ 注意:此字段可能返回 null,表示取不到有效值。
10217
+ */
10218
+ Activities: Array<Activity>;
10219
+ /**
10220
+ * 媒体处理的文件输出存储位置。
10221
+ 注意:此字段可能返回 null,表示取不到有效值。
10222
+ */
10223
+ OutputStorage: TaskOutputStorage;
10224
+ /**
10225
+ * 媒体处理生成的文件输出的目标目录。
10226
+ 注意:此字段可能返回 null,表示取不到有效值。
10227
+ */
10228
+ OutputDir: string;
10229
+ /**
10230
+ * 任务的事件通知配置。
10231
+ 注意:此字段可能返回 null,表示取不到有效值。
10232
+ */
10233
+ TaskNotifyConfig: TaskNotifyConfig;
10234
+ /**
10235
+ * 创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
10236
+ 注意:此字段可能返回 null,表示取不到有效值。
10237
+ */
10238
+ CreateTime: string;
10239
+ /**
10240
+ * 最后编辑时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
10241
+ 注意:此字段可能返回 null,表示取不到有效值。
10242
+ */
10243
+ UpdateTime: string;
10244
+ }
9948
10245
  /**
9949
10246
  * DisableWorkflow请求参数结构体
9950
10247
  */
@@ -10197,6 +10494,15 @@ export interface DescribePersonSamplesResponse {
10197
10494
  */
10198
10495
  RequestId?: string;
10199
10496
  }
10497
+ /**
10498
+ * ModifySchedule返回参数结构体
10499
+ */
10500
+ export interface ModifyScheduleResponse {
10501
+ /**
10502
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10503
+ */
10504
+ RequestId?: string;
10505
+ }
10200
10506
  /**
10201
10507
  * 鉴黄任务控制参数
10202
10508
  */