tencentcloud-sdk-nodejs 4.0.513 → 4.0.515

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.
Files changed (60) hide show
  1. package/CHANGELOG.md +421 -0
  2. package/SERVICE_CHANGELOG.md +478 -48
  3. package/package.json +1 -1
  4. package/products.md +14 -14
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/cls/v20201016/cls_client.ts +1 -1
  7. package/src/services/cls/v20201016/cls_models.ts +5 -4
  8. package/src/services/cwp/v20180228/cwp_models.ts +2 -2
  9. package/src/services/cynosdb/v20190107/cynosdb_client.ts +140 -38
  10. package/src/services/cynosdb/v20190107/cynosdb_models.ts +567 -103
  11. package/src/services/essbasic/v20210526/essbasic_models.ts +1 -1
  12. package/src/services/live/v20180801/live_models.ts +128 -110
  13. package/src/services/mongodb/v20190725/mongodb_client.ts +18 -6
  14. package/src/services/mongodb/v20190725/mongodb_models.ts +50 -0
  15. package/src/services/monitor/v20180724/monitor_client.ts +1 -0
  16. package/src/services/monitor/v20180724/monitor_models.ts +80 -0
  17. package/src/services/tcr/v20190924/tcr_client.ts +2 -14
  18. package/src/services/tcr/v20190924/tcr_models.ts +9 -44
  19. package/src/services/tdid/v20210519/tdid_client.ts +8 -4
  20. package/src/services/tdmq/v20200217/tdmq_models.ts +10 -0
  21. package/src/services/teo/v20220901/teo_client.ts +27 -0
  22. package/src/services/teo/v20220901/teo_models.ts +157 -0
  23. package/src/services/tione/v20211111/tione_models.ts +15 -4
  24. package/src/services/vod/v20180717/vod_client.ts +27 -18
  25. package/src/services/vod/v20180717/vod_models.ts +153 -84
  26. package/src/services/wedata/v20210820/wedata_client.ts +1 -0
  27. package/src/services/wedata/v20210820/wedata_models.ts +41 -1
  28. package/tencentcloud/common/sdk_version.d.ts +1 -1
  29. package/tencentcloud/common/sdk_version.js +1 -1
  30. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +1 -1
  31. package/tencentcloud/services/cls/v20201016/cls_client.js +1 -1
  32. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +5 -4
  33. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +2 -2
  34. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +45 -13
  35. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +65 -17
  36. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +490 -94
  37. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -1
  38. package/tencentcloud/services/live/v20180801/live_models.d.ts +94 -76
  39. package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +7 -3
  40. package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +9 -3
  41. package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +42 -0
  42. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +65 -0
  43. package/tencentcloud/services/tcr/v20190924/tcr_client.d.ts +1 -5
  44. package/tencentcloud/services/tcr/v20190924/tcr_client.js +0 -6
  45. package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +8 -38
  46. package/tencentcloud/services/tdid/v20210519/tdid_client.d.ts +6 -2
  47. package/tencentcloud/services/tdid/v20210519/tdid_client.js +6 -2
  48. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +8 -0
  49. package/tencentcloud/services/teo/v20220901/teo_client.d.ts +9 -1
  50. package/tencentcloud/services/teo/v20220901/teo_client.js +12 -0
  51. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +135 -0
  52. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +13 -4
  53. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +15 -7
  54. package/tencentcloud/services/vod/v20180717/vod_client.js +15 -7
  55. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +138 -80
  56. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +35 -1
  57. package/test/cynosdb.v20190107.test.js +90 -10
  58. package/test/mongodb.v20190725.test.js +12 -2
  59. package/test/tcr.v20190924.test.js +0 -10
  60. package/test/teo.v20220901.test.js +20 -0
