tencentcloud-sdk-nodejs-vod 4.0.775 → 4.0.776

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.
@@ -82,6 +82,23 @@ export interface ModifyWatermarkTemplateRequest {
82
82
  */
83
83
  SvgTemplate?: SvgWatermarkInputForUpdate;
84
84
  }
85
+ /**
86
+ * 域名推送 CLS 目标。
87
+ */
88
+ export interface DomainCLSTargetInfo {
89
+ /**
90
+ * 域名。
91
+ */
92
+ Domain?: string;
93
+ /**
94
+ * 中国大陆地区的日志推送目标。
95
+ */
96
+ ChineseMainlandCLSTargetInfo?: AreaCLSTargetInfo;
97
+ /**
98
+ * 中国大陆以外地区的日志推送目标。
99
+ */
100
+ OutsideChineseMainlandCLSTargetInfo?: AreaCLSTargetInfo;
101
+ }
85
102
  /**
86
103
  * CreateStorageRegion请求参数结构体
87
104
  */
@@ -1791,37 +1808,20 @@ export interface ClassificationConfigureInfo {
1791
1808
  Switch: string;
1792
1809
  }
1793
1810
  /**
1794
- * DescribeStorageData返回参数结构体
1811
+ * 视频画面低光、过曝检测的控制参数。
1795
1812
  */
