tencentcloud-sdk-nodejs-mps 4.0.554 → 4.0.556
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.
- package/CHANGELOG.md +555 -0
- package/SERVICE_CHANGELOG.md +703 -67
- package/package.json +1 -1
- package/products.md +58 -57
- package/src/services/mps/v20190612/mps_client.ts +677 -575
- package/src/services/mps/v20190612/mps_models.ts +858 -305
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +231 -192
- package/tencentcloud/services/mps/v20190612/mps_client.js +335 -282
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +749 -276
|
@@ -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
|
*/
|
|
@@ -639,6 +648,43 @@ export interface DescribeOutputRTMPPullSettings {
|
|
|
639
648
|
*/
|
|
640
649
|
ServerUrls: Array<DescribeOutputRTMPPullServerUrl>;
|
|
641
650
|
}
|
|
651
|
+
/**
|
|
652
|
+
* AWS S3 文件是上传触发器。
|
|
653
|
+
*/
|
|
654
|
+
export interface AwsS3FileUploadTrigger {
|
|
655
|
+
/**
|
|
656
|
+
* 工作流绑定的 AWS S3 存储桶。
|
|
657
|
+
*/
|
|
658
|
+
S3Bucket: string;
|
|
659
|
+
/**
|
|
660
|
+
* 工作流绑定的桶所在 AWS 区域。
|
|
661
|
+
*/
|
|
662
|
+
S3Region: string;
|
|
663
|
+
/**
|
|
664
|
+
* 工作流绑定的输入路径目录,必须为绝对路径,即以 `/` 开头和结尾。如`/movie/201907/`,不填代表根目录`/`。
|
|
665
|
+
*/
|
|
666
|
+
Dir?: string;
|
|
667
|
+
/**
|
|
668
|
+
* 工作流允许触发的文件格式列表,如 ["mp4", "flv", "mov"]。不填代表所有格式的文件都可以触发工作流。
|
|
669
|
+
*/
|
|
670
|
+
Formats?: Array<string>;
|
|
671
|
+
/**
|
|
672
|
+
* 工作流绑定的 AWS S3 存储桶的秘钥ID。
|
|
673
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
674
|
+
*/
|
|
675
|
+
S3SecretId?: string;
|
|
676
|
+
/**
|
|
677
|
+
* 工作流绑定的 AWS S3 存储桶的秘钥Key。
|
|
678
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
679
|
+
*/
|
|
680
|
+
S3SecretKey?: string;
|
|
681
|
+
/**
|
|
682
|
+
* 工作流绑定的 AWS S3 存储桶对应的 SQS事件队列。
|
|
683
|
+
注意:队列和桶需要在同一区域。
|
|
684
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
685
|
+
*/
|
|
686
|
+
AwsSQS?: AwsSQS;
|
|
687
|
+
}
|
|
642
688
|
/**
|
|
643
689
|
* 用户自定义文本审核任务控制参数。
|
|
644
690
|
*/
|
|
@@ -830,8 +876,11 @@ export interface EnhanceConfig {
|
|
|
830
876
|
*/
|
|
831
877
|
export interface MediaInputInfo {
|
|
832
878
|
/**
|
|
833
|
-
|
|
834
|
-
|
|
879
|
+
* 输入来源对象的类型,支持:
|
|
880
|
+
<li> COS:COS源</li>
|
|
881
|
+
<li> URL:URL源</li>
|
|
882
|
+
<li> AWS-S3:AWS 源,目前只支持转码任务 </li>
|
|
883
|
+
*/
|
|
835
884
|
Type: string;
|
|
836
885
|
/**
|
|
837
886
|
* 当 Type 为 COS 时有效,则该项为必填,表示媒体处理 COS 对象信息。
|
|
@@ -842,6 +891,11 @@ export interface MediaInputInfo {
|
|
|
842
891
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
843
892
|
*/
|
|
844
893
|
UrlInputInfo?: UrlInputInfo;
|
|
894
|
+
/**
|
|
895
|
+
* 当 Type 为 AWS-S3 时有效,则该项为必填,表示媒体处理 AWS S3 对象信息。
|
|
896
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
897
|
+
*/
|
|
898
|
+
S3InputInfo?: S3InputInfo;
|
|
845
899
|
}
|
|
846
900
|
/**
|
|
847
901
|
* CreateWorkflow请求参数结构体
|
|
@@ -1269,6 +1323,41 @@ export interface AiReviewPoliticalTaskInput {
|
|
|
1269
1323
|
*/
|
|
1270
1324
|
Definition: number;
|
|
1271
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
|
+
}
|
|
1272
1361
|
/**
|
|
1273
1362
|
* 创建媒体传输流的输出的RTP的目标地址。
|
|
1274
1363
|
*/
|
|
@@ -1429,37 +1518,21 @@ export interface DescribeStreamLinkFlowsResponse {
|
|
|
1429
1518
|
RequestId?: string;
|
|
1430
1519
|
}
|
|
1431
1520
|
/**
|
|
1432
|
-
*
|
|
1521
|
+
* 语音识别片段。
|
|
1433
1522
|
*/
|
|
1434
|
-
export interface
|
|
1435
|
-
/**
|
|
1436
|
-
* 采样截图规格 ID,参见[采样截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.87.87.E6.A0.B7.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
|
|
1437
|
-
*/
|
|
1438
|
-
Definition: number;
|
|
1439
|
-
/**
|
|
1440
|
-
* 采样方式,取值范围:
|
|
1441
|
-
<li>Percent:根据百分比间隔采样。</li>
|
|
1442
|
-
<li>Time:根据时间间隔采样。</li>
|
|
1443
|
-
*/
|
|
1444
|
-
SampleType: string;
|
|
1445
|
-
/**
|
|
1446
|
-
* 采样间隔
|
|
1447
|
-
<li>当 SampleType 为 Percent 时,该值表示多少百分比一张图。</li>
|
|
1448
|
-
<li>当 SampleType 为 Time 时,该值表示多少时间间隔一张图,单位秒, 第一张图均为视频首帧。</li>
|
|
1449
|
-
*/
|
|
1450
|
-
Interval: number;
|
|
1523
|
+
export interface AiRecognitionTaskAsrWordsSegmentItem {
|
|
1451
1524
|
/**
|
|
1452
|
-
*
|
|
1525
|
+
* 识别片段起始的偏移时间,单位:秒。
|
|
1453
1526
|
*/
|
|
1454
|
-
|
|
1527
|
+
StartTimeOffset: number;
|
|
1455
1528
|
/**
|
|
1456
|
-
*
|
|
1529
|
+
* 识别片段终止的偏移时间,单位:秒。
|
|
1457
1530
|
*/
|
|
1458
|
-
|
|
1531
|
+
EndTimeOffset: number;
|
|
1459
1532
|
/**
|
|
1460
|
-
*
|
|
1533
|
+
* 识别片段置信度。取值:0~100。
|
|
1461
1534
|
*/
|
|
1462
|
-
|
|
1535
|
+
Confidence: number;
|
|
1463
1536
|
}
|
|
1464
1537
|
/**
|
|
1465
1538
|
* 内容审核结果
|
|
@@ -2118,6 +2191,19 @@ export interface CosInputInfo {
|
|
|
2118
2191
|
*/
|
|
2119
2192
|
Object: string;
|
|
2120
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
|
+
}
|
|
2121
2207
|
/**
|
|
2122
2208
|
* 智能标签任务控制参数
|
|
2123
2209
|
*/
|
|
@@ -2767,6 +2853,23 @@ export interface ScheduleRecognitionTaskResult {
|
|
|
2767
2853
|
*/
|
|
2768
2854
|
Output: Array<AiRecognitionResult>;
|
|
2769
2855
|
}
|
|
2856
|
+
/**
|
|
2857
|
+
* WithdrawsWatermark请求参数结构体
|
|
2858
|
+
*/
|
|
2859
|
+
export interface WithdrawsWatermarkRequest {
|
|
2860
|
+
/**
|
|
2861
|
+
* 输入媒体文件存储信息。
|
|
2862
|
+
*/
|
|
2863
|
+
InputInfo: MediaInputInfo;
|
|
2864
|
+
/**
|
|
2865
|
+
* 任务的事件通知信息,不填代表不获取事件通知。
|
|
2866
|
+
*/
|
|
2867
|
+
TaskNotifyConfig?: TaskNotifyConfig;
|
|
2868
|
+
/**
|
|
2869
|
+
* 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
|
|
2870
|
+
*/
|
|
2871
|
+
SessionContext?: string;
|
|
2872
|
+
}
|
|
2770
2873
|
/**
|
|
2771
2874
|
* 语音全文识别的输入。
|
|
2772
2875
|
*/
|
|
@@ -2814,6 +2917,15 @@ export interface MediaProcessTaskInput {
|
|
|
2814
2917
|
*/
|
|
2815
2918
|
AdaptiveDynamicStreamingTaskSet?: Array<AdaptiveDynamicStreamingTaskInput>;
|
|
2816
2919
|
}
|
|
2920
|
+
/**
|
|
2921
|
+
* DisableSchedule请求参数结构体
|
|
2922
|
+
*/
|
|
2923
|
+
export interface DisableScheduleRequest {
|
|
2924
|
+
/**
|
|
2925
|
+
* 编排唯一表示。
|
|
2926
|
+
*/
|
|
2927
|
+
ScheduleId: number;
|
|
2928
|
+
}
|
|
2817
2929
|
/**
|
|
2818
2930
|
* 创建的输入RTMP拉流源站配置信息。
|
|
2819
2931
|
*/
|
|
@@ -2841,25 +2953,34 @@ export interface CosOutputStorage {
|
|
|
2841
2953
|
Region?: string;
|
|
2842
2954
|
}
|
|
2843
2955
|
/**
|
|
2844
|
-
*
|
|
2956
|
+
* 转动图任务结果类型
|
|
2845
2957
|
*/
|
|
2846
|
-
export interface
|
|
2958
|
+
export interface MediaProcessTaskAnimatedGraphicResult {
|
|
2847
2959
|
/**
|
|
2848
|
-
*
|
|
2960
|
+
* 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
|
|
2849
2961
|
*/
|
|
2850
|
-
|
|
2962
|
+
Status: string;
|
|
2851
2963
|
/**
|
|
2852
|
-
*
|
|
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) 列表。
|
|
2853
2965
|
*/
|
|
2854
|
-
|
|
2966
|
+
ErrCodeExt: string;
|
|
2855
2967
|
/**
|
|
2856
|
-
*
|
|
2968
|
+
* 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
|
|
2857
2969
|
*/
|
|
2858
|
-
|
|
2970
|
+
ErrCode: number;
|
|
2859
2971
|
/**
|
|
2860
|
-
*
|
|
2972
|
+
* 错误信息。
|
|
2861
2973
|
*/
|
|
2862
|
-
|
|
2974
|
+
Message: string;
|
|
2975
|
+
/**
|
|
2976
|
+
* 转动图任务的输入。
|
|
2977
|
+
*/
|
|
2978
|
+
Input: AnimatedGraphicTaskInput;
|
|
2979
|
+
/**
|
|
2980
|
+
* 转动图任务的输出。
|
|
2981
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2982
|
+
*/
|
|
2983
|
+
Output: MediaAnimatedGraphicsItem;
|
|
2863
2984
|
}
|
|
2864
2985
|
/**
|
|
2865
2986
|
* ProcessMedia返回参数结构体
|
|
@@ -2895,13 +3016,33 @@ export interface ClassificationConfigureInfoForUpdate {
|
|
|
2895
3016
|
Switch?: string;
|
|
2896
3017
|
}
|
|
2897
3018
|
/**
|
|
2898
|
-
*
|
|
3019
|
+
* CreateSchedule请求参数结构体
|
|
2899
3020
|
*/
|
|
2900
|
-
export interface
|
|
3021
|
+
export interface CreateScheduleRequest {
|
|
2901
3022
|
/**
|
|
2902
|
-
*
|
|
3023
|
+
* 编排名称,最多128字符。同一个用户该名称唯一。
|
|
2903
3024
|
*/
|
|
2904
|
-
|
|
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;
|
|
2905
3046
|
}
|
|
2906
3047
|
/**
|
|
2907
3048
|
* CreateAnimatedGraphicsTemplate请求参数结构体
|
|
@@ -3184,6 +3325,15 @@ export interface ProhibitedAsrReviewTemplateInfoForUpdate {
|
|
|
3184
3325
|
*/
|
|
3185
3326
|
ReviewConfidence?: number;
|
|
3186
3327
|
}
|
|
3328
|
+
/**
|
|
3329
|
+
* DisableSchedule返回参数结构体
|
|
3330
|
+
*/
|
|
3331
|
+
export interface DisableScheduleResponse {
|
|
3332
|
+
/**
|
|
3333
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3334
|
+
*/
|
|
3335
|
+
RequestId?: string;
|
|
3336
|
+
}
|
|
3187
3337
|
/**
|
|
3188
3338
|
* ModifyAnimatedGraphicsTemplate返回参数结构体
|
|
3189
3339
|
*/
|
|
@@ -3328,6 +3478,31 @@ export interface CreateStreamLinkOutputInfoResponse {
|
|
|
3328
3478
|
*/
|
|
3329
3479
|
RequestId?: string;
|
|
3330
3480
|
}
|
|
3481
|
+
/**
|
|
3482
|
+
* AWS S3存储输入
|
|
3483
|
+
*/
|
|
3484
|
+
export interface S3InputInfo {
|
|
3485
|
+
/**
|
|
3486
|
+
* S3 bucket。
|
|
3487
|
+
*/
|
|
3488
|
+
S3Bucket: string;
|
|
3489
|
+
/**
|
|
3490
|
+
* S3 bucket 对应的区域。
|
|
3491
|
+
*/
|
|
3492
|
+
S3Region: string;
|
|
3493
|
+
/**
|
|
3494
|
+
* S3 bucket 中的媒体资源路径。
|
|
3495
|
+
*/
|
|
3496
|
+
S3Object: string;
|
|
3497
|
+
/**
|
|
3498
|
+
* AWS 内网访问 媒体资源的秘钥id。
|
|
3499
|
+
*/
|
|
3500
|
+
S3SecretId?: string;
|
|
3501
|
+
/**
|
|
3502
|
+
* AWS 内网访问 媒体资源的秘钥key。
|
|
3503
|
+
*/
|
|
3504
|
+
S3SecretKey?: string;
|
|
3505
|
+
}
|
|
3331
3506
|
/**
|
|
3332
3507
|
* 对视频截雪碧图任务结果类型
|
|
3333
3508
|
*/
|
|
@@ -3550,6 +3725,39 @@ export interface ProhibitedConfigureInfoForUpdate {
|
|
|
3550
3725
|
*/
|
|
3551
3726
|
OcrReviewInfo?: ProhibitedOcrReviewTemplateInfoForUpdate;
|
|
3552
3727
|
}
|
|
3728
|
+
/**
|
|
3729
|
+
* 采样截图信息
|
|
3730
|
+
*/
|
|
3731
|
+
export interface MediaSampleSnapshotItem {
|
|
3732
|
+
/**
|
|
3733
|
+
* 采样截图规格 ID,参见[采样截图参数模板](https://cloud.tencent.com/document/product/266/33480#.E9.87.87.E6.A0.B7.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
|
|
3734
|
+
*/
|
|
3735
|
+
Definition: number;
|
|
3736
|
+
/**
|
|
3737
|
+
* 采样方式,取值范围:
|
|
3738
|
+
<li>Percent:根据百分比间隔采样。</li>
|
|
3739
|
+
<li>Time:根据时间间隔采样。</li>
|
|
3740
|
+
*/
|
|
3741
|
+
SampleType: string;
|
|
3742
|
+
/**
|
|
3743
|
+
* 采样间隔
|
|
3744
|
+
<li>当 SampleType 为 Percent 时,该值表示多少百分比一张图。</li>
|
|
3745
|
+
<li>当 SampleType 为 Time 时,该值表示多少时间间隔一张图,单位秒, 第一张图均为视频首帧。</li>
|
|
3746
|
+
*/
|
|
3747
|
+
Interval: number;
|
|
3748
|
+
/**
|
|
3749
|
+
* 截图后文件的存储位置。
|
|
3750
|
+
*/
|
|
3751
|
+
Storage: TaskOutputStorage;
|
|
3752
|
+
/**
|
|
3753
|
+
* 生成的截图 path 列表。
|
|
3754
|
+
*/
|
|
3755
|
+
ImagePathSet: Array<string>;
|
|
3756
|
+
/**
|
|
3757
|
+
* 截图如果被打上了水印,被打水印的模板 ID 列表。
|
|
3758
|
+
*/
|
|
3759
|
+
WaterMarkDefinition: Array<number>;
|
|
3760
|
+
}
|
|
3553
3761
|
/**
|
|
3554
3762
|
* 智能标签任务控制参数
|
|
3555
3763
|
*/
|
|
@@ -3571,13 +3779,13 @@ export interface DeleteWordSamplesRequest {
|
|
|
3571
3779
|
Keywords: Array<string>;
|
|
3572
3780
|
}
|
|
3573
3781
|
/**
|
|
3574
|
-
*
|
|
3782
|
+
* EnableSchedule请求参数结构体
|
|
3575
3783
|
*/
|
|
3576
|
-
export interface
|
|
3784
|
+
export interface EnableScheduleRequest {
|
|
3577
3785
|
/**
|
|
3578
|
-
*
|
|
3786
|
+
* 编排唯一标识。
|
|
3579
3787
|
*/
|
|
3580
|
-
|
|
3788
|
+
ScheduleId: number;
|
|
3581
3789
|
}
|
|
3582
3790
|
/**
|
|
3583
3791
|
* 自定义转码的规格参数。
|
|
@@ -3862,59 +4070,100 @@ export interface CreateOutputInfo {
|
|
|
3862
4070
|
*/
|
|
3863
4071
|
export interface TaskOutputStorage {
|
|
3864
4072
|
/**
|
|
3865
|
-
|
|
3866
|
-
|
|
4073
|
+
* 媒体处理输出对象存储位置的类型,支持:
|
|
4074
|
+
<li>COS:COS存储</li>
|
|
4075
|
+
<li>AWS-S3:AWS 存储,只适用于AWS任务,且要求同区域</li>
|
|
4076
|
+
*/
|
|
3867
4077
|
Type: string;
|
|
3868
4078
|
/**
|
|
3869
4079
|
* 当 Type 为 COS 时有效,则该项为必填,表示媒体处理 COS 输出位置。
|
|
3870
4080
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3871
4081
|
*/
|
|
3872
4082
|
CosOutputStorage?: CosOutputStorage;
|
|
4083
|
+
/**
|
|
4084
|
+
* 当 Type 为 AWS-S3 时有效,则该项为必填,表示媒体处理 AWS S3 输出位置。
|
|
4085
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4086
|
+
*/
|
|
4087
|
+
S3OutputStorage?: S3OutputStorage;
|
|
3873
4088
|
}
|
|
3874
4089
|
/**
|
|
3875
|
-
*
|
|
4090
|
+
* 任务查询结果类型
|
|
3876
4091
|
*/
|
|
3877
|
-
export interface
|
|
3878
|
-
/**
|
|
3879
|
-
* 时间戳,单位为秒。
|
|
3880
|
-
*/
|
|
3881
|
-
Timestamp: number;
|
|
4092
|
+
export interface MediaProcessTaskResult {
|
|
3882
4093
|
/**
|
|
3883
|
-
|
|
3884
|
-
|
|
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
|
+
*/
|
|
3885
4103
|
Type: string;
|
|
3886
4104
|
/**
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
4105
|
+
* 视频转码任务的查询结果,当任务类型为 Transcode 时有效。
|
|
4106
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4107
|
+
*/
|
|
4108
|
+
TranscodeTask: MediaProcessTaskTranscodeResult;
|
|
3890
4109
|
/**
|
|
3891
|
-
|
|
4110
|
+
* 视频转动图任务的查询结果,当任务类型为 AnimatedGraphics 时有效。
|
|
4111
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4112
|
+
*/
|
|
4113
|
+
AnimatedGraphicTask: MediaProcessTaskAnimatedGraphicResult;
|
|
4114
|
+
/**
|
|
4115
|
+
* 对视频按时间点截图任务的查询结果,当任务类型为 SnapshotByTimeOffset 时有效。
|
|
4116
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4117
|
+
*/
|
|
4118
|
+
SnapshotByTimeOffsetTask: MediaProcessTaskSnapshotByTimeOffsetResult;
|
|
4119
|
+
/**
|
|
4120
|
+
* 对视频采样截图任务的查询结果,当任务类型为 SampleSnapshot 时有效。
|
|
4121
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4122
|
+
*/
|
|
4123
|
+
SampleSnapshotTask: MediaProcessTaskSampleSnapshotResult;
|
|
4124
|
+
/**
|
|
4125
|
+
* 对视频截雪碧图任务的查询结果,当任务类型为 ImageSprite 时有效。
|
|
4126
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4127
|
+
*/
|
|
4128
|
+
ImageSpriteTask: MediaProcessTaskImageSpriteResult;
|
|
4129
|
+
/**
|
|
4130
|
+
* 转自适应码流任务查询结果,当任务类型为 AdaptiveDynamicStreaming 时有效。
|
|
4131
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4132
|
+
*/
|
|
4133
|
+
AdaptiveDynamicStreamingTask: MediaProcessTaskAdaptiveDynamicStreamingResult;
|
|
4134
|
+
}
|
|
4135
|
+
/**
|
|
4136
|
+
* ModifyAIAnalysisTemplate请求参数结构体
|
|
4137
|
+
*/
|
|
4138
|
+
export interface ModifyAIAnalysisTemplateRequest {
|
|
4139
|
+
/**
|
|
4140
|
+
* 视频内容分析模板唯一标识。
|
|
3892
4141
|
*/
|
|
3893
|
-
|
|
4142
|
+
Definition: number;
|
|
3894
4143
|
/**
|
|
3895
|
-
*
|
|
4144
|
+
* 视频内容分析模板名称,长度限制:64 个字符。
|
|
3896
4145
|
*/
|
|
3897
|
-
|
|
4146
|
+
Name?: string;
|
|
3898
4147
|
/**
|
|
3899
|
-
*
|
|
4148
|
+
* 视频内容分析模板描述信息,长度限制:256 个字符。
|
|
3900
4149
|
*/
|
|
3901
|
-
|
|
4150
|
+
Comment?: string;
|
|
3902
4151
|
/**
|
|
3903
|
-
*
|
|
4152
|
+
* 智能分类任务控制参数。
|
|
3904
4153
|
*/
|
|
3905
|
-
|
|
4154
|
+
ClassificationConfigure?: ClassificationConfigureInfoForUpdate;
|
|
3906
4155
|
/**
|
|
3907
|
-
*
|
|
4156
|
+
* 智能标签任务控制参数。
|
|
3908
4157
|
*/
|
|
3909
|
-
|
|
4158
|
+
TagConfigure?: TagConfigureInfoForUpdate;
|
|
3910
4159
|
/**
|
|
3911
|
-
*
|
|
4160
|
+
* 智能封面任务控制参数。
|
|
3912
4161
|
*/
|
|
3913
|
-
|
|
4162
|
+
CoverConfigure?: CoverConfigureInfoForUpdate;
|
|
3914
4163
|
/**
|
|
3915
|
-
*
|
|
4164
|
+
* 智能按帧标签任务控制参数。
|
|
3916
4165
|
*/
|
|
3917
|
-
|
|
4166
|
+
FrameTagConfigure?: FrameTagConfigureInfoForUpdate;
|
|
3918
4167
|
}
|
|
3919
4168
|
/**
|
|
3920
4169
|
* 用户自定义审核任务控制参数
|
|
@@ -4116,34 +4365,25 @@ export interface ModifyWordSampleRequest {
|
|
|
4116
4365
|
TagOperationInfo?: AiSampleTagOperation;
|
|
4117
4366
|
}
|
|
4118
4367
|
/**
|
|
4119
|
-
*
|
|
4368
|
+
* 人脸识别结果片段
|
|
4120
4369
|
*/
|
|
4121
|
-
export interface
|
|
4122
|
-
/**
|
|
4123
|
-
* 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
|
|
4124
|
-
*/
|
|
4125
|
-
Status: string;
|
|
4370
|
+
export interface AiRecognitionTaskFaceSegmentItem {
|
|
4126
4371
|
/**
|
|
4127
|
-
*
|
|
4372
|
+
* 识别片段起始的偏移时间,单位:秒。
|
|
4128
4373
|
*/
|
|
4129
|
-
|
|
4374
|
+
StartTimeOffset: number;
|
|
4130
4375
|
/**
|
|
4131
|
-
*
|
|
4376
|
+
* 识别片段终止的偏移时间,单位:秒。
|
|
4132
4377
|
*/
|
|
4133
|
-
|
|
4378
|
+
EndTimeOffset: number;
|
|
4134
4379
|
/**
|
|
4135
|
-
*
|
|
4380
|
+
* 识别片段置信度。取值:0~100。
|
|
4136
4381
|
*/
|
|
4137
|
-
|
|
4382
|
+
Confidence: number;
|
|
4138
4383
|
/**
|
|
4139
|
-
*
|
|
4384
|
+
* 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
|
|
4140
4385
|
*/
|
|
4141
|
-
|
|
4142
|
-
/**
|
|
4143
|
-
* 转动图任务的输出。
|
|
4144
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4145
|
-
*/
|
|
4146
|
-
Output: MediaAnimatedGraphicsItem;
|
|
4386
|
+
AreaCoordSet: Array<number>;
|
|
4147
4387
|
}
|
|
4148
4388
|
/**
|
|
4149
4389
|
* 智能标签结果类型
|
|
@@ -4374,6 +4614,23 @@ export interface AiRecognitionTaskTransTextResultInput {
|
|
|
4374
4614
|
*/
|
|
4375
4615
|
Definition: number;
|
|
4376
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
|
+
}
|
|
4377
4634
|
/**
|
|
4378
4635
|
* 综合增强配置
|
|
4379
4636
|
*/
|
|
@@ -5017,14 +5274,25 @@ export interface CreateOutputRTMPSettings {
|
|
|
5017
5274
|
*/
|
|
5018
5275
|
export interface WorkflowTrigger {
|
|
5019
5276
|
/**
|
|
5020
|
-
|
|
5021
|
-
|
|
5277
|
+
* 触发器的类型,可选值:
|
|
5278
|
+
<li>CosFileUpload:COS触发</li>
|
|
5279
|
+
<li>AwsS3FileUpload:AWS触发,目前只支持转码任务。只有编排支持,工作流不支持。 </li>
|
|
5280
|
+
|
|
5281
|
+
|
|
5282
|
+
*/
|
|
5022
5283
|
Type: string;
|
|
5023
5284
|
/**
|
|
5024
5285
|
* 当 Type 为 CosFileUpload 时必填且有效,为 COS 触发规则。
|
|
5025
5286
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5026
5287
|
*/
|
|
5027
5288
|
CosFileUploadTrigger?: CosFileUploadTrigger;
|
|
5289
|
+
/**
|
|
5290
|
+
* 当 Type 为 AwsS3FileUpload 时必填且有效,为 AWS S3 触发规则。
|
|
5291
|
+
|
|
5292
|
+
注意:目前AWS的S3、对应触发队列SQS、回调队列SQS的秘钥需要一致。
|
|
5293
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5294
|
+
*/
|
|
5295
|
+
AwsS3FileUploadTrigger?: AwsS3FileUploadTrigger;
|
|
5028
5296
|
}
|
|
5029
5297
|
/**
|
|
5030
5298
|
* 创建的输入HLS拉流源站配置信息。
|
|
@@ -5045,51 +5313,45 @@ export interface LiveStreamAiRecognitionResultInfo {
|
|
|
5045
5313
|
ResultSet: Array<LiveStreamAiRecognitionResultItem>;
|
|
5046
5314
|
}
|
|
5047
5315
|
/**
|
|
5048
|
-
*
|
|
5316
|
+
* 编排原子任务
|
|
5049
5317
|
*/
|
|
5050
|
-
export interface
|
|
5318
|
+
export interface ActivityPara {
|
|
5051
5319
|
/**
|
|
5052
|
-
*
|
|
5320
|
+
* 视频转码任务
|
|
5053
5321
|
*/
|
|
5054
|
-
|
|
5322
|
+
TranscodeTask?: TranscodeTaskInput;
|
|
5055
5323
|
/**
|
|
5056
|
-
*
|
|
5324
|
+
* 视频转动图任务
|
|
5057
5325
|
*/
|
|
5058
|
-
|
|
5326
|
+
AnimatedGraphicTask?: AnimatedGraphicTaskInput;
|
|
5059
5327
|
/**
|
|
5060
|
-
*
|
|
5328
|
+
* 视频按时间点截图任务
|
|
5061
5329
|
*/
|
|
5062
|
-
|
|
5330
|
+
SnapshotByTimeOffsetTask?: SnapshotByTimeOffsetTaskInput;
|
|
5063
5331
|
/**
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
<li>block</li>
|
|
5068
|
-
*/
|
|
5069
|
-
Suggestion: string;
|
|
5332
|
+
* 视频采样截图任务
|
|
5333
|
+
*/
|
|
5334
|
+
SampleSnapshotTask?: SampleSnapshotTaskInput;
|
|
5070
5335
|
/**
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
*/
|
|
5075
|
-
Label: string;
|
|
5336
|
+
* 视频截雪碧图任务
|
|
5337
|
+
*/
|
|
5338
|
+
ImageSpriteTask?: ImageSpriteTaskInput;
|
|
5076
5339
|
/**
|
|
5077
|
-
*
|
|
5340
|
+
* 转自适应码流任务
|
|
5078
5341
|
*/
|
|
5079
|
-
|
|
5342
|
+
AdaptiveDynamicStreamingTask?: AdaptiveDynamicStreamingTaskInput;
|
|
5080
5343
|
/**
|
|
5081
|
-
*
|
|
5344
|
+
* 视频内容审核类型任务
|
|
5082
5345
|
*/
|
|
5083
|
-
|
|
5346
|
+
AiContentReviewTask?: AiContentReviewTaskInput;
|
|
5084
5347
|
/**
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
|
|
5088
|
-
Url: string;
|
|
5348
|
+
* 视频内容分析类型任务
|
|
5349
|
+
*/
|
|
5350
|
+
AiAnalysisTask?: AiAnalysisTaskInput;
|
|
5089
5351
|
/**
|
|
5090
|
-
*
|
|
5352
|
+
* 视频内容识别类型任务
|
|
5091
5353
|
*/
|
|
5092
|
-
|
|
5354
|
+
AiRecognitionTask?: AiRecognitionTaskInput;
|
|
5093
5355
|
}
|
|
5094
5356
|
/**
|
|
5095
5357
|
* 文本涉敏任务控制参数
|
|
@@ -5241,6 +5503,15 @@ export interface TerrorismConfigureInfoForUpdate {
|
|
|
5241
5503
|
*/
|
|
5242
5504
|
OcrReviewInfo?: TerrorismOcrReviewTemplateInfoForUpdate;
|
|
5243
5505
|
}
|
|
5506
|
+
/**
|
|
5507
|
+
* EnableSchedule返回参数结构体
|
|
5508
|
+
*/
|
|
5509
|
+
export interface EnableScheduleResponse {
|
|
5510
|
+
/**
|
|
5511
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5512
|
+
*/
|
|
5513
|
+
RequestId?: string;
|
|
5514
|
+
}
|
|
5244
5515
|
/**
|
|
5245
5516
|
* SRT输出的监听地址。
|
|
5246
5517
|
*/
|
|
@@ -5254,6 +5525,15 @@ export interface OutputSRTSourceAddressResp {
|
|
|
5254
5525
|
*/
|
|
5255
5526
|
Port: number;
|
|
5256
5527
|
}
|
|
5528
|
+
/**
|
|
5529
|
+
* DeleteAdaptiveDynamicStreamingTemplate返回参数结构体
|
|
5530
|
+
*/
|
|
5531
|
+
export interface DeleteAdaptiveDynamicStreamingTemplateResponse {
|
|
5532
|
+
/**
|
|
5533
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5534
|
+
*/
|
|
5535
|
+
RequestId?: string;
|
|
5536
|
+
}
|
|
5257
5537
|
/**
|
|
5258
5538
|
* 媒体传输的地区信息。
|
|
5259
5539
|
*/
|
|
@@ -5429,6 +5709,53 @@ export interface HeadTailParameter {
|
|
|
5429
5709
|
*/
|
|
5430
5710
|
TailSet?: Array<MediaInputInfo>;
|
|
5431
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
|
+
}
|
|
5432
5759
|
/**
|
|
5433
5760
|
* 图片水印模板输入参数
|
|
5434
5761
|
*/
|
|
@@ -6208,6 +6535,15 @@ export interface InputAddress {
|
|
|
6208
6535
|
*/
|
|
6209
6536
|
Port: number;
|
|
6210
6537
|
}
|
|
6538
|
+
/**
|
|
6539
|
+
* DeleteSchedule请求参数结构体
|
|
6540
|
+
*/
|
|
6541
|
+
export interface DeleteScheduleRequest {
|
|
6542
|
+
/**
|
|
6543
|
+
* 编排唯一标识。
|
|
6544
|
+
*/
|
|
6545
|
+
ScheduleId: number;
|
|
6546
|
+
}
|
|
6211
6547
|
/**
|
|
6212
6548
|
* CreateAdaptiveDynamicStreamingTemplate返回参数结构体
|
|
6213
6549
|
*/
|
|
@@ -6427,6 +6763,19 @@ export interface ProhibitedAsrReviewTemplateInfo {
|
|
|
6427
6763
|
*/
|
|
6428
6764
|
ReviewConfidence?: number;
|
|
6429
6765
|
}
|
|
6766
|
+
/**
|
|
6767
|
+
* WithdrawsWatermark返回参数结构体
|
|
6768
|
+
*/
|
|
6769
|
+
export interface WithdrawsWatermarkResponse {
|
|
6770
|
+
/**
|
|
6771
|
+
* 任务 ID,可以通过该 ID 查询任务状态和结果。
|
|
6772
|
+
*/
|
|
6773
|
+
TaskId: string;
|
|
6774
|
+
/**
|
|
6775
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6776
|
+
*/
|
|
6777
|
+
RequestId?: string;
|
|
6778
|
+
}
|
|
6430
6779
|
/**
|
|
6431
6780
|
* 内容审核 Asr 文字敏感任务输入参数类型
|
|
6432
6781
|
*/
|
|
@@ -6611,21 +6960,13 @@ export interface AiReviewTaskPoliticalAsrResult {
|
|
|
6611
6960
|
Output: AiReviewPoliticalAsrTaskOutput;
|
|
6612
6961
|
}
|
|
6613
6962
|
/**
|
|
6614
|
-
*
|
|
6963
|
+
* 查询输入的RTSP配置信息。
|
|
6615
6964
|
*/
|
|
6616
|
-
export interface
|
|
6617
|
-
/**
|
|
6618
|
-
* 识别片段起始的偏移时间,单位:秒。
|
|
6619
|
-
*/
|
|
6620
|
-
StartTimeOffset: number;
|
|
6621
|
-
/**
|
|
6622
|
-
* 识别片段终止的偏移时间,单位:秒。
|
|
6623
|
-
*/
|
|
6624
|
-
EndTimeOffset: number;
|
|
6965
|
+
export interface DescribeInputRTSPPullSettings {
|
|
6625
6966
|
/**
|
|
6626
|
-
*
|
|
6967
|
+
* RTSP源站地址信息。
|
|
6627
6968
|
*/
|
|
6628
|
-
|
|
6969
|
+
SourceAddresses: Array<DescribeRTSPPullSourceAddress>;
|
|
6629
6970
|
}
|
|
6630
6971
|
/**
|
|
6631
6972
|
* 字幕流配置参数。
|
|
@@ -6701,46 +7042,22 @@ export interface AiReviewProhibitedAsrTaskInput {
|
|
|
6701
7042
|
Definition: number;
|
|
6702
7043
|
}
|
|
6703
7044
|
/**
|
|
6704
|
-
*
|
|
7045
|
+
* DescribeMediaMetaData返回参数结构体
|
|
6705
7046
|
*/
|
|
6706
|
-
export interface
|
|
7047
|
+
export interface DescribeMediaMetaDataResponse {
|
|
6707
7048
|
/**
|
|
6708
|
-
*
|
|
7049
|
+
* 媒体元信息。
|
|
6709
7050
|
*/
|
|
6710
|
-
|
|
7051
|
+
MetaData?: MediaMetaData;
|
|
6711
7052
|
/**
|
|
6712
|
-
*
|
|
7053
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6713
7054
|
*/
|
|
6714
|
-
|
|
6715
|
-
|
|
6716
|
-
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
* 嫌疑片段鉴黄结果标签。
|
|
6721
|
-
*/
|
|
6722
|
-
Label: string;
|
|
6723
|
-
/**
|
|
6724
|
-
* 嫌疑片段鉴黄结果建议,取值范围:
|
|
6725
|
-
<li>pass。</li>
|
|
6726
|
-
<li>review。</li>
|
|
6727
|
-
<li>block。</li>
|
|
6728
|
-
*/
|
|
6729
|
-
Suggestion: string;
|
|
6730
|
-
/**
|
|
6731
|
-
* 嫌疑图片 URL (图片不会永久存储,到达
|
|
6732
|
-
PicUrlExpireTime 时间点后图片将被删除)。
|
|
6733
|
-
*/
|
|
6734
|
-
Url: string;
|
|
6735
|
-
/**
|
|
6736
|
-
* 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
6737
|
-
*/
|
|
6738
|
-
PicUrlExpireTime: string;
|
|
6739
|
-
}
|
|
6740
|
-
/**
|
|
6741
|
-
* 文本涉敏任务控制参数
|
|
6742
|
-
*/
|
|
6743
|
-
export interface TerrorismOcrReviewTemplateInfo {
|
|
7055
|
+
RequestId?: string;
|
|
7056
|
+
}
|
|
7057
|
+
/**
|
|
7058
|
+
* 文本涉敏任务控制参数
|
|
7059
|
+
*/
|
|
7060
|
+
export interface TerrorismOcrReviewTemplateInfo {
|
|
6744
7061
|
/**
|
|
6745
7062
|
* 文本涉敏任务开关,可选值:
|
|
6746
7063
|
<li>ON:开启文本涉敏任务;</li>
|
|
@@ -7274,6 +7591,27 @@ export interface UserDefineConfigureInfoForUpdate {
|
|
|
7274
7591
|
*/
|
|
7275
7592
|
OcrReviewInfo: UserDefineOcrTextReviewTemplateInfoForUpdate;
|
|
7276
7593
|
}
|
|
7594
|
+
/**
|
|
7595
|
+
* AWS S3 输出位置
|
|
7596
|
+
*/
|
|
7597
|
+
export interface S3OutputStorage {
|
|
7598
|
+
/**
|
|
7599
|
+
* S3 bucket。
|
|
7600
|
+
*/
|
|
7601
|
+
S3Bucket: string;
|
|
7602
|
+
/**
|
|
7603
|
+
* S3 bucket 对应的区域。
|
|
7604
|
+
*/
|
|
7605
|
+
S3Region: string;
|
|
7606
|
+
/**
|
|
7607
|
+
* AWS 内网上传 媒体资源的秘钥id。
|
|
7608
|
+
*/
|
|
7609
|
+
S3SecretId?: string;
|
|
7610
|
+
/**
|
|
7611
|
+
* AWS 内网上传 媒体资源的秘钥key。
|
|
7612
|
+
*/
|
|
7613
|
+
S3SecretKey?: string;
|
|
7614
|
+
}
|
|
7277
7615
|
/**
|
|
7278
7616
|
* 绑定到 COS 的输入规则。
|
|
7279
7617
|
*/
|
|
@@ -7746,50 +8084,49 @@ export interface AiRecognitionTaskOcrWordsSegmentItem {
|
|
|
7746
8084
|
AreaCoordSet: Array<number>;
|
|
7747
8085
|
}
|
|
7748
8086
|
/**
|
|
7749
|
-
*
|
|
8087
|
+
* 传输流日志信息。
|
|
7750
8088
|
*/
|
|
7751
|
-
export interface
|
|
8089
|
+
export interface FlowLogInfo {
|
|
7752
8090
|
/**
|
|
7753
|
-
|
|
7754
|
-
|
|
7755
|
-
|
|
7756
|
-
|
|
7757
|
-
|
|
7758
|
-
|
|
7759
|
-
<li>CoverBySnapshot:截图做封面</li>
|
|
7760
|
-
<li>AdaptiveDynamicStreaming:自适应码流</li>
|
|
7761
|
-
*/
|
|
8091
|
+
* 时间戳,单位为秒。
|
|
8092
|
+
*/
|
|
8093
|
+
Timestamp: number;
|
|
8094
|
+
/**
|
|
8095
|
+
* 输入输出类型(input/output)。
|
|
8096
|
+
*/
|
|
7762
8097
|
Type: string;
|
|
7763
8098
|
/**
|
|
7764
|
-
|
|
7765
|
-
|
|
7766
|
-
|
|
7767
|
-
TranscodeTask: MediaProcessTaskTranscodeResult;
|
|
8099
|
+
* 输入或输出Id。
|
|
8100
|
+
*/
|
|
8101
|
+
InputOutputId: string;
|
|
7768
8102
|
/**
|
|
7769
|
-
|
|
7770
|
-
|
|
7771
|
-
|
|
7772
|
-
AnimatedGraphicTask: MediaProcessTaskAnimatedGraphicResult;
|
|
8103
|
+
* 协议。
|
|
8104
|
+
*/
|
|
8105
|
+
Protocol: string;
|
|
7773
8106
|
/**
|
|
7774
|
-
|
|
7775
|
-
|
|
7776
|
-
|
|
7777
|
-
SnapshotByTimeOffsetTask: MediaProcessTaskSnapshotByTimeOffsetResult;
|
|
8107
|
+
* 事件代码。
|
|
8108
|
+
*/
|
|
8109
|
+
EventCode: string;
|
|
7778
8110
|
/**
|
|
7779
|
-
|
|
7780
|
-
|
|
7781
|
-
|
|
7782
|
-
SampleSnapshotTask: MediaProcessTaskSampleSnapshotResult;
|
|
8111
|
+
* 事件信息。
|
|
8112
|
+
*/
|
|
8113
|
+
EventMessage: string;
|
|
7783
8114
|
/**
|
|
7784
|
-
|
|
7785
|
-
|
|
7786
|
-
|
|
7787
|
-
ImageSpriteTask: MediaProcessTaskImageSpriteResult;
|
|
8115
|
+
* 对端IP。
|
|
8116
|
+
*/
|
|
8117
|
+
RemoteIp: string;
|
|
7788
8118
|
/**
|
|
7789
|
-
|
|
7790
|
-
|
|
7791
|
-
|
|
7792
|
-
|
|
8119
|
+
* 对端端口。
|
|
8120
|
+
*/
|
|
8121
|
+
RemotePort: string;
|
|
8122
|
+
/**
|
|
8123
|
+
* 主备通道,0为主通道,1为备通道。
|
|
8124
|
+
*/
|
|
8125
|
+
Pipeline: string;
|
|
8126
|
+
/**
|
|
8127
|
+
* 输入或输出的名称。
|
|
8128
|
+
*/
|
|
8129
|
+
InputOutputName: string;
|
|
7793
8130
|
}
|
|
7794
8131
|
/**
|
|
7795
8132
|
* DeleteWordSamples返回参数结构体
|
|
@@ -7873,6 +8210,34 @@ export interface EnableWorkflowResponse {
|
|
|
7873
8210
|
*/
|
|
7874
8211
|
RequestId?: string;
|
|
7875
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
|
+
}
|
|
7876
8241
|
/**
|
|
7877
8242
|
* AI 样本管理,关键词输入信息。
|
|
7878
8243
|
*/
|
|
@@ -8281,6 +8646,7 @@ export interface TaskNotifyConfig {
|
|
|
8281
8646
|
<li>TDMQ-CMQ:消息队列</li>
|
|
8282
8647
|
<li>URL:指定URL时HTTP回调推送到 NotifyUrl 指定的地址,回调协议http+json,包体内容同解析事件通知接口的输出参数 </li>
|
|
8283
8648
|
<li>SCF:不推荐使用,需要在控制台额外配置SCF</li>
|
|
8649
|
+
<li>AWS-SQS:AWS 队列,只适用于 AWS 任务,且要求同区域</li>
|
|
8284
8650
|
<font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
|
|
8285
8651
|
*/
|
|
8286
8652
|
NotifyType?: string;
|
|
@@ -8288,6 +8654,12 @@ export interface TaskNotifyConfig {
|
|
|
8288
8654
|
* HTTP回调地址,NotifyType为URL时必填。
|
|
8289
8655
|
*/
|
|
8290
8656
|
NotifyUrl?: string;
|
|
8657
|
+
/**
|
|
8658
|
+
* AWS SQS 回调,NotifyType为 AWS-SQS 时必填。
|
|
8659
|
+
|
|
8660
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8661
|
+
*/
|
|
8662
|
+
AwsSQS?: AwsSQS;
|
|
8291
8663
|
}
|
|
8292
8664
|
/**
|
|
8293
8665
|
* 人脸增强配置
|
|
@@ -8308,34 +8680,45 @@ export interface FaceEnhanceConfig {
|
|
|
8308
8680
|
Intensity?: number;
|
|
8309
8681
|
}
|
|
8310
8682
|
/**
|
|
8311
|
-
*
|
|
8683
|
+
* 直播 AI 内容审核图片鉴黄结果
|
|
8312
8684
|
*/
|
|
8313
|
-
export interface
|
|
8685
|
+
export interface LiveStreamAiReviewImagePornResult {
|
|
8314
8686
|
/**
|
|
8315
|
-
*
|
|
8687
|
+
* 嫌疑片段起始的 PTS 时间,单位:秒。
|
|
8316
8688
|
*/
|
|
8317
|
-
|
|
8689
|
+
StartPtsTime: number;
|
|
8318
8690
|
/**
|
|
8319
|
-
*
|
|
8691
|
+
* 嫌疑片段结束的 PTS 时间,单位:秒。
|
|
8320
8692
|
*/
|
|
8321
|
-
|
|
8693
|
+
EndPtsTime: number;
|
|
8322
8694
|
/**
|
|
8323
|
-
*
|
|
8695
|
+
* 嫌疑片段涉黄分数。
|
|
8324
8696
|
*/
|
|
8325
|
-
|
|
8697
|
+
Confidence: number;
|
|
8326
8698
|
/**
|
|
8327
|
-
|
|
8328
|
-
|
|
8329
|
-
|
|
8699
|
+
* 嫌疑片段鉴黄结果建议,取值范围:
|
|
8700
|
+
<li>pass</li>
|
|
8701
|
+
<li>review</li>
|
|
8702
|
+
<li>block</li>
|
|
8703
|
+
*/
|
|
8704
|
+
Suggestion: string;
|
|
8330
8705
|
/**
|
|
8331
|
-
|
|
8332
|
-
|
|
8333
|
-
|
|
8706
|
+
* 视频鉴黄结果标签,取值范围:
|
|
8707
|
+
<li>porn:色情。</li>
|
|
8708
|
+
<li>sexy:性感。</li>
|
|
8709
|
+
<li>vulgar:低俗。</li>
|
|
8710
|
+
<li>intimacy:亲密行为。</li>
|
|
8711
|
+
*/
|
|
8712
|
+
Label: string;
|
|
8334
8713
|
/**
|
|
8335
|
-
*
|
|
8336
|
-
|
|
8714
|
+
* 嫌疑图片 URL (图片不会永久存储,到达
|
|
8715
|
+
PicUrlExpireTime 时间点后图片将被删除)。
|
|
8337
8716
|
*/
|
|
8338
|
-
|
|
8717
|
+
Url: string;
|
|
8718
|
+
/**
|
|
8719
|
+
* 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
8720
|
+
*/
|
|
8721
|
+
PicUrlExpireTime: string;
|
|
8339
8722
|
}
|
|
8340
8723
|
/**
|
|
8341
8724
|
* 智能按帧标签任务输入类型
|
|
@@ -8774,45 +9157,34 @@ export interface AiReviewPoliticalTaskOutput {
|
|
|
8774
9157
|
SegmentSet: Array<MediaContentReviewPoliticalSegmentItem>;
|
|
8775
9158
|
}
|
|
8776
9159
|
/**
|
|
8777
|
-
*
|
|
9160
|
+
* 内容审核涉敏任务结果类型
|
|
8778
9161
|
*/
|
|
8779
|
-
export interface
|
|
9162
|
+
export interface AiReviewTaskPoliticalResult {
|
|
8780
9163
|
/**
|
|
8781
|
-
*
|
|
9164
|
+
* 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
|
|
8782
9165
|
*/
|
|
8783
|
-
|
|
9166
|
+
Status: string;
|
|
8784
9167
|
/**
|
|
8785
|
-
*
|
|
9168
|
+
* 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](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) 列表。
|
|
8786
9169
|
*/
|
|
8787
|
-
|
|
9170
|
+
ErrCodeExt: string;
|
|
8788
9171
|
/**
|
|
8789
|
-
*
|
|
9172
|
+
* 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
|
|
8790
9173
|
*/
|
|
8791
|
-
|
|
9174
|
+
ErrCode: number;
|
|
8792
9175
|
/**
|
|
8793
|
-
|
|
8794
|
-
|
|
8795
|
-
|
|
8796
|
-
<li>block</li>
|
|
8797
|
-
*/
|
|
8798
|
-
Suggestion: string;
|
|
9176
|
+
* 错误信息。
|
|
9177
|
+
*/
|
|
9178
|
+
Message: string;
|
|
8799
9179
|
/**
|
|
8800
|
-
|
|
8801
|
-
|
|
8802
|
-
|
|
8803
|
-
<li>vulgar:低俗。</li>
|
|
8804
|
-
<li>intimacy:亲密行为。</li>
|
|
8805
|
-
*/
|
|
8806
|
-
Label: string;
|
|
9180
|
+
* 内容审核涉敏任务输入。
|
|
9181
|
+
*/
|
|
9182
|
+
Input: AiReviewPoliticalTaskInput;
|
|
8807
9183
|
/**
|
|
8808
|
-
*
|
|
8809
|
-
|
|
9184
|
+
* 内容审核涉敏任务输出。
|
|
9185
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8810
9186
|
*/
|
|
8811
|
-
|
|
8812
|
-
/**
|
|
8813
|
-
* 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
8814
|
-
*/
|
|
8815
|
-
PicUrlExpireTime: string;
|
|
9187
|
+
Output: AiReviewPoliticalTaskOutput;
|
|
8816
9188
|
}
|
|
8817
9189
|
/**
|
|
8818
9190
|
* 翻译结果。
|
|
@@ -9319,6 +9691,30 @@ export interface DescribeWorkflowsRequest {
|
|
|
9319
9691
|
*/
|
|
9320
9692
|
Limit?: number;
|
|
9321
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
|
+
}
|
|
9322
9718
|
/**
|
|
9323
9719
|
* 点播文件音频流信息
|
|
9324
9720
|
*/
|
|
@@ -9548,37 +9944,25 @@ export interface DescribeWordSamplesRequest {
|
|
|
9548
9944
|
Limit?: number;
|
|
9549
9945
|
}
|
|
9550
9946
|
/**
|
|
9551
|
-
*
|
|
9947
|
+
* Aws SQS 队列信息
|
|
9552
9948
|
*/
|
|
9553
|
-
export interface
|
|
9949
|
+
export interface AwsSQS {
|
|
9554
9950
|
/**
|
|
9555
|
-
*
|
|
9951
|
+
* SQS 队列区域。
|
|
9556
9952
|
*/
|
|
9557
|
-
|
|
9953
|
+
SQSRegion: string;
|
|
9558
9954
|
/**
|
|
9559
|
-
*
|
|
9955
|
+
* SQS 队列名称。
|
|
9560
9956
|
*/
|
|
9561
|
-
|
|
9957
|
+
SQSQueueName: string;
|
|
9562
9958
|
/**
|
|
9563
|
-
*
|
|
9959
|
+
* 读写SQS的秘钥id。
|
|
9564
9960
|
*/
|
|
9565
|
-
|
|
9961
|
+
S3SecretId?: string;
|
|
9566
9962
|
/**
|
|
9567
|
-
*
|
|
9568
|
-
*/
|
|
9569
|
-
ClassificationConfigure?: ClassificationConfigureInfoForUpdate;
|
|
9570
|
-
/**
|
|
9571
|
-
* 智能标签任务控制参数。
|
|
9572
|
-
*/
|
|
9573
|
-
TagConfigure?: TagConfigureInfoForUpdate;
|
|
9574
|
-
/**
|
|
9575
|
-
* 智能封面任务控制参数。
|
|
9576
|
-
*/
|
|
9577
|
-
CoverConfigure?: CoverConfigureInfoForUpdate;
|
|
9578
|
-
/**
|
|
9579
|
-
* 智能按帧标签任务控制参数。
|
|
9963
|
+
* 读写SQS的秘钥key。
|
|
9580
9964
|
*/
|
|
9581
|
-
|
|
9965
|
+
S3SecretKey?: string;
|
|
9582
9966
|
}
|
|
9583
9967
|
/**
|
|
9584
9968
|
* 查询Flow的配置信息。
|
|
@@ -9653,17 +10037,41 @@ export interface DescribeSampleSnapshotTemplatesResponse {
|
|
|
9653
10037
|
RequestId?: string;
|
|
9654
10038
|
}
|
|
9655
10039
|
/**
|
|
9656
|
-
*
|
|
10040
|
+
* 内容审核涉黄/涉敏嫌疑片段
|
|
9657
10041
|
*/
|
|
9658
|
-
export interface
|
|
10042
|
+
export interface MediaContentReviewSegmentItem {
|
|
9659
10043
|
/**
|
|
9660
|
-
*
|
|
10044
|
+
* 嫌疑片段起始的偏移时间,单位:秒。
|
|
9661
10045
|
*/
|
|
9662
|
-
|
|
10046
|
+
StartTimeOffset: number;
|
|
9663
10047
|
/**
|
|
9664
|
-
*
|
|
10048
|
+
* 嫌疑片段结束的偏移时间,单位:秒。
|
|
9665
10049
|
*/
|
|
9666
|
-
|
|
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;
|
|
9667
10075
|
}
|
|
9668
10076
|
/**
|
|
9669
10077
|
* DescribeStreamLinkFlowRealtimeStatus返回参数结构体
|
|
@@ -9778,6 +10186,62 @@ export interface DescribeTranscodeTemplatesRequest {
|
|
|
9778
10186
|
*/
|
|
9779
10187
|
TranscodeType?: string;
|
|
9780
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
|
+
}
|
|
9781
10245
|
/**
|
|
9782
10246
|
* DisableWorkflow请求参数结构体
|
|
9783
10247
|
*/
|
|
@@ -10030,6 +10494,15 @@ export interface DescribePersonSamplesResponse {
|
|
|
10030
10494
|
*/
|
|
10031
10495
|
RequestId?: string;
|
|
10032
10496
|
}
|
|
10497
|
+
/**
|
|
10498
|
+
* ModifySchedule返回参数结构体
|
|
10499
|
+
*/
|
|
10500
|
+
export interface ModifyScheduleResponse {
|
|
10501
|
+
/**
|
|
10502
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10503
|
+
*/
|
|
10504
|
+
RequestId?: string;
|
|
10505
|
+
}
|
|
10033
10506
|
/**
|
|
10034
10507
|
* 鉴黄任务控制参数
|
|
10035
10508
|
*/
|