@@ -172,11 +172,17 @@ export interface ReviewAudioVideoTaskInput {
172
172
  /**
173
173
  * 媒体文件 ID。
174
174
  */
175
- FileId: string;
175
+ FileId?: string;
176
176
  /**
177
177
  * 音视频审核模板 ID。
178
178
  */
179
- Definition: number;
179
+ Definition?: number;
180
+ /**
181
+ * 审核的内容,可选值:
182
+ <li>Media:原始音视频;</li>
183
+ <li>Cover:封面。</li>
184
+ */
185
+ ReviewContents?: Array<string>;
180
186
  }
181
187
  /**
182
188
  * DescribeAllClass请求参数结构体
@@ -1375,6 +1381,10 @@ export interface ResetProcedureTemplateRequest {
1375
1381
  * 任务流名字
1376
1382
  */
1377
1383
  Name: string;
1384
+ /**
1385
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
1386
+ */
1387
+ SubAppId?: number;
1378
1388
  /**
1379
1389
  * 模板描述信息,长度限制:256 个字符。
1380
1390
  */
@@ -1384,7 +1394,8 @@ export interface ResetProcedureTemplateRequest {
1384
1394
  */
1385
1395
  MediaProcessTask?: MediaProcessTaskInput;
1386
1396
  /**
1387
- * AI 智能内容审核类型任务参数。
1397
+ * AI 智能内容审核类型任务参数 \*。
1398
+ <font color=red>\*:该参数用于发起旧版审核,不建议使用。推荐使用 ReviewAudioVideoTask 参数发起审核。</font>
1388
1399
  */
1389
1400
  AiContentReviewTask?: AiContentReviewTaskInput;
1390
1401
  /**
@@ -1396,9 +1407,9 @@ export interface ResetProcedureTemplateRequest {
1396
1407
  */
1397
1408
  AiRecognitionTask?: AiRecognitionTaskInput;
1398
1409
  /**
1399
- * 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
1410
+ * 音视频审核类型任务参数。
1400
1411
  */
1401
- SubAppId?: number;
1412
+ ReviewAudioVideoTask?: ProcedureReviewAudioVideoTaskInput;
1402
1413
  }
1403
1414
  /**
1404
1415
  * 图片Ocr 文字鉴别信息的任务结果类型
@@ -1604,6 +1615,21 @@ export interface DeletePersonSampleRequest {
1604
1615
  */
1605
1616
  SubAppId?: number;
1606
1617
  }
1618
+ /**
1619
+ * 任务流模板音视频审核输入参数类型。
1620
+ */
1621
+ export interface ProcedureReviewAudioVideoTaskInput {
1622
+ /**
1623
+ * 审核模板。
1624
+ */
1625
+ Definition: number;
1626
+ /**
1627
+ * 审核的内容,可选值:
1628
+ <li>Media:原始音视频。</li>
1629
+ 不填或填空数组时,默认为审核 Media。
1630
+ */
1631
+ ReviewContents?: Array<string>;
1632
+ }
1607
1633
  /**
1608
1634
  * 语音识别片段。
1609
1635
  */
@@ -2276,7 +2302,8 @@ export interface CreateProcedureTemplateRequest {
2276
2302
  */
2277
2303
  MediaProcessTask?: MediaProcessTaskInput;
2278
2304
  /**
2279
- * AI 内容审核类型任务参数。
2305
+ * AI 内容审核类型任务参数 \*。
2306
+ <font color=red>\*:该参数用于发起旧版审核,不建议使用。推荐使用 ReviewAudioVideoTask 参数发起审核。</font>
2280
2307
  */
2281
2308
  AiContentReviewTask?: AiContentReviewTaskInput;
2282
2309
  /**
@@ -2287,6 +2314,10 @@ export interface CreateProcedureTemplateRequest {
2287
2314
  * AI 内容识别类型任务参数。
2288
2315
  */
2289
2316
  AiRecognitionTask?: AiRecognitionTaskInput;
2317
+ /**
2318
+ * 音视频审核类型任务参数。
2319
+ */
2320
+ ReviewAudioVideoTask?: ProcedureReviewAudioVideoTaskInput;
2290
2321
  }