1796
- export interface DescribeStorageDataResponse {
1797
- /**
1798
- * 当前媒体总量。
1799
- */
1800
- MediaCount?: number;
1801
- /**
1802
- * 当前总存储量,单位是字节。
1803
- */
1804
- TotalStorage?: number;
1805
- /**
1806
- * 当前标准存储量,单位是字节。
1807
- */
1808
- StandardStorage?: number;
1809
- /**
1810
- * 当前低频存储量,单位是字节。
1811
- */
1812
- InfrequentStorage?: number;
1813
- /**
1814
- * 当前归档存储量,单位是字节。
1815
- */
1816
- ArchiveStorage?: number;
1817
- /**
1818
- * 当前深度归档存储量,单位是字节。
1819
- */
1820
- DeepArchiveStorage?: number;
1813
+ export interface AbnormalLightingConfigureInfoForUpdate {
1821
1814
  /**
1822
- * 各计费区域的存储用量。
1815
+ * 视频画面低光、过曝检测开关,可选值:
1816
+ <li>ON:开启;</li>
1817
+ <li>OFF:关闭。</li>
1823
1818
  */
1824
- StorageStat?: Array<StorageStatData>;
1819
+ Switch?: string;
1820
+ }
1821
+ /**
1822
+ * ModifyWordSample返回参数结构体
1823
+ */
1824
+ export interface ModifyWordSampleResponse {
1825
1825
  /**
1826
1826
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1827
1827
  */
@@ -2170,6 +2170,33 @@ export interface ComposeMediaRequest {
2170
2170
  */
2171
2171
  SessionId?: string;
2172
2172
  }
2173
+ /**
2174
+ * DescribeCLSTopics请求参数结构体
2175
+ */
2176
+ export interface DescribeCLSTopicsRequest {
2177
+ /**
2178
+ * 日志集所属地区:
2179
+ ap-guangzhou:广州;
2180
+ ap-singapore:新加坡。
2181
+ */
2182
+ CLSRegion: string;
2183
+ /**
2184
+ * 日志主题所属日志集 ID。
2185
+ */
2186
+ LogsetId: string;
2187
+ /**
2188
+ * 日志主题 ID 列表。如果不填,表示查询所有的日志主题。
2189
+ */
2190
+ TopicIds?: Array<string>;
2191
+ /**
2192
+ * 分页偏移量,默认值:0。
2193
+ */
2194
+ Offset?: number;
2195
+ /**
2196
+ * 返回记录条数,默认值:20,最大值:100。
2197
+ */
2198
+ Limit?: number;
2199
+ }
2173
2200
  /**
2174
2201
  * 视频内容识别模板详情
2175
2202
  */
@@ -2608,6 +2635,26 @@ export interface DescribeDailyPlayStatFileListResponse {
2608
2635
  */
2609
2636
  RequestId?: string;
2610
2637
  }
2638
+ /**
2639
+ * CLS日志主题信息。
2640
+ */
2641
+ export interface CLSTopicInfo {
2642
+ /**
2643
+ * 日志主题 ID。
2644
+ 注意:此字段可能返回 null,表示取不到有效值。
2645
+ */
2646
+ TopicId?: string;
2647
+ /**
2648
+ * 日志主题名。
2649
+ 注意:此字段可能返回 null,表示取不到有效值。
2650
+ */
2651
+ TopicName?: string;
2652
+ /**
2653
+ * 日志集 ID。
2654
+ 注意:此字段可能返回 null,表示取不到有效值。
2655
+ */
2656
+ LogsetId?: string;
2657
+ }
2611
2658
  /**
2612
2659
  * 视频画面低光、过曝检测的控制参数。
2613
2660
  */
@@ -4828,6 +4875,27 @@ export interface WechatMiniProgramPublishTaskInput {
4828
4875
  */
4829
4876
  SourceDefinition: number;
4830
4877
  }
4878
+ /**
4879
+ * SetCLSPushTarget请求参数结构体
4880
+ */
4881
+ export interface SetCLSPushTargetRequest {
4882
+ /**
4883
+ * 域名。
4884
+ */
4885
+ Domain: string;
4886
+ /**
4887
+ * 点播应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
4888
+ */
4889
+ SubAppId?: number;
4890
+ /**
4891
+ * 要设置的中国大陆地区的日志推送目标。
4892
+ */
4893
+ ChineseMainlandCLSTargetInfo?: AreaCLSTargetInfo;
4894
+ /**
4895
+ * 要设置的中国大陆以外地区的日志推送目标。
4896
+ */
4897
+ OutsideChineseMainlandCLSTargetInfo?: AreaCLSTargetInfo;
4898
+ }
4831
4899
  /**
4832
4900
  * AI 样本管理,人脸数据操作。
4833
4901
  */
@@ -5099,6 +5167,55 @@ export interface MediaSubtitleItem {
5099
5167
  */
5100
5168
  Url?: string;
5101
5169
  }
5170
+ /**
5171
+ * 音视频审核任务的输出。
5172
+ */
5173
+ export interface ReviewAudioVideoTaskOutput {
5174
+ /**
5175
+ * 音视频内容审核的结果建议,取值范围:
5176
+ <li>pass:建议通过;</li>
5177
+ <li>review:建议复审;</li>
5178
+ <li>block:建议封禁。</li>
5179
+ */
5180
+ Suggestion?: string;
5181
+ /**
5182
+ * 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违规的标签,取值范围:
5183
+ <li>Porn:色情;</li>
5184
+ <li>Terror:暴力;</li>
5185
+ <li>Polity:不适宜的信息;</li>
5186
+ <li>Ad:广告;</li>
5187
+ <li>Illegal:违法;</li>
5188
+ <li>Abuse:谩骂;</li>
5189
+ <li>Moan:娇喘。</li>
5190
+ */
5191
+ Label?: string;
5192
+ /**
5193
+ * 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违禁的形式,取值范围:
5194
+ <li>Image:画面上的人物或图标;</li>
5195
+ <li>OCR:画面上的文字;</li>
5196
+ <li>ASR:语音中的文字;</li>
5197
+ <li>Voice:声音。</li>
5198
+ */
5199
+ Form?: string;
5200
+ /**
5201
+ * 有违规信息的嫌疑的视频片段列表。
5202
+ <font color=red>注意</font> :该列表最多仅展示前 10个 元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
5203
+ */
5204
+ SegmentSet?: Array<ReviewAudioVideoSegmentItem>;
5205
+ /**
5206
+ * 涉及违规信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
5207
+ */
5208
+ SegmentSetFileUrl?: string;
5209
+ /**
5210
+ * 涉及违规信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
5211
+ */
5212
+ SegmentSetFileUrlExpireTime?: string;
5213
+ /**
5214
+ * 封面审核结果。
5215
+ 注意:此字段可能返回 null,表示取不到有效值。
5216
+ */
5217
+ CoverReviewResult?: ReviewImageResult;
5218
+ }
5102
5219
  /**
5103
5220
  * 语音违禁任务控制参数
5104
5221
  */
@@ -5128,9 +5245,9 @@ export interface ModifyAnimatedGraphicsTemplateResponse {
5128
5245
  RequestId?: string;
5129
5246
  }
5130
5247
  /**
5131
- * ModifyAIAnalysisTemplate返回参数结构体
5248
+ * DeleteCLSTopic返回参数结构体
5132
5249
  */
5133
- export interface ModifyAIAnalysisTemplateResponse {
5250
+ export interface DeleteCLSTopicResponse {
5134
5251
  /**
5135
5252
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5136
5253
  */
@@ -7239,53 +7356,13 @@ export interface SearchMediaResponse {
7239
7356
  RequestId?: string;
7240
7357
  }
7241
7358
  /**
7242
- * 音视频审核任务的输出。
7359
+ * ModifyAIAnalysisTemplate返回参数结构体
7243
7360
  */
7244
- export interface ReviewAudioVideoTaskOutput {
7245
- /**
7246
- * 音视频内容审核的结果建议,取值范围:
7247
- <li>pass:建议通过;</li>
7248
- <li>review:建议复审;</li>
7249
- <li>block:建议封禁。</li>
7250
- */
7251
- Suggestion?: string;
7252
- /**
7253
- * 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违规的标签,取值范围:
7254
- <li>Porn:色情;</li>
7255
- <li>Terror:暴力;</li>
7256
- <li>Polity:不适宜的信息;</li>
7257
- <li>Ad:广告;</li>
7258
- <li>Illegal:违法;</li>
7259
- <li>Abuse:谩骂;</li>
7260
- <li>Moan:娇喘。</li>
7261
- */
7262
- Label?: string;
7263
- /**
7264
- * 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违禁的形式,取值范围:
7265
- <li>Image:画面上的人物或图标;</li>
7266
- <li>OCR:画面上的文字;</li>
7267
- <li>ASR:语音中的文字;</li>
7268
- <li>Voice:声音。</li>
7269
- */
7270
- Form?: string;
7271
- /**
7272
- * 有违规信息的嫌疑的视频片段列表。
7273
- <font color=red>注意</font> :该列表最多仅展示前 10个 元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
7274
- */
7275
- SegmentSet?: Array<ReviewAudioVideoSegmentItem>;
7276
- /**
7277
- * 涉及违规信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
7278
- */
7279
- SegmentSetFileUrl?: string;
7280
- /**
7281
- * 涉及违规信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
7282
- */
7283
- SegmentSetFileUrlExpireTime?: string;
7361
+ export interface ModifyAIAnalysisTemplateResponse {
7284
7362
  /**
7285
- * 封面审核结果。
7286
- 注意:此字段可能返回 null,表示取不到有效值。
7363
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7287
7364
  */
7288
- CoverReviewResult?: ReviewImageResult;
7365
+ RequestId?: string;
7289
7366
  }
7290
7367
  /**
7291
7368
  * 智能去除水印任务的输出。
@@ -7465,6 +7542,19 @@ export interface ReviewImageSegmentItem {
7465
7542
  */
7466
7543
  KeywordSet?: Array<string>;
7467
7544
  }
7545
+ /**
7546
+ * CreateCLSTopic返回参数结构体
7547
+ */
7548
+ export interface CreateCLSTopicResponse {
7549
+ /**
7550
+ * 日志主题 ID。
7551
+ */
7552
+ TopicId?: string;
7553
+ /**
7554
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7555
+ */
7556
+ RequestId?: string;
7557
+ }
7468
7558
  /**
7469
7559
  * CreateRoundPlay返回参数结构体
7470
7560
  */
@@ -7698,6 +7788,23 @@ export interface AiRecognitionTaskOcrFullTextResult {
7698
7788
  */
7699
7789
  FinishTime?: string;
7700
7790
  }
7791
+ /**
7792
+ * DescribeCLSTopics返回参数结构体
7793
+ */
7794
+ export interface DescribeCLSTopicsResponse {
7795
+ /**
7796
+ * 日志主题总数量。
7797
+ */
7798
+ TotalCount?: number;
7799
+ /**
7800
+ * 日志主题列表。
7801
+ */
7802
+ Topics?: Array<CLSTopicInfo>;
7803
+ /**
7804
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7805
+ */
7806
+ RequestId?: string;
7807
+ }
7701
7808
  /**
7702
7809
  * 媒体轨道的片段信息
7703
7810
  */
@@ -8323,6 +8430,31 @@ export interface AsrWordsConfigureInfo {
8323
8430
  */
8324
8431
  LabelSet?: Array<string>;
8325
8432
  }
8433
+ /**
8434
+ * 日志推送目标。
8435
+ */
8436
+ export interface AreaCLSTargetInfo {
8437
+ /**
8438
+ * 日志集所属地区:
8439
+ ap-guangzhou:广州;
8440
+ ap-singapore:新加坡。
8441
+ */
8442
+ CLSRegion: string;
8443
+ /**
8444
+ * 投递的目标主题 ID。
8445
+ */
8446
+ TopicId: string;
8447
+ /**
8448
+ * 投递的目标集 ID。
8449
+ */
8450
+ LogsetId: string;
8451
+ /**
8452
+ * 日志投递状态。
8453
+ ON:启用;
8454
+ OFF:停用。
8455
+ */
8456
+ Switch?: string;
8457
+ }
8326
8458
  /**
8327
8459
  * DeleteRebuildMediaTemplate返回参数结构体
8328
8460
  */
@@ -11058,15 +11190,41 @@ export interface MediaAiAnalysisTagItem {
11058
11190
  Confidence: number;
11059
11191
  }
11060
11192
  /**
11061
- * 视频画面低光、过曝检测的控制参数。
11193
+ * DescribeStorageData返回参数结构体
11062
11194
  */
11063
- export interface AbnormalLightingConfigureInfoForUpdate {
11195
+ export interface DescribeStorageDataResponse {
11064
11196
  /**
11065
- * 视频画面低光、过曝检测开关,可选值:
11066
- <li>ON:开启;</li>
11067
- <li>OFF:关闭。</li>
11197
+ * 当前媒体总量。
11068
11198
  */
11069
- Switch?: string;
11199
+ MediaCount?: number;
11200
+ /**
11201
+ * 当前总存储量,单位是字节。
11202
+ */
11203
+ TotalStorage?: number;
11204
+ /**
11205
+ * 当前标准存储量,单位是字节。
11206
+ */
11207
+ StandardStorage?: number;
11208
+ /**
11209
+ * 当前低频存储量,单位是字节。
11210
+ */
11211
+ InfrequentStorage?: number;
11212
+ /**
11213
+ * 当前归档存储量,单位是字节。
11214
+ */
11215
+ ArchiveStorage?: number;
11216
+ /**
11217
+ * 当前深度归档存储量,单位是字节。
11218
+ */
11219
+ DeepArchiveStorage?: number;
11220
+ /**
11221
+ * 各计费区域的存储用量。
11222
+ */
11223
+ StorageStat?: Array<StorageStatData>;
11224
+ /**
11225
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11226
+ */
11227
+ RequestId?: string;
11070
11228
  }
11071
11229
  /**
11072
11230
  * 文本全文识别片段。
@@ -11254,6 +11412,25 @@ export interface AiRecognitionTaskObjectSegmentItem {
11254
11412
  */
11255
11413
  AreaCoordSet?: Array<number | bigint>;
11256
11414
  }
11415
+ /**
11416
+ * CreateCLSTopic请求参数结构体
11417
+ */
11418
+ export interface CreateCLSTopicRequest {
11419
+ /**
11420
+ * 日志集所属地区:
11421
+ ap-guangzhou:广州;
11422
+ ap-singapore:新加坡。
11423
+ */
11424
+ CLSRegion: string;
11425
+ /**
11426
+ * 日志主题名。
11427
+ */
11428
+ TopicName: string;
11429
+ /**
11430
+ * 日志集 ID。
11431
+ */
11432
+ LogsetId: string;
11433
+ }
11257
11434
  /**
11258
11435
  * Ocr 文字涉及令人反感的信息
11259
11436
  */
@@ -11691,6 +11868,15 @@ export interface VoiceConfigureInfo {
11691
11868
  */
11692
11869
  Switch: string;
11693
11870
  }
11871
+ /**
11872
+ * SetCLSPushTarget返回参数结构体
11873
+ */
11874
+ export interface SetCLSPushTargetResponse {
11875
+ /**
11876
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11877
+ */
11878
+ RequestId?: string;
11879
+ }
11694
11880
  /**
11695
11881
  * 视频剪辑任务信息,该结构仅用于对 2017 版[视频剪辑](https://cloud.tencent.com/document/product/266/10156)接口发起的任务。
11696
11882
  */
@@ -11972,45 +12158,19 @@ export interface AiReviewProhibitedAsrTaskInput {
11972
12158
  Definition?: number;
11973
12159
  }
11974
12160
  /**
11975
- * 音视频审核涉及令人反感的信息、涉及令人不安全的信息的嫌疑片段
12161
+ * DeleteCLSTopic请求参数结构体
11976
12162
  */
11977
- export interface MediaContentReviewSegmentItem {
11978
- /**
11979
- * 嫌疑片段起始的偏移时间,单位:秒。
11980
- */
11981
- StartTimeOffset?: number;
11982
- /**
11983
- * 嫌疑片段结束的偏移时间,单位:秒。
11984
- */
11985
- EndTimeOffset?: number;
11986
- /**
11987
- * 嫌疑片段涉及令人反感的信息的分数。
11988
- */
11989
- Confidence?: number;
11990
- /**
11991
- * 嫌疑片段涉及令人反感的信息的结果标签。
11992
- */
11993
- Label?: string;
11994
- /**
11995
- * 嫌疑片段鉴别涉及令人反感的信息的结果建议,取值范围:
11996
- <li>pass。</li>
11997
- <li>review。</li>
11998
- <li>block。</li>
11999
- */
12000
- Suggestion?: string;
12001
- /**
12002
- * 嫌疑图片 URL (图片不会永久存储,到达
12003
- PicUrlExpireTime 时间点后图片将被删除)。
12004
- */
12005
- Url?: string;
12163
+ export interface DeleteCLSTopicRequest {
12006
12164
  /**
12007
- * 该字段已废弃,请使用 PicUrlExpireTime。
12165
+ * 日志集所属地区:
12166
+ ap-guangzhou:广州;
12167
+ ap-singapore:新加坡。
12008
12168
  */
12009
- PicUrlExpireTimeStamp?: number;
12169
+ CLSRegion?: string;
12010
12170
  /**
12011
- * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)
12171
+ * 日志主题 ID
12012
12172
  */
12013
- PicUrlExpireTime?: string;
12173
+ TopicId?: string;
12014
12174
  }
12015
12175
  /**
12016
12176
  * ParseStreamingManifest返回参数结构体
@@ -14356,6 +14516,17 @@ export interface DescribeImageSpriteTemplatesResponse {
14356
14516
  */
14357
14517
  RequestId?: string;
14358
14518
  }
14519
+ /**
14520
+ * DescribeCLSLogsets请求参数结构体
14521
+ */
14522
+ export interface DescribeCLSLogsetsRequest {
14523
+ /**
14524
+ * CLS 日志集所属的地域,取值有:
14525
+ ap-guangzhou:广州;
14526
+ ap-singapore:新加坡。
14527
+ */
14528
+ CLSRegion: string;
14529
+ }
14359
14530
  /**
14360
14531
  * InspectMediaQuality请求参数结构体
14361
14532
  */
@@ -14919,6 +15090,19 @@ export interface CreateProcedureTemplateResponse {
14919
15090
  */
14920
15091
  RequestId?: string;
14921
15092
  }
15093
+ /**
15094
+ * DescribeCLSLogsets返回参数结构体
15095
+ */
15096
+ export interface DescribeCLSLogsetsResponse {
15097
+ /**
15098
+ * 查询到的日志集列表。
15099
+ */
15100
+ Logsets?: Array<CLSLogsetInfo>;
15101
+ /**
15102
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
15103
+ */
15104
+ RequestId?: string;
15105
+ }
14922
15106
  /**
14923
15107
  * ModifyEnhanceMediaTemplate请求参数结构体
14924
15108
  */
@@ -15485,6 +15669,17 @@ export interface ProcedureTask {
15485
15669
  */
15486
15670
  OperationType?: string;
15487
15671
  }
15672
+ /**
15673
+ * CreateCLSLogset请求参数结构体
15674
+ */
15675
+ export interface CreateCLSLogsetRequest {
15676
+ /**
15677
+ * 日志集所属地区:
15678
+ ap-guangzhou:广州;
15679
+ ap-singapore:新加坡。
15680
+ */
15681
+ CLSRegion: string;
15682
+ }
15488
15683
  /**
15489
15684
  * ExtractTraceWatermark请求参数结构体
15490
15685
  */
@@ -15751,24 +15946,15 @@ export interface ProhibitedOcrReviewTemplateInfoForUpdate {
15751
15946
  ReviewConfidence?: number;
15752
15947
  }
15753
15948
  /**
15754
- * DescribeVodDomains请求参数结构体
15949
+ * DescribeCLSPushTargets请求参数结构体
15755
15950
  */
15756
- export interface DescribeVodDomainsRequest {
15757
- /**
15758
- * 域名列表。当该字段不填时,则默认列出所有域名信息。本字段限制如下:
15759
- <li>域名个数度最大为 20。</li>
15760
- */
15761
- Domains?: Array<string>;
15951
+ export interface DescribeCLSPushTargetsRequest {
15762
15952
  /**
15763
- * 分页拉取的最大返回结果数。默认值:20。
15953
+ * 点播域名。
15764
15954
  */
15765
- Limit?: number;
15955
+ Domains: Array<string>;
15766
15956
  /**
15767
- * 分页拉取的起始偏移量。默认值:0。
15768
- */
15769
- Offset?: number;
15770
- /**
15771
- * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
15957
+ * 点播应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
15772
15958
  */
15773
15959
  SubAppId?: number;
15774
15960
  }
@@ -16327,13 +16513,45 @@ export interface DescribeSampleSnapshotTemplatesResponse {
16327
16513
  RequestId?: string;
16328
16514
  }
16329
16515
  /**
16330
- * ModifyWordSample返回参数结构体
16516
+ * 音视频审核涉及令人反感的信息、涉及令人不安全的信息的嫌疑片段
16331
16517
  */
16332
- export interface ModifyWordSampleResponse {
16518
+ export interface MediaContentReviewSegmentItem {
16333
16519
  /**
16334
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
16520
+ * 嫌疑片段起始的偏移时间,单位:秒。
16335
16521
  */
16336
- RequestId?: string;
16522
+ StartTimeOffset?: number;
16523
+ /**
16524
+ * 嫌疑片段结束的偏移时间,单位:秒。
16525
+ */
16526
+ EndTimeOffset?: number;
16527
+ /**
16528
+ * 嫌疑片段涉及令人反感的信息的分数。
16529
+ */
16530
+ Confidence?: number;
16531
+ /**
16532
+ * 嫌疑片段涉及令人反感的信息的结果标签。
16533
+ */
16534
+ Label?: string;
16535
+ /**
16536
+ * 嫌疑片段鉴别涉及令人反感的信息的结果建议,取值范围:
16537
+ <li>pass。</li>
16538
+ <li>review。</li>
16539
+ <li>block。</li>
16540
+ */
16541
+ Suggestion?: string;
16542
+ /**
16543
+ * 嫌疑图片 URL (图片不会永久存储,到达
16544
+ PicUrlExpireTime 时间点后图片将被删除)。
16545
+ */
16546
+ Url?: string;
16547
+ /**
16548
+ * 该字段已废弃,请使用 PicUrlExpireTime。
16549
+ */
16550
+ PicUrlExpireTimeStamp?: number;
16551
+ /**
16552
+ * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
16553
+ */
16554
+ PicUrlExpireTime?: string;
16337
16555
  }
16338
16556
  /**
16339
16557
  * 音视频审核结果
@@ -17285,6 +17503,19 @@ export interface MediaTranscodeItem {
17285
17503
  */
17286
17504
  CopyRightWatermarkText?: string;
17287
17505
  }
17506
+ /**
17507
+ * CLS 日志集信息
17508
+ */
17509
+ export interface CLSLogsetInfo {
17510
+ /**
17511
+ * 日志集 ID。
17512
+ */
17513
+ LogsetId?: string;
17514
+ /**
17515
+ * 日志集名。
17516
+ */
17517
+ LogsetName?: string;
17518
+ }
17288
17519
  /**
17289
17520
  * DescribePersonSamples返回参数结构体
17290
17521
  */
@@ -17342,6 +17573,28 @@ export interface SplitMediaTaskInput {
17342
17573
  */
17343
17574
  OutputConfig: SplitMediaOutputConfig;
17344
17575
  }
17576
+ /**
17577
+ * DescribeVodDomains请求参数结构体
17578
+ */
17579
+ export interface DescribeVodDomainsRequest {
17580
+ /**
17581
+ * 域名列表。当该字段不填时,则默认列出所有域名信息。本字段限制如下:
17582
+ <li>域名个数度最大为 20。</li>
17583
+ */
17584
+ Domains?: Array<string>;
17585
+ /**
17586
+ * 分页拉取的最大返回结果数。默认值:20。
17587
+ */
17588
+ Limit?: number;
17589
+ /**
17590
+ * 分页拉取的起始偏移量。默认值:0。
17591
+ */
17592
+ Offset?: number;
17593
+ /**
17594
+ * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
17595
+ */
17596
+ SubAppId?: number;
17597
+ }
17345
17598
  /**
17346
17599
  * 鉴别涉及令人反感的信息的任务控制参数
17347
17600
  */
@@ -18617,6 +18870,23 @@ export interface QualityInspectItem {
18617
18870
  */
18618
18871
  Confidence?: number;
18619
18872
  }
18873
+ /**
18874
+ * DescribeCLSPushTargets返回参数结构体
18875
+ */
18876
+ export interface DescribeCLSPushTargetsResponse {
18877
+ /**
18878
+ * 域名推送总数量。
18879
+ */
18880
+ TotalCount?: number;
18881
+ /**
18882
+ * 域名推送 CLS 目标列表。
18883
+ */
18884
+ DomainCLSTargets?: Array<DomainCLSTargetInfo>;
18885
+ /**
18886
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
18887
+ */
18888
+ RequestId?: string;
18889
+ }
18620
18890
  /**
18621
18891
  * 拉取上传任务信息
18622
18892
  */
@@ -18844,6 +19114,19 @@ export interface TerrorismConfigureInfo {
18844
19114
  */
18845
19115
  OcrReviewInfo?: TerrorismOcrReviewTemplateInfo;
18846
19116
  }
19117
+ /**
19118
+ * CreateCLSLogset返回参数结构体
19119
+ */
19120
+ export interface CreateCLSLogsetResponse {
19121
+ /**
19122
+ * 日志集 ID。
19123
+ */
19124
+ LogsetId?: string;
19125
+ /**
19126
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
19127
+ */
19128
+ RequestId?: string;
19129
+ }
18847
19130
  /**
18848
19131
  * 语音鉴别涉及令人不适宜的信息的任务控制参数
18849
19132
  */