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.
- package/package.json +1 -1
- package/products.md +12 -12
- package/src/services/vod/v20180717/vod_client.ts +101 -13
- package/src/services/vod/v20180717/vod_models.ts +433 -132
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +31 -3
- package/tencentcloud/services/vod/v20180717/vod_client.js +45 -3
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +415 -132
|
@@ -102,6 +102,24 @@ export interface ModifyWatermarkTemplateRequest {
|
|
|
102
102
|
SvgTemplate?: SvgWatermarkInputForUpdate
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
+
/**
|
|
106
|
+
* 域名推送 CLS 目标。
|
|
107
|
+
*/
|
|
108
|
+
export interface DomainCLSTargetInfo {
|
|
109
|
+
/**
|
|
110
|
+
* 域名。
|
|
111
|
+
*/
|
|
112
|
+
Domain?: string
|
|
113
|
+
/**
|
|
114
|
+
* 中国大陆地区的日志推送目标。
|
|
115
|
+
*/
|
|
116
|
+
ChineseMainlandCLSTargetInfo?: AreaCLSTargetInfo
|
|
117
|
+
/**
|
|
118
|
+
* 中国大陆以外地区的日志推送目标。
|
|
119
|
+
*/
|
|
120
|
+
OutsideChineseMainlandCLSTargetInfo?: AreaCLSTargetInfo
|
|
121
|
+
}
|
|
122
|
+
|
|
105
123
|
/**
|
|
106
124
|
* CreateStorageRegion请求参数结构体
|
|
107
125
|
*/
|
|
@@ -1877,37 +1895,21 @@ export interface ClassificationConfigureInfo {
|
|
|
1877
1895
|
}
|
|
1878
1896
|
|
|
1879
1897
|
/**
|
|
1880
|
-
*
|
|
1898
|
+
* 视频画面低光、过曝检测的控制参数。
|
|
1881
1899
|
*/
|
|
1882
|
-
export interface
|
|
1883
|
-
/**
|
|
1884
|
-
* 当前媒体总量。
|
|
1885
|
-
*/
|
|
1886
|
-
MediaCount?: number
|
|
1887
|
-
/**
|
|
1888
|
-
* 当前总存储量,单位是字节。
|
|
1889
|
-
*/
|
|
1890
|
-
TotalStorage?: number
|
|
1891
|
-
/**
|
|
1892
|
-
* 当前标准存储量,单位是字节。
|
|
1893
|
-
*/
|
|
1894
|
-
StandardStorage?: number
|
|
1895
|
-
/**
|
|
1896
|
-
* 当前低频存储量,单位是字节。
|
|
1897
|
-
*/
|
|
1898
|
-
InfrequentStorage?: number
|
|
1899
|
-
/**
|
|
1900
|
-
* 当前归档存储量,单位是字节。
|
|
1901
|
-
*/
|
|
1902
|
-
ArchiveStorage?: number
|
|
1903
|
-
/**
|
|
1904
|
-
* 当前深度归档存储量,单位是字节。
|
|
1905
|
-
*/
|
|
1906
|
-
DeepArchiveStorage?: number
|
|
1900
|
+
export interface AbnormalLightingConfigureInfoForUpdate {
|
|
1907
1901
|
/**
|
|
1908
|
-
*
|
|
1902
|
+
* 视频画面低光、过曝检测开关,可选值:
|
|
1903
|
+
<li>ON:开启;</li>
|
|
1904
|
+
<li>OFF:关闭。</li>
|
|
1909
1905
|
*/
|
|
1910
|
-
|
|
1906
|
+
Switch?: string
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
/**
|
|
1910
|
+
* ModifyWordSample返回参数结构体
|
|
1911
|
+
*/
|
|
1912
|
+
export interface ModifyWordSampleResponse {
|
|
1911
1913
|
/**
|
|
1912
1914
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1913
1915
|
*/
|
|
@@ -2272,6 +2274,34 @@ export interface ComposeMediaRequest {
|
|
|
2272
2274
|
SessionId?: string
|
|
2273
2275
|
}
|
|
2274
2276
|
|
|
2277
|
+
/**
|
|
2278
|
+
* DescribeCLSTopics请求参数结构体
|
|
2279
|
+
*/
|
|
2280
|
+
export interface DescribeCLSTopicsRequest {
|
|
2281
|
+
/**
|
|
2282
|
+
* 日志集所属地区:
|
|
2283
|
+
ap-guangzhou:广州;
|
|
2284
|
+
ap-singapore:新加坡。
|
|
2285
|
+
*/
|
|
2286
|
+
CLSRegion: string
|
|
2287
|
+
/**
|
|
2288
|
+
* 日志主题所属日志集 ID。
|
|
2289
|
+
*/
|
|
2290
|
+
LogsetId: string
|
|
2291
|
+
/**
|
|
2292
|
+
* 日志主题 ID 列表。如果不填,表示查询所有的日志主题。
|
|
2293
|
+
*/
|
|
2294
|
+
TopicIds?: Array<string>
|
|
2295
|
+
/**
|
|
2296
|
+
* 分页偏移量,默认值:0。
|
|
2297
|
+
*/
|
|
2298
|
+
Offset?: number
|
|
2299
|
+
/**
|
|
2300
|
+
* 返回记录条数,默认值:20,最大值:100。
|
|
2301
|
+
*/
|
|
2302
|
+
Limit?: number
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2275
2305
|
/**
|
|
2276
2306
|
* 视频内容识别模板详情
|
|
2277
2307
|
*/
|
|
@@ -2725,6 +2755,27 @@ export interface DescribeDailyPlayStatFileListResponse {
|
|
|
2725
2755
|
RequestId?: string
|
|
2726
2756
|
}
|
|
2727
2757
|
|
|
2758
|
+
/**
|
|
2759
|
+
* CLS日志主题信息。
|
|
2760
|
+
*/
|
|
2761
|
+
export interface CLSTopicInfo {
|
|
2762
|
+
/**
|
|
2763
|
+
* 日志主题 ID。
|
|
2764
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2765
|
+
*/
|
|
2766
|
+
TopicId?: string
|
|
2767
|
+
/**
|
|
2768
|
+
* 日志主题名。
|
|
2769
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2770
|
+
*/
|
|
2771
|
+
TopicName?: string
|
|
2772
|
+
/**
|
|
2773
|
+
* 日志集 ID。
|
|
2774
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2775
|
+
*/
|
|
2776
|
+
LogsetId?: string
|
|
2777
|
+
}
|
|
2778
|
+
|
|
2728
2779
|
/**
|
|
2729
2780
|
* 视频画面低光、过曝检测的控制参数。
|
|
2730
2781
|
*/
|
|
@@ -5041,6 +5092,28 @@ export interface WechatMiniProgramPublishTaskInput {
|
|
|
5041
5092
|
SourceDefinition: number
|
|
5042
5093
|
}
|
|
5043
5094
|
|
|
5095
|
+
/**
|
|
5096
|
+
* SetCLSPushTarget请求参数结构体
|
|
5097
|
+
*/
|
|
5098
|
+
export interface SetCLSPushTargetRequest {
|
|
5099
|
+
/**
|
|
5100
|
+
* 域名。
|
|
5101
|
+
*/
|
|
5102
|
+
Domain: string
|
|
5103
|
+
/**
|
|
5104
|
+
* 点播应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
5105
|
+
*/
|
|
5106
|
+
SubAppId?: number
|
|
5107
|
+
/**
|
|
5108
|
+
* 要设置的中国大陆地区的日志推送目标。
|
|
5109
|
+
*/
|
|
5110
|
+
ChineseMainlandCLSTargetInfo?: AreaCLSTargetInfo
|
|
5111
|
+
/**
|
|
5112
|
+
* 要设置的中国大陆以外地区的日志推送目标。
|
|
5113
|
+
*/
|
|
5114
|
+
OutsideChineseMainlandCLSTargetInfo?: AreaCLSTargetInfo
|
|
5115
|
+
}
|
|
5116
|
+
|
|
5044
5117
|
/**
|
|
5045
5118
|
* AI 样本管理,人脸数据操作。
|
|
5046
5119
|
*/
|
|
@@ -5321,6 +5394,56 @@ export interface MediaSubtitleItem {
|
|
|
5321
5394
|
Url?: string
|
|
5322
5395
|
}
|
|
5323
5396
|
|
|
5397
|
+
/**
|
|
5398
|
+
* 音视频审核任务的输出。
|
|
5399
|
+
*/
|
|
5400
|
+
export interface ReviewAudioVideoTaskOutput {
|
|
5401
|
+
/**
|
|
5402
|
+
* 音视频内容审核的结果建议,取值范围:
|
|
5403
|
+
<li>pass:建议通过;</li>
|
|
5404
|
+
<li>review:建议复审;</li>
|
|
5405
|
+
<li>block:建议封禁。</li>
|
|
5406
|
+
*/
|
|
5407
|
+
Suggestion?: string
|
|
5408
|
+
/**
|
|
5409
|
+
* 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违规的标签,取值范围:
|
|
5410
|
+
<li>Porn:色情;</li>
|
|
5411
|
+
<li>Terror:暴力;</li>
|
|
5412
|
+
<li>Polity:不适宜的信息;</li>
|
|
5413
|
+
<li>Ad:广告;</li>
|
|
5414
|
+
<li>Illegal:违法;</li>
|
|
5415
|
+
<li>Abuse:谩骂;</li>
|
|
5416
|
+
<li>Moan:娇喘。</li>
|
|
5417
|
+
*/
|
|
5418
|
+
Label?: string
|
|
5419
|
+
/**
|
|
5420
|
+
* 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违禁的形式,取值范围:
|
|
5421
|
+
<li>Image:画面上的人物或图标;</li>
|
|
5422
|
+
<li>OCR:画面上的文字;</li>
|
|
5423
|
+
<li>ASR:语音中的文字;</li>
|
|
5424
|
+
<li>Voice:声音。</li>
|
|
5425
|
+
*/
|
|
5426
|
+
Form?: string
|
|
5427
|
+
/**
|
|
5428
|
+
* 有违规信息的嫌疑的视频片段列表。
|
|
5429
|
+
<font color=red>注意</font> :该列表最多仅展示前 10个 元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
|
5430
|
+
*/
|
|
5431
|
+
SegmentSet?: Array<ReviewAudioVideoSegmentItem>
|
|
5432
|
+
/**
|
|
5433
|
+
* 涉及违规信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
|
5434
|
+
*/
|
|
5435
|
+
SegmentSetFileUrl?: string
|
|
5436
|
+
/**
|
|
5437
|
+
* 涉及违规信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
5438
|
+
*/
|
|
5439
|
+
SegmentSetFileUrlExpireTime?: string
|
|
5440
|
+
/**
|
|
5441
|
+
* 封面审核结果。
|
|
5442
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5443
|
+
*/
|
|
5444
|
+
CoverReviewResult?: ReviewImageResult
|
|
5445
|
+
}
|
|
5446
|
+
|
|
5324
5447
|
/**
|
|
5325
5448
|
* 语音违禁任务控制参数
|
|
5326
5449
|
*/
|
|
@@ -5352,9 +5475,9 @@ export interface ModifyAnimatedGraphicsTemplateResponse {
|
|
|
5352
5475
|
}
|
|
5353
5476
|
|
|
5354
5477
|
/**
|
|
5355
|
-
*
|
|
5478
|
+
* DeleteCLSTopic返回参数结构体
|
|
5356
5479
|
*/
|
|
5357
|
-
export interface
|
|
5480
|
+
export interface DeleteCLSTopicResponse {
|
|
5358
5481
|
/**
|
|
5359
5482
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5360
5483
|
*/
|
|
@@ -7549,53 +7672,13 @@ export interface SearchMediaResponse {
|
|
|
7549
7672
|
}
|
|
7550
7673
|
|
|
7551
7674
|
/**
|
|
7552
|
-
*
|
|
7675
|
+
* ModifyAIAnalysisTemplate返回参数结构体
|
|
7553
7676
|
*/
|
|
7554
|
-
export interface
|
|
7555
|
-
/**
|
|
7556
|
-
* 音视频内容审核的结果建议,取值范围:
|
|
7557
|
-
<li>pass:建议通过;</li>
|
|
7558
|
-
<li>review:建议复审;</li>
|
|
7559
|
-
<li>block:建议封禁。</li>
|
|
7560
|
-
*/
|
|
7561
|
-
Suggestion?: string
|
|
7562
|
-
/**
|
|
7563
|
-
* 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违规的标签,取值范围:
|
|
7564
|
-
<li>Porn:色情;</li>
|
|
7565
|
-
<li>Terror:暴力;</li>
|
|
7566
|
-
<li>Polity:不适宜的信息;</li>
|
|
7567
|
-
<li>Ad:广告;</li>
|
|
7568
|
-
<li>Illegal:违法;</li>
|
|
7569
|
-
<li>Abuse:谩骂;</li>
|
|
7570
|
-
<li>Moan:娇喘。</li>
|
|
7571
|
-
*/
|
|
7572
|
-
Label?: string
|
|
7573
|
-
/**
|
|
7574
|
-
* 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违禁的形式,取值范围:
|
|
7575
|
-
<li>Image:画面上的人物或图标;</li>
|
|
7576
|
-
<li>OCR:画面上的文字;</li>
|
|
7577
|
-
<li>ASR:语音中的文字;</li>
|
|
7578
|
-
<li>Voice:声音。</li>
|
|
7579
|
-
*/
|
|
7580
|
-
Form?: string
|
|
7581
|
-
/**
|
|
7582
|
-
* 有违规信息的嫌疑的视频片段列表。
|
|
7583
|
-
<font color=red>注意</font> :该列表最多仅展示前 10个 元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
|
7584
|
-
*/
|
|
7585
|
-
SegmentSet?: Array<ReviewAudioVideoSegmentItem>
|
|
7586
|
-
/**
|
|
7587
|
-
* 涉及违规信息的嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
|
7588
|
-
*/
|
|
7589
|
-
SegmentSetFileUrl?: string
|
|
7590
|
-
/**
|
|
7591
|
-
* 涉及违规信息的嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
7592
|
-
*/
|
|
7593
|
-
SegmentSetFileUrlExpireTime?: string
|
|
7677
|
+
export interface ModifyAIAnalysisTemplateResponse {
|
|
7594
7678
|
/**
|
|
7595
|
-
*
|
|
7596
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7679
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7597
7680
|
*/
|
|
7598
|
-
|
|
7681
|
+
RequestId?: string
|
|
7599
7682
|
}
|
|
7600
7683
|
|
|
7601
7684
|
/**
|
|
@@ -7783,6 +7866,20 @@ export interface ReviewImageSegmentItem {
|
|
|
7783
7866
|
KeywordSet?: Array<string>
|
|
7784
7867
|
}
|
|
7785
7868
|
|
|
7869
|
+
/**
|
|
7870
|
+
* CreateCLSTopic返回参数结构体
|
|
7871
|
+
*/
|
|
7872
|
+
export interface CreateCLSTopicResponse {
|
|
7873
|
+
/**
|
|
7874
|
+
* 日志主题 ID。
|
|
7875
|
+
*/
|
|
7876
|
+
TopicId?: string
|
|
7877
|
+
/**
|
|
7878
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7879
|
+
*/
|
|
7880
|
+
RequestId?: string
|
|
7881
|
+
}
|
|
7882
|
+
|
|
7786
7883
|
/**
|
|
7787
7884
|
* CreateRoundPlay返回参数结构体
|
|
7788
7885
|
*/
|
|
@@ -8026,6 +8123,24 @@ export interface AiRecognitionTaskOcrFullTextResult {
|
|
|
8026
8123
|
FinishTime?: string
|
|
8027
8124
|
}
|
|
8028
8125
|
|
|
8126
|
+
/**
|
|
8127
|
+
* DescribeCLSTopics返回参数结构体
|
|
8128
|
+
*/
|
|
8129
|
+
export interface DescribeCLSTopicsResponse {
|
|
8130
|
+
/**
|
|
8131
|
+
* 日志主题总数量。
|
|
8132
|
+
*/
|
|
8133
|
+
TotalCount?: number
|
|
8134
|
+
/**
|
|
8135
|
+
* 日志主题列表。
|
|
8136
|
+
*/
|
|
8137
|
+
Topics?: Array<CLSTopicInfo>
|
|
8138
|
+
/**
|
|
8139
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8140
|
+
*/
|
|
8141
|
+
RequestId?: string
|
|
8142
|
+
}
|
|
8143
|
+
|
|
8029
8144
|
/**
|
|
8030
8145
|
* 媒体轨道的片段信息
|
|
8031
8146
|
*/
|
|
@@ -8676,6 +8791,32 @@ export interface AsrWordsConfigureInfo {
|
|
|
8676
8791
|
LabelSet?: Array<string>
|
|
8677
8792
|
}
|
|
8678
8793
|
|
|
8794
|
+
/**
|
|
8795
|
+
* 日志推送目标。
|
|
8796
|
+
*/
|
|
8797
|
+
export interface AreaCLSTargetInfo {
|
|
8798
|
+
/**
|
|
8799
|
+
* 日志集所属地区:
|
|
8800
|
+
ap-guangzhou:广州;
|
|
8801
|
+
ap-singapore:新加坡。
|
|
8802
|
+
*/
|
|
8803
|
+
CLSRegion: string
|
|
8804
|
+
/**
|
|
8805
|
+
* 投递的目标主题 ID。
|
|
8806
|
+
*/
|
|
8807
|
+
TopicId: string
|
|
8808
|
+
/**
|
|
8809
|
+
* 投递的目标集 ID。
|
|
8810
|
+
*/
|
|
8811
|
+
LogsetId: string
|
|
8812
|
+
/**
|
|
8813
|
+
* 日志投递状态。
|
|
8814
|
+
ON:启用;
|
|
8815
|
+
OFF:停用。
|
|
8816
|
+
*/
|
|
8817
|
+
Switch?: string
|
|
8818
|
+
}
|
|
8819
|
+
|
|
8679
8820
|
/**
|
|
8680
8821
|
* DeleteRebuildMediaTemplate返回参数结构体
|
|
8681
8822
|
*/
|
|
@@ -11528,15 +11669,41 @@ export interface MediaAiAnalysisTagItem {
|
|
|
11528
11669
|
}
|
|
11529
11670
|
|
|
11530
11671
|
/**
|
|
11531
|
-
*
|
|
11672
|
+
* DescribeStorageData返回参数结构体
|
|
11532
11673
|
*/
|
|
11533
|
-
export interface
|
|
11674
|
+
export interface DescribeStorageDataResponse {
|
|
11534
11675
|
/**
|
|
11535
|
-
*
|
|
11536
|
-
<li>ON:开启;</li>
|
|
11537
|
-
<li>OFF:关闭。</li>
|
|
11676
|
+
* 当前媒体总量。
|
|
11538
11677
|
*/
|
|
11539
|
-
|
|
11678
|
+
MediaCount?: number
|
|
11679
|
+
/**
|
|
11680
|
+
* 当前总存储量,单位是字节。
|
|
11681
|
+
*/
|
|
11682
|
+
TotalStorage?: number
|
|
11683
|
+
/**
|
|
11684
|
+
* 当前标准存储量,单位是字节。
|
|
11685
|
+
*/
|
|
11686
|
+
StandardStorage?: number
|
|
11687
|
+
/**
|
|
11688
|
+
* 当前低频存储量,单位是字节。
|
|
11689
|
+
*/
|
|
11690
|
+
InfrequentStorage?: number
|
|
11691
|
+
/**
|
|
11692
|
+
* 当前归档存储量,单位是字节。
|
|
11693
|
+
*/
|
|
11694
|
+
ArchiveStorage?: number
|
|
11695
|
+
/**
|
|
11696
|
+
* 当前深度归档存储量,单位是字节。
|
|
11697
|
+
*/
|
|
11698
|
+
DeepArchiveStorage?: number
|
|
11699
|
+
/**
|
|
11700
|
+
* 各计费区域的存储用量。
|
|
11701
|
+
*/
|
|
11702
|
+
StorageStat?: Array<StorageStatData>
|
|
11703
|
+
/**
|
|
11704
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11705
|
+
*/
|
|
11706
|
+
RequestId?: string
|
|
11540
11707
|
}
|
|
11541
11708
|
|
|
11542
11709
|
/**
|
|
@@ -11734,6 +11901,26 @@ export interface AiRecognitionTaskObjectSegmentItem {
|
|
|
11734
11901
|
AreaCoordSet?: Array<number | bigint>
|
|
11735
11902
|
}
|
|
11736
11903
|
|
|
11904
|
+
/**
|
|
11905
|
+
* CreateCLSTopic请求参数结构体
|
|
11906
|
+
*/
|
|
11907
|
+
export interface CreateCLSTopicRequest {
|
|
11908
|
+
/**
|
|
11909
|
+
* 日志集所属地区:
|
|
11910
|
+
ap-guangzhou:广州;
|
|
11911
|
+
ap-singapore:新加坡。
|
|
11912
|
+
*/
|
|
11913
|
+
CLSRegion: string
|
|
11914
|
+
/**
|
|
11915
|
+
* 日志主题名。
|
|
11916
|
+
*/
|
|
11917
|
+
TopicName: string
|
|
11918
|
+
/**
|
|
11919
|
+
* 日志集 ID。
|
|
11920
|
+
*/
|
|
11921
|
+
LogsetId: string
|
|
11922
|
+
}
|
|
11923
|
+
|
|
11737
11924
|
/**
|
|
11738
11925
|
* Ocr 文字涉及令人反感的信息
|
|
11739
11926
|
*/
|
|
@@ -12183,6 +12370,16 @@ export interface VoiceConfigureInfo {
|
|
|
12183
12370
|
Switch: string
|
|
12184
12371
|
}
|
|
12185
12372
|
|
|
12373
|
+
/**
|
|
12374
|
+
* SetCLSPushTarget返回参数结构体
|
|
12375
|
+
*/
|
|
12376
|
+
export interface SetCLSPushTargetResponse {
|
|
12377
|
+
/**
|
|
12378
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12379
|
+
*/
|
|
12380
|
+
RequestId?: string
|
|
12381
|
+
}
|
|
12382
|
+
|
|
12186
12383
|
/**
|
|
12187
12384
|
* 视频剪辑任务信息,该结构仅用于对 2017 版[视频剪辑](https://cloud.tencent.com/document/product/266/10156)接口发起的任务。
|
|
12188
12385
|
*/
|
|
@@ -12475,45 +12672,19 @@ export interface AiReviewProhibitedAsrTaskInput {
|
|
|
12475
12672
|
}
|
|
12476
12673
|
|
|
12477
12674
|
/**
|
|
12478
|
-
*
|
|
12675
|
+
* DeleteCLSTopic请求参数结构体
|
|
12479
12676
|
*/
|
|
12480
|
-
export interface
|
|
12481
|
-
/**
|
|
12482
|
-
* 嫌疑片段起始的偏移时间,单位:秒。
|
|
12483
|
-
*/
|
|
12484
|
-
StartTimeOffset?: number
|
|
12485
|
-
/**
|
|
12486
|
-
* 嫌疑片段结束的偏移时间,单位:秒。
|
|
12487
|
-
*/
|
|
12488
|
-
EndTimeOffset?: number
|
|
12489
|
-
/**
|
|
12490
|
-
* 嫌疑片段涉及令人反感的信息的分数。
|
|
12491
|
-
*/
|
|
12492
|
-
Confidence?: number
|
|
12493
|
-
/**
|
|
12494
|
-
* 嫌疑片段涉及令人反感的信息的结果标签。
|
|
12495
|
-
*/
|
|
12496
|
-
Label?: string
|
|
12497
|
-
/**
|
|
12498
|
-
* 嫌疑片段鉴别涉及令人反感的信息的结果建议,取值范围:
|
|
12499
|
-
<li>pass。</li>
|
|
12500
|
-
<li>review。</li>
|
|
12501
|
-
<li>block。</li>
|
|
12502
|
-
*/
|
|
12503
|
-
Suggestion?: string
|
|
12504
|
-
/**
|
|
12505
|
-
* 嫌疑图片 URL (图片不会永久存储,到达
|
|
12506
|
-
PicUrlExpireTime 时间点后图片将被删除)。
|
|
12507
|
-
*/
|
|
12508
|
-
Url?: string
|
|
12677
|
+
export interface DeleteCLSTopicRequest {
|
|
12509
12678
|
/**
|
|
12510
|
-
*
|
|
12679
|
+
* 日志集所属地区:
|
|
12680
|
+
ap-guangzhou:广州;
|
|
12681
|
+
ap-singapore:新加坡。
|
|
12511
12682
|
*/
|
|
12512
|
-
|
|
12683
|
+
CLSRegion?: string
|
|
12513
12684
|
/**
|
|
12514
|
-
*
|
|
12685
|
+
* 日志主题 ID。
|
|
12515
12686
|
*/
|
|
12516
|
-
|
|
12687
|
+
TopicId?: string
|
|
12517
12688
|
}
|
|
12518
12689
|
|
|
12519
12690
|
/**
|
|
@@ -14951,6 +15122,18 @@ export interface DescribeImageSpriteTemplatesResponse {
|
|
|
14951
15122
|
RequestId?: string
|
|
14952
15123
|
}
|
|
14953
15124
|
|
|
15125
|
+
/**
|
|
15126
|
+
* DescribeCLSLogsets请求参数结构体
|
|
15127
|
+
*/
|
|
15128
|
+
export interface DescribeCLSLogsetsRequest {
|
|
15129
|
+
/**
|
|
15130
|
+
* CLS 日志集所属的地域,取值有:
|
|
15131
|
+
ap-guangzhou:广州;
|
|
15132
|
+
ap-singapore:新加坡。
|
|
15133
|
+
*/
|
|
15134
|
+
CLSRegion: string
|
|
15135
|
+
}
|
|
15136
|
+
|
|
14954
15137
|
/**
|
|
14955
15138
|
* InspectMediaQuality请求参数结构体
|
|
14956
15139
|
*/
|
|
@@ -15532,6 +15715,20 @@ export interface CreateProcedureTemplateResponse {
|
|
|
15532
15715
|
RequestId?: string
|
|
15533
15716
|
}
|
|
15534
15717
|
|
|
15718
|
+
/**
|
|
15719
|
+
* DescribeCLSLogsets返回参数结构体
|
|
15720
|
+
*/
|
|
15721
|
+
export interface DescribeCLSLogsetsResponse {
|
|
15722
|
+
/**
|
|
15723
|
+
* 查询到的日志集列表。
|
|
15724
|
+
*/
|
|
15725
|
+
Logsets?: Array<CLSLogsetInfo>
|
|
15726
|
+
/**
|
|
15727
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
15728
|
+
*/
|
|
15729
|
+
RequestId?: string
|
|
15730
|
+
}
|
|
15731
|
+
|
|
15535
15732
|
/**
|
|
15536
15733
|
* ModifyEnhanceMediaTemplate请求参数结构体
|
|
15537
15734
|
*/
|
|
@@ -16121,6 +16318,18 @@ export interface ProcedureTask {
|
|
|
16121
16318
|
OperationType?: string
|
|
16122
16319
|
}
|
|
16123
16320
|
|
|
16321
|
+
/**
|
|
16322
|
+
* CreateCLSLogset请求参数结构体
|
|
16323
|
+
*/
|
|
16324
|
+
export interface CreateCLSLogsetRequest {
|
|
16325
|
+
/**
|
|
16326
|
+
* 日志集所属地区:
|
|
16327
|
+
ap-guangzhou:广州;
|
|
16328
|
+
ap-singapore:新加坡。
|
|
16329
|
+
*/
|
|
16330
|
+
CLSRegion: string
|
|
16331
|
+
}
|
|
16332
|
+
|
|
16124
16333
|
/**
|
|
16125
16334
|
* ExtractTraceWatermark请求参数结构体
|
|
16126
16335
|
*/
|
|
@@ -16396,24 +16605,15 @@ export interface ProhibitedOcrReviewTemplateInfoForUpdate {
|
|
|
16396
16605
|
}
|
|
16397
16606
|
|
|
16398
16607
|
/**
|
|
16399
|
-
*
|
|
16608
|
+
* DescribeCLSPushTargets请求参数结构体
|
|
16400
16609
|
*/
|
|
16401
|
-
export interface
|
|
16610
|
+
export interface DescribeCLSPushTargetsRequest {
|
|
16402
16611
|
/**
|
|
16403
|
-
*
|
|
16404
|
-
<li>域名个数度最大为 20。</li>
|
|
16612
|
+
* 点播域名。
|
|
16405
16613
|
*/
|
|
16406
|
-
Domains
|
|
16614
|
+
Domains: Array<string>
|
|
16407
16615
|
/**
|
|
16408
|
-
*
|
|
16409
|
-
*/
|
|
16410
|
-
Limit?: number
|
|
16411
|
-
/**
|
|
16412
|
-
* 分页拉取的起始偏移量。默认值:0。
|
|
16413
|
-
*/
|
|
16414
|
-
Offset?: number
|
|
16415
|
-
/**
|
|
16416
|
-
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
16616
|
+
* 点播应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
16417
16617
|
*/
|
|
16418
16618
|
SubAppId?: number
|
|
16419
16619
|
}
|
|
@@ -16997,13 +17197,45 @@ export interface DescribeSampleSnapshotTemplatesResponse {
|
|
|
16997
17197
|
}
|
|
16998
17198
|
|
|
16999
17199
|
/**
|
|
17000
|
-
*
|
|
17200
|
+
* 音视频审核涉及令人反感的信息、涉及令人不安全的信息的嫌疑片段
|
|
17001
17201
|
*/
|
|
17002
|
-
export interface
|
|
17202
|
+
export interface MediaContentReviewSegmentItem {
|
|
17003
17203
|
/**
|
|
17004
|
-
*
|
|
17204
|
+
* 嫌疑片段起始的偏移时间,单位:秒。
|
|
17005
17205
|
*/
|
|
17006
|
-
|
|
17206
|
+
StartTimeOffset?: number
|
|
17207
|
+
/**
|
|
17208
|
+
* 嫌疑片段结束的偏移时间,单位:秒。
|
|
17209
|
+
*/
|
|
17210
|
+
EndTimeOffset?: number
|
|
17211
|
+
/**
|
|
17212
|
+
* 嫌疑片段涉及令人反感的信息的分数。
|
|
17213
|
+
*/
|
|
17214
|
+
Confidence?: number
|
|
17215
|
+
/**
|
|
17216
|
+
* 嫌疑片段涉及令人反感的信息的结果标签。
|
|
17217
|
+
*/
|
|
17218
|
+
Label?: string
|
|
17219
|
+
/**
|
|
17220
|
+
* 嫌疑片段鉴别涉及令人反感的信息的结果建议,取值范围:
|
|
17221
|
+
<li>pass。</li>
|
|
17222
|
+
<li>review。</li>
|
|
17223
|
+
<li>block。</li>
|
|
17224
|
+
*/
|
|
17225
|
+
Suggestion?: string
|
|
17226
|
+
/**
|
|
17227
|
+
* 嫌疑图片 URL (图片不会永久存储,到达
|
|
17228
|
+
PicUrlExpireTime 时间点后图片将被删除)。
|
|
17229
|
+
*/
|
|
17230
|
+
Url?: string
|
|
17231
|
+
/**
|
|
17232
|
+
* 该字段已废弃,请使用 PicUrlExpireTime。
|
|
17233
|
+
*/
|
|
17234
|
+
PicUrlExpireTimeStamp?: number
|
|
17235
|
+
/**
|
|
17236
|
+
* 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
17237
|
+
*/
|
|
17238
|
+
PicUrlExpireTime?: string
|
|
17007
17239
|
}
|
|
17008
17240
|
|
|
17009
17241
|
/**
|
|
@@ -17987,6 +18219,20 @@ export interface MediaTranscodeItem {
|
|
|
17987
18219
|
CopyRightWatermarkText?: string
|
|
17988
18220
|
}
|
|
17989
18221
|
|
|
18222
|
+
/**
|
|
18223
|
+
* CLS 日志集信息
|
|
18224
|
+
*/
|
|
18225
|
+
export interface CLSLogsetInfo {
|
|
18226
|
+
/**
|
|
18227
|
+
* 日志集 ID。
|
|
18228
|
+
*/
|
|
18229
|
+
LogsetId?: string
|
|
18230
|
+
/**
|
|
18231
|
+
* 日志集名。
|
|
18232
|
+
*/
|
|
18233
|
+
LogsetName?: string
|
|
18234
|
+
}
|
|
18235
|
+
|
|
17990
18236
|
/**
|
|
17991
18237
|
* DescribePersonSamples返回参数结构体
|
|
17992
18238
|
*/
|
|
@@ -18047,6 +18293,29 @@ export interface SplitMediaTaskInput {
|
|
|
18047
18293
|
OutputConfig: SplitMediaOutputConfig
|
|
18048
18294
|
}
|
|
18049
18295
|
|
|
18296
|
+
/**
|
|
18297
|
+
* DescribeVodDomains请求参数结构体
|
|
18298
|
+
*/
|
|
18299
|
+
export interface DescribeVodDomainsRequest {
|
|
18300
|
+
/**
|
|
18301
|
+
* 域名列表。当该字段不填时,则默认列出所有域名信息。本字段限制如下:
|
|
18302
|
+
<li>域名个数度最大为 20。</li>
|
|
18303
|
+
*/
|
|
18304
|
+
Domains?: Array<string>
|
|
18305
|
+
/**
|
|
18306
|
+
* 分页拉取的最大返回结果数。默认值:20。
|
|
18307
|
+
*/
|
|
18308
|
+
Limit?: number
|
|
18309
|
+
/**
|
|
18310
|
+
* 分页拉取的起始偏移量。默认值:0。
|
|
18311
|
+
*/
|
|
18312
|
+
Offset?: number
|
|
18313
|
+
/**
|
|
18314
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
18315
|
+
*/
|
|
18316
|
+
SubAppId?: number
|
|
18317
|
+
}
|
|
18318
|
+
|
|
18050
18319
|
/**
|
|
18051
18320
|
* 鉴别涉及令人反感的信息的任务控制参数
|
|
18052
18321
|
*/
|
|
@@ -19368,6 +19637,24 @@ export interface QualityInspectItem {
|
|
|
19368
19637
|
Confidence?: number
|
|
19369
19638
|
}
|
|
19370
19639
|
|
|
19640
|
+
/**
|
|
19641
|
+
* DescribeCLSPushTargets返回参数结构体
|
|
19642
|
+
*/
|
|
19643
|
+
export interface DescribeCLSPushTargetsResponse {
|
|
19644
|
+
/**
|
|
19645
|
+
* 域名推送总数量。
|
|
19646
|
+
*/
|
|
19647
|
+
TotalCount?: number
|
|
19648
|
+
/**
|
|
19649
|
+
* 域名推送 CLS 目标列表。
|
|
19650
|
+
*/
|
|
19651
|
+
DomainCLSTargets?: Array<DomainCLSTargetInfo>
|
|
19652
|
+
/**
|
|
19653
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
19654
|
+
*/
|
|
19655
|
+
RequestId?: string
|
|
19656
|
+
}
|
|
19657
|
+
|
|
19371
19658
|
/**
|
|
19372
19659
|
* 拉取上传任务信息
|
|
19373
19660
|
*/
|
|
@@ -19603,6 +19890,20 @@ export interface TerrorismConfigureInfo {
|
|
|
19603
19890
|
OcrReviewInfo?: TerrorismOcrReviewTemplateInfo
|
|
19604
19891
|
}
|
|
19605
19892
|
|
|
19893
|
+
/**
|
|
19894
|
+
* CreateCLSLogset返回参数结构体
|
|
19895
|
+
*/
|
|
19896
|
+
export interface CreateCLSLogsetResponse {
|
|
19897
|
+
/**
|
|
19898
|
+
* 日志集 ID。
|
|
19899
|
+
*/
|
|
19900
|
+
LogsetId?: string
|
|
19901
|
+
/**
|
|
19902
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
19903
|
+
*/
|
|
19904
|
+
RequestId?: string
|
|
19905
|
+
}
|
|
19906
|
+
|
|
19606
19907
|
/**
|
|
19607
19908
|
* 语音鉴别涉及令人不适宜的信息的任务控制参数
|
|
19608
19909
|
*/
|