2291
2322
  /**
2292
2323
  * DescribeMediaProcessUsageData请求参数结构体
@@ -2572,20 +2603,24 @@ export interface FileUploadTask {
2572
2603
  /**
2573
2604
  * 文件唯一 ID。
2574
2605
  */
2575
- FileId: string;
2606
+ FileId?: string;
2576
2607
  /**
2577
2608
  * 上传完成后生成的媒体文件基础信息。
2578
2609
  */
2579
- MediaBasicInfo: MediaBasicInfo;
2610
+ MediaBasicInfo?: MediaBasicInfo;
2580
2611
  /**
2581
- * 若视频上传时指定了视频处理流程,则该字段为流程任务 ID
2612
+ * 任务类型为 Procedure 的任务 ID。若视频[上传时指定要执行的任务(procedure)](https://cloud.tencent.com/document/product/266/33475#.E4.BB.BB.E5.8A.A1.E5.8F.91.E8.B5.B7),当该任务流模板指定了 MediaProcessTask、AiAnalysisTask、AiRecognitionTask 中的一个或多个时发起该任务。
2582
2613
  */
2583
- ProcedureTaskId: string;
2614
+ ProcedureTaskId?: string;
2615
+ /**
2616
+ * 任务类型为 ReviewAudioVideo 的任务 ID。若视频[上传时指定要执行的任务(procedure)](https://cloud.tencent.com/document/product/266/33475#.E4.BB.BB.E5.8A.A1.E5.8F.91.E8.B5.B7),当该任务流模板指定了 ReviewAudioVideoTask 时,发起该任务。
2617
+ */
2618
+ ReviewAudioVideoTaskId?: string;
2584
2619
  /**
2585
2620
  * 元信息。包括大小、时长、视频流信息、音频流信息等。
2586
2621
  注意:此字段可能返回 null,表示取不到有效值。
2587
2622
  */
2588
- MetaData: MediaMetaData;
2623
+ MetaData?: MediaMetaData;
2589
2624
  }
2590
2625
  /**
2591
2626
  * DescribeCDNStatDetails返回参数结构体
@@ -3849,7 +3884,7 @@ export interface ProcessMediaResponse {
3849
3884
  /**
3850
3885
  * 任务 ID
3851
3886
  */
3852
- TaskId: string;
3887
+ TaskId?: string;
3853
3888
  /**
3854
3889
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3855
3890
  */
@@ -4316,16 +4351,20 @@ export interface SplitMediaTaskSegmentInfo {
4316
4351
  /**
4317
4352
  * 视频拆条任务输入信息。
4318
4353
  */
4319
- Input: SplitMediaTaskInput;
4354
+ Input?: SplitMediaTaskInput;
4320
4355
  /**
4321
4356
  * 视频拆条任务输出信息。
4322
4357
  注意:此字段可能返回 null,表示取不到有效值。
4323
4358
  */
4324
- Output: TaskOutputMediaInfo;
4359
+ Output?: TaskOutputMediaInfo;
4360
+ /**
4361
+ * 任务类型为 Procedure 的任务 ID。若发起[视频拆条](https://cloud.tencent.com/document/api/266/51098)任务时,视频拆条任务信息列表指定了任务流模板(ProcedureName),当该任务流模板指定了 MediaProcessTask、AiAnalysisTask、AiRecognitionTask 中的一个或多个时发起该任务。
4362
+ */
4363
+ ProcedureTaskId?: string;
4325
4364
  /**
4326
- * 若发起视频拆条任务时指定了视频处理流程,则该字段为流程任务 ID
4365
+ * 任务类型为 ReviewAudioVideo 的任务 ID。若发起[视频拆条](https://cloud.tencent.com/document/api/266/51098)任务时,视频拆条任务信息列表指定了任务流模板(ProcedureName),当该任务流模板指定了 ReviewAudioVideoTask 时,发起该任务。
4327
4366
  */
4328
- ProcedureTaskId: string;
4367
+ ReviewAudioVideoTaskId?: string;
4329
4368
  }
4330
4369
  /**
4331
4370
  * Asr 文字涉及令人反感的信息
@@ -4756,11 +4795,11 @@ export interface DescribeReviewTemplatesResponse {
4756
4795
  /**
4757
4796
  * 符合过滤条件的记录总数。
4758
4797
  */
4759
- TotalCount: number;
4798
+ TotalCount?: number;
4760
4799
  /**
4761
4800
  * 审核模板详情列表。
4762
4801
  */
4763
- ReviewTemplateSet: Array<ReviewTemplate>;
4802
+ ReviewTemplateSet?: Array<ReviewTemplate>;
4764
4803
  /**
4765
4804
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4766
4805
  */
@@ -5010,7 +5049,7 @@ export interface CreateContentReviewTemplateResponse {
5010
5049
  /**
5011
5050
  * 音视频内容审核模板唯一标识。
5012
5051
  */
5013
- Definition: number;
5052
+ Definition?: number;
5014
5053
  /**
5015
5054
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5016
5055
  */
@@ -5078,6 +5117,10 @@ export interface ModifyAnimatedGraphicsTemplateRequest {
5078
5117
  * DescribeProcedureTemplates请求参数结构体
5079
5118
  */
5080
5119
  export interface DescribeProcedureTemplatesRequest {
5120
+ /**
5121
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
5122
+ */
5123
+ SubAppId?: number;
5081
5124
  /**
5082
5125
  * 任务流模板名字过滤条件,数组长度限制:100。
5083
5126
  */
@@ -5096,10 +5139,6 @@ export interface DescribeProcedureTemplatesRequest {
5096
5139
  * 返回记录条数,默认值:10,最大值:100。
5097
5140
  */
5098
5141
  Limit?: number;
5099
- /**
5100
- * 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
5101
- */
5102
- SubAppId?: number;
5103
5142
  }
5104
5143
  /**
5105
5144
  * CreateHeadTailTemplate请求参数结构体
@@ -6087,7 +6126,8 @@ export interface ProcessMediaRequest {
6087
6126
  */
6088
6127
  MediaProcessTask?: MediaProcessTaskInput;
6089
6128
  /**
6090
- * 音视频内容审核类型任务参数。
6129
+ * 音视频内容审核类型任务参数 \*。
6130
+ <font color=red>\* 不建议使用</font>,推荐使用 [音视频审核(ReviewAudioVideo)](https://cloud.tencent.com/document/api/266/80283) 或 [图片审核(ReviewImage)](https://cloud.tencent.com/document/api/266/73217)。
6091
6131
  */
6092
6132
  AiContentReviewTask?: AiContentReviewTaskInput;
6093
6133
  /**
@@ -7058,11 +7098,11 @@ export interface DescribeContentReviewTemplatesResponse {
7058
7098
  /**
7059
7099
  * 符合过滤条件的记录总数。
7060
7100
  */
7061
- TotalCount: number;
7101
+ TotalCount?: number;
7062
7102
  /**
7063
7103
  * 内容审核模板详情列表。
7064
7104
  */
7065
- ContentReviewTemplateSet: Array<ContentReviewTemplateItem>;
7105
+ ContentReviewTemplateSet?: Array<ContentReviewTemplateItem>;
7066
7106
  /**
7067
7107
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7068
7108
  */
@@ -8465,7 +8505,7 @@ export interface PullEventsResponse {
8465
8505
  * 事件列表。
8466
8506
  注意:此字段可能返回 null,表示取不到有效值。
8467
8507
  */
8468
- EventSet: Array<EventContent>;
8508
+ EventSet?: Array<EventContent>;
8469
8509
  /**
8470
8510
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8471
8511
  */
@@ -8565,50 +8605,56 @@ export interface ProcedureTemplate {
8565
8605
  /**
8566
8606
  * 任务流名字。
8567
8607
  */
8568
- Name: string;
8608
+ Name?: string;
8569
8609
  /**
8570
8610
  * 任务流模板类型,取值范围:
8571
8611
  <li>Preset:系统预置任务流模板;</li>
8572
8612
  <li>Custom:用户自定义任务流模板。</li>
8573
8613
  */
8574
- Type: string;
8614
+ Type?: string;
8575
8615
  /**
8576
8616
  * 模板描述信息,长度限制:256 个字符。
8577
8617
  */
8578
- Comment: string;
8618
+ Comment?: string;
8579
8619
  /**
8580
8620
  * 视频处理类型任务参数。
8581
8621
  注意:此字段可能返回 null,表示取不到有效值。
8582
8622
  */
8583
- MediaProcessTask: MediaProcessTaskInput;
8623
+ MediaProcessTask?: MediaProcessTaskInput;
8584
8624
  /**
8585
- * AI 智能审核类型任务参数。
8625
+ * AI 智能审核类型任务参数 \*。
8626
+ <font color=red>\*:该参数用于发起旧版审核,不建议使用。推荐使用 ReviewAudioVideoTask 参数发起审核。</font>
8586
8627
  注意:此字段可能返回 null,表示取不到有效值。
8587
8628
  */
8588
- AiContentReviewTask: AiContentReviewTaskInput;
8629
+ AiContentReviewTask?: AiContentReviewTaskInput;
8589
8630
  /**
8590
8631
  * AI 智能内容分析类型任务参数。
8591
8632
  注意:此字段可能返回 null,表示取不到有效值。
8592
8633
  */
8593
- AiAnalysisTask: AiAnalysisTaskInput;
8634
+ AiAnalysisTask?: AiAnalysisTaskInput;
8594
8635
  /**
8595
8636
  * AI 内容识别类型任务参数。
8596
8637
  注意:此字段可能返回 null,表示取不到有效值。
8597
8638
  */
8598
- AiRecognitionTask: AiRecognitionTaskInput;
8639
+ AiRecognitionTask?: AiRecognitionTaskInput;
8599
8640
  /**
8600
8641
  * 微信小程序发布任务参数。
8601
8642
  注意:此字段可能返回 null,表示取不到有效值。
8602
8643
  */
8603
- MiniProgramPublishTask: WechatMiniProgramPublishTaskInput;
8644
+ MiniProgramPublishTask?: WechatMiniProgramPublishTaskInput;
8645
+ /**
8646
+ * 音视频审核类型任务参数。
8647
+ 注意:此字段可能返回 null,表示取不到有效值。
8648
+ */
8649
+ ReviewAudioVideoTask?: ProcedureReviewAudioVideoTaskInput;
8604
8650
  /**
8605
8651
  * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
8606
8652
  */
8607
- CreateTime: string;
8653
+ CreateTime?: string;
8608
8654
  /**
8609
8655
  * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
8610
8656
  */
8611
- UpdateTime: string;
8657
+ UpdateTime?: string;
8612
8658
  }
8613
8659
  /**
8614
8660
  * 音视频审核涉及令人不安全的信息的任务结果类型
@@ -12800,27 +12846,27 @@ export interface MediaVideoStreamItem {
12800
12846
  /**
12801
12847
  * 视频流的码率,单位:bps。
12802
12848
  */
12803
- Bitrate: number;
12849
+ Bitrate?: number;
12804
12850
  /**
12805
12851
  * 视频流的高度,单位:px。
12806
12852
  */
12807
- Height: number;
12853
+ Height?: number;
12808
12854
  /**
12809
12855
  * 视频流的宽度,单位:px。
12810
12856
  */
12811
- Width: number;
12857
+ Width?: number;
12812
12858
  /**
12813
12859
  * 视频流的编码格式,例如 h264。
12814
12860
  */
12815
- Codec: string;
12861
+ Codec?: string;
12816
12862
  /**
12817
12863
  * 帧率,单位:hz。
12818
12864
  */
12819
- Fps: number;
12865
+ Fps?: number;
12820
12866
  /**
12821
12867
  * 编码标签,仅当 Codec 为 hevc 时有效。
12822
12868
  */
12823
- CodecTag: string;
12869
+ CodecTag?: string;
12824
12870
  }
12825
12871
  /**
12826
12872
  * SetDrmKeyProviderInfo请求参数结构体
@@ -14746,9 +14792,13 @@ export interface EditMediaFileInfo {
14746
14792
  */
14747
14793
  export interface ProcessMediaByProcedureResponse {
14748
14794
  /**
14749
- * 任务 ID
14795
+ * 任务类型为 Procedure 的任务 ID,当入参 ProcedureName 对应的任务流模板指定了 MediaProcessTask、AiAnalysisTask、AiRecognitionTask 中的一个或多个时发起该任务。
14750
14796
  */
14751
- TaskId: string;
14797
+ TaskId?: string;
14798
+ /**
14799
+ * 任务类型为 ReviewAudioVideo 的任务 ID,当入参 ProcedureName 对应的任务流模板指定了 ReviewAudioVideoTask 时,发起该任务。
14800
+ */
14801
+ ReviewAudioVideoTaskId?: string;
14752
14802
  /**
14753
14803
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14754
14804
  */
@@ -14872,58 +14922,62 @@ export interface EditMediaTask {
14872
14922
  /**
14873
14923
  * 任务 ID。
14874
14924
  */
14875
- TaskId: string;
14925
+ TaskId?: string;
14876
14926
  /**
14877
14927
  * 任务流状态,取值:
14878
14928
  <li>PROCESSING:处理中;</li>
14879
14929
  <li>FINISH:已完成。</li>
14880
14930
  */
14881
- Status: string;
14931
+ Status?: string;
14882
14932
  /**
14883
14933
  * 错误码,0 表示成功,其他值表示失败:
14884
14934
  <li>40000:输入参数不合法,请检查输入参数;</li>
14885
14935
  <li>60000:源文件错误(如视频数据损坏),请确认源文件是否正常;</li>
14886
14936
  <li>70000:内部服务错误,建议重试。</li>
14887
14937
  */
14888
- ErrCode: number;
14938
+ ErrCode?: number;
14889
14939
  /**
14890
14940
  * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
14891
14941
  */
14892
- ErrCodeExt: string;
14942
+ ErrCodeExt?: string;
14893
14943
  /**
14894
14944
  * 错误信息。
14895
14945
  */
14896
- Message: string;
14946
+ Message?: string;
14897
14947
  /**
14898
14948
  * 编辑视频任务进度,取值范围 [0-100] 。
14899
14949
  */
14900
- Progress: number;
14950
+ Progress?: number;
14901
14951
  /**
14902
14952
  * 视频编辑任务的输入。
14903
14953
  注意:此字段可能返回 null,表示取不到有效值。
14904
14954
  */
14905
- Input: EditMediaTaskInput;
14955
+ Input?: EditMediaTaskInput;
14906
14956
  /**
14907
14957
  * 视频编辑任务的输出。
14908
14958
  注意:此字段可能返回 null,表示取不到有效值。
14909
14959
  */
14910
- Output: EditMediaTaskOutput;
14960
+ Output?: EditMediaTaskOutput;
14911
14961
  /**
14912
14962
  * 输出视频的元信息。
14913
14963
  */
14914
- MetaData: MediaMetaData;
14964
+ MetaData?: MediaMetaData;
14915
14965
  /**
14916
- * 若发起视频编辑任务时指定了视频处理流程,则该字段为流程任务 ID
14966
+ * 任务类型为 Procedure 的任务 ID。若发起[编辑视频](https://cloud.tencent.com/document/api/266/34783)任务时指定了任务流模板(ProcedureName),当该任务流模板指定了 MediaProcessTask、AiAnalysisTask、AiRecognitionTask 中的一个或多个时发起该任务。
14917
14967
  */
14918
- ProcedureTaskId: string;
14968
+ ProcedureTaskId?: string;
14969
+ /**
14970
+ * 任务类型为 ReviewAudioVideo 的任务 ID。若发起[编辑视频](https://cloud.tencent.com/document/api/266/34783)任务时指定了任务流模板(ProcedureName),当该任务流模板指定了 ReviewAudioVideoTask 时,发起该任务。
14971
+ */
14972
+ ReviewAudioVideoTaskId?: string;
14919
14973
  /**
14920
14974
  * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
14921
14975
  */
14922
- SessionId: string;
14976
+ SessionId?: string;
14923
14977
  /**
14924
14978
  * 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
14925
14979
  */
14926
- SessionContext: string;
14980
+ SessionContext?: string;
14927
14981
  }
14928
14982
  /**
14929
14983
  * 画面鉴别涉及令人反感的信息的任务控制参数
@@ -15691,7 +15745,7 @@ export interface CreateReviewTemplateResponse {
15691
15745
  /**
15692
15746
  * 审核模板唯一标识。
15693
15747
  */
15694
- Definition: number;
15748
+ Definition?: number;
15695
15749
  /**
15696
15750
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
15697
15751
  */
@@ -15770,63 +15824,67 @@ export interface ModifyWatermarkTemplateResponse {
15770
15824
  RequestId?: string;
15771
15825
  }
15772
15826
  /**
15773
- * 视频转拉任务信息
15827
+ * 拉取上传任务信息
15774
15828
  */
15775
15829
  export interface PullUploadTask {
15776
15830
  /**
15777
- * 转拉上传任务 ID。
15831
+ * 拉取上传任务 ID。
15778
15832
  */
15779
- TaskId: string;
15833
+ TaskId?: string;
15780
15834
  /**
15781
15835
  * 任务流状态,取值:
15782
15836
  <li>PROCESSING:处理中;</li>
15783
15837
  <li>FINISH:已完成。</li>
15784
15838
  */
15785
- Status: string;
15839
+ Status?: string;
15786
15840
  /**
15787
15841
  * 错误码,0 表示成功,其他值表示失败:
15788
15842
  <li>40000:输入参数不合法,请检查输入参数;</li>
15789
15843
  <li>60000:源文件错误(如视频数据损坏),请确认源文件是否正常;</li>
15790
15844
  <li>70000:内部服务错误,建议重试。</li>
15791
15845
  */
15792
- ErrCode: number;
15846
+ ErrCode?: number;
15793
15847
  /**
15794
15848
  * 错误信息。
15795
15849
  */
15796
- Message: string;
15850
+ Message?: string;
15797
15851
  /**
15798
- * 转拉上传完成后生成的视频 ID。
15852
+ * 拉取上传完成后生成的视频 ID。
15799
15853
  */
15800
- FileId: string;
15854
+ FileId?: string;
15801
15855
  /**
15802
- * 转拉完成后生成的媒体文件基础信息。
15856
+ * 拉取上传完成后生成的媒体文件基础信息。
15803
15857
  注意:此字段可能返回 null,表示取不到有效值。
15804
15858
  */
15805
- MediaBasicInfo: MediaBasicInfo;
15859
+ MediaBasicInfo?: MediaBasicInfo;
15806
15860
  /**
15807
15861
  * 输出视频的元信息。
15808
15862
  */
15809
- MetaData: MediaMetaData;
15863
+ MetaData?: MediaMetaData;
15810
15864
  /**
15811
- * 转拉上传完成后生成的播放地址。
15865
+ * 拉取上传完成后生成的播放地址。
15812
15866
  */
15813
- FileUrl: string;
15867
+ FileUrl?: string;
15814
15868
  /**
15815
- * 若转拉上传时指定了视频处理流程,则该参数为流程任务 ID
15869
+ * 任务类型为 Procedure 的任务 ID。若[拉取上传](https://cloud.tencent.com/document/api/266/35575)时指定了媒体后续任务操作(Procedure),当该任务流模板指定了 MediaProcessTask、AiAnalysisTask、AiRecognitionTask 中的一个或多个时发起该任务。
15816
15870
  */
15817
- ProcedureTaskId: string;
15871
+ ProcedureTaskId?: string;
15818
15872
  /**
15819
- * 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
15873
+ * 任务类型为 ReviewAudioVideo 的任务 ID。若[拉取上传](https://cloud.tencent.com/document/api/266/35575)时指定了媒体后续任务操作(Procedure),当该任务流模板指定了 ReviewAudioVideoTask 时,发起该任务。
15820
15874
  */
15821
- SessionContext: string;
15875
+ ReviewAudioVideoTaskId?: string;
15876
+ /**
15877
+ * 来源上下文,用于透传用户请求信息,[URL 拉取视频上传完成](https://cloud.tencent.com/document/product/266/7831)将返回该字段值,最长 1000 个字符。
15878
+ */
15879
+ SessionContext?: string;
15822
15880
  /**
15823
15881
  * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
15824
15882
  */
15825
- SessionId: string;
15883
+ SessionId?: string;
15826
15884
  /**
15827
- * 转拉任务进度,取值范围 [0-100] 。
15885
+ * 拉取上传进度,取值范围 [0-100] 。
15828
15886
  */
15829
- Progress: number;
15887
+ Progress?: number;
15830
15888
  }
15831
15889
  /**
15832
15890
  * 违禁任务控制参数
@@ -3946,7 +3946,7 @@ export interface DescribeInLongAgentListRequest {
3946
3946
  */
3947
3947
  AgentName?: string;
3948
3948
  /**
3949
- * 集群类型,1:TKE Agent,2:BOSS SDK,默认:1
3949
+ * 集群类型,1:TKE Agent,2:BOSS SDK,默认:1,3:CVM,4:自建服务器 【传多个用逗号分割】
3950
3950
  */
3951
3951
  AgentType?: number;
3952
3952
  /**
@@ -3969,6 +3969,10 @@ export interface DescribeInLongAgentListRequest {
3969
3969
  * 名称搜索是否开启模糊匹配,1:开启,0:不开启(精确匹配)
3970
3970
  */
3971
3971
  Like?: number;
3972
+ /**
3973
+ * agent类型【多个用逗号分隔】
3974
+ */
3975
+ AgentTypes?: string;
3972
3976
  }
3973
3977
  /**
3974
3978
  * DescribeRuleExecLog返回参数结构体
@@ -5863,6 +5867,21 @@ export interface InLongAgentDetail {
5863
5867
  * 关联任务数
5864
5868
  */
5865
5869
  TaskCount: number;
5870
+ /**
5871
+ * 采集器组ID
5872
+ 注意:此字段可能返回 null,表示取不到有效值。
5873
+ */
5874
+ AgentGroupId: string;
5875
+ /**
5876
+ * agent状态统计
5877
+ 注意:此字段可能返回 null,表示取不到有效值。
5878
+ */
5879
+ CvmAgentStatusList: Array<CvmAgentStatus>;
5880
+ /**
5881
+ * agent数量
5882
+ 注意:此字段可能返回 null,表示取不到有效值。
5883
+ */
5884
+ AgentTotal: number;
5866
5885
  }
5867
5886
  /**
5868
5887
  * ModifyDataSource请求参数结构体
@@ -6156,6 +6175,21 @@ export interface DescribeRulesByPageResponse {
6156
6175
  */
6157
6176
  RequestId?: string;
6158
6177
  }
6178
+ /**
6179
+ * 采集器状态统计
6180
+ */
6181
+ export interface CvmAgentStatus {
6182
+ /**
6183
+ * agent状态
6184
+ 注意:此字段可能返回 null,表示取不到有效值。
6185
+ */
6186
+ Status: string;
6187
+ /**
6188
+ * 对应状态的agent总数
6189
+ 注意:此字段可能返回 null,表示取不到有效值。
6190
+ */
6191
+ Count: number;
6192
+ }
6159
6193
  /**
6160
6194
  * DescribeRuleTablesByPage请求参数结构体
6161
6195
  */