tencentcloud-sdk-nodejs-vod 4.0.199 → 4.0.204
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 +619 -24
- package/package.json +1 -1
- package/products.md +153 -152
- package/src/services/vod/v20180717/vod_client.ts +97 -45
- package/src/services/vod/v20180717/vod_models.ts +148 -10
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +40 -20
- package/tencentcloud/services/vod/v20180717/vod_client.js +54 -26
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +131 -10
|
@@ -1161,14 +1161,15 @@ export interface ComposeMediaResponse {
|
|
|
1161
1161
|
export interface UrlSignatureAuthPolicy {
|
|
1162
1162
|
/**
|
|
1163
1163
|
* [Key 防盗链](https://cloud.tencent.com/document/product/266/14047)设置状态,可选值:
|
|
1164
|
-
<li>Enabled:
|
|
1164
|
+
<li>Enabled: 启用。</li>
|
|
1165
1165
|
<li>Disabled: 禁用。</li>
|
|
1166
1166
|
*/
|
|
1167
1167
|
Status: string;
|
|
1168
1168
|
/**
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1169
|
+
* [Key 防盗链](https://cloud.tencent.com/document/product/266/14047)中用于生成签名的密钥。
|
|
1170
|
+
EncryptedKey 字符串的长度为8~40个字节,不能包含不可见字符。
|
|
1171
|
+
*/
|
|
1172
|
+
EncryptedKey?: string;
|
|
1172
1173
|
}
|
|
1173
1174
|
/**
|
|
1174
1175
|
* DeleteSampleSnapshotTemplate请求参数结构体
|
|
@@ -2331,6 +2332,33 @@ export interface MediaImageSpriteItem {
|
|
|
2331
2332
|
*/
|
|
2332
2333
|
WebVttUrl: string;
|
|
2333
2334
|
}
|
|
2335
|
+
/**
|
|
2336
|
+
* ModifyVodDomainAccelerateConfig请求参数结构体
|
|
2337
|
+
*/
|
|
2338
|
+
export interface ModifyVodDomainAccelerateConfigRequest {
|
|
2339
|
+
/**
|
|
2340
|
+
* 需要设置加速配置的域名。
|
|
2341
|
+
*/
|
|
2342
|
+
Domain: string;
|
|
2343
|
+
/**
|
|
2344
|
+
* 区域,可选值:
|
|
2345
|
+
<li>Chinese Mainland:中国境内(不包含港澳台)。</li>
|
|
2346
|
+
<li>Outside Chinese Mainland: 中国境外。</li>
|
|
2347
|
+
<li>Global: 全球范围。</li>
|
|
2348
|
+
*/
|
|
2349
|
+
Area: string;
|
|
2350
|
+
/**
|
|
2351
|
+
* 开启或者关闭所选区域的域名加速,可选值:
|
|
2352
|
+
<li>Enabled: 开启。</li>
|
|
2353
|
+
<li>Disabled:关闭。</li>
|
|
2354
|
+
开启中国境内加速的域名,需要先[备案域名](/document/product/243/18905)。
|
|
2355
|
+
*/
|
|
2356
|
+
Status: string;
|
|
2357
|
+
/**
|
|
2358
|
+
* 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
2359
|
+
*/
|
|
2360
|
+
SubAppId?: number;
|
|
2361
|
+
}
|
|
2334
2362
|
/**
|
|
2335
2363
|
* 对视频转自适应码流任务结果类型
|
|
2336
2364
|
*/
|
|
@@ -3004,6 +3032,27 @@ export interface TaskStatData {
|
|
|
3004
3032
|
*/
|
|
3005
3033
|
Details: Array<SpecificationDataItem>;
|
|
3006
3034
|
}
|
|
3035
|
+
/**
|
|
3036
|
+
* CreateVodDomain请求参数结构体
|
|
3037
|
+
*/
|
|
3038
|
+
export interface CreateVodDomainRequest {
|
|
3039
|
+
/**
|
|
3040
|
+
* 需要接入点播的加速域名。注意:不支持填写泛域名。
|
|
3041
|
+
*/
|
|
3042
|
+
Domain: string;
|
|
3043
|
+
/**
|
|
3044
|
+
* 需要开启 CDN 加速的区域:
|
|
3045
|
+
<li>Chinese Mainland:中国境内(不包含港澳台)。</li>
|
|
3046
|
+
<li>Outside Chinese Mainland: 中国境外。</li>
|
|
3047
|
+
<li>Global: 全球范围。</li>
|
|
3048
|
+
如果没有设置 AccelerateArea, 点播会根据用户在腾讯云设置的地域信息自动开通中国境内或者中国境外的 CDN 加速。开启中国境内加速的域名,需要先[备案域名](/document/product/243/18905)。
|
|
3049
|
+
*/
|
|
3050
|
+
AccelerateArea?: string;
|
|
3051
|
+
/**
|
|
3052
|
+
* 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
3053
|
+
*/
|
|
3054
|
+
SubAppId?: number;
|
|
3055
|
+
}
|
|
3007
3056
|
/**
|
|
3008
3057
|
* 文本全文本识别任务控制参数
|
|
3009
3058
|
*/
|
|
@@ -5403,7 +5452,7 @@ export interface SimpleHlsClipRequest {
|
|
|
5403
5452
|
export interface MediaDeleteItem {
|
|
5404
5453
|
/**
|
|
5405
5454
|
* 所指定的删除部分。如果未填写该字段则参数无效。可选值有:
|
|
5406
|
-
<li>
|
|
5455
|
+
<li>OriginalFiles(删除原文件,删除后无法发起转码、微信发布等任何视频处理操作)。</li>
|
|
5407
5456
|
<li>TranscodeFiles(删除转码文件)。</li>
|
|
5408
5457
|
<li>WechatPublishFiles(删除微信发布文件)。</li>
|
|
5409
5458
|
*/
|
|
@@ -6215,6 +6264,15 @@ export interface AiRecognitionTaskObjectResultItem {
|
|
|
6215
6264
|
*/
|
|
6216
6265
|
SegmentSet: Array<AiRecognitionTaskObjectSeqmentItem>;
|
|
6217
6266
|
}
|
|
6267
|
+
/**
|
|
6268
|
+
* ModifyVodDomainConfig返回参数结构体
|
|
6269
|
+
*/
|
|
6270
|
+
export interface ModifyVodDomainConfigResponse {
|
|
6271
|
+
/**
|
|
6272
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6273
|
+
*/
|
|
6274
|
+
RequestId?: string;
|
|
6275
|
+
}
|
|
6218
6276
|
/**
|
|
6219
6277
|
* 点播文件指定时间点截图信息
|
|
6220
6278
|
*/
|
|
@@ -6264,6 +6322,27 @@ export interface MediaKeyFrameDescItem {
|
|
|
6264
6322
|
*/
|
|
6265
6323
|
Content: string;
|
|
6266
6324
|
}
|
|
6325
|
+
/**
|
|
6326
|
+
* ModifyVodDomainConfig请求参数结构体
|
|
6327
|
+
*/
|
|
6328
|
+
export interface ModifyVodDomainConfigRequest {
|
|
6329
|
+
/**
|
|
6330
|
+
* 域名。
|
|
6331
|
+
*/
|
|
6332
|
+
Domain: string;
|
|
6333
|
+
/**
|
|
6334
|
+
* [Referer 防盗链](/document/product/266/14046)规则。
|
|
6335
|
+
*/
|
|
6336
|
+
RefererAuthPolicy?: RefererAuthPolicy;
|
|
6337
|
+
/**
|
|
6338
|
+
* [Key 防盗链](/document/product/266/14047)规则。
|
|
6339
|
+
*/
|
|
6340
|
+
UrlSignatureAuthPolicy?: UrlSignatureAuthPolicy;
|
|
6341
|
+
/**
|
|
6342
|
+
* 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
6343
|
+
*/
|
|
6344
|
+
SubAppId?: number;
|
|
6345
|
+
}
|
|
6267
6346
|
/**
|
|
6268
6347
|
* AI 样本管理,标签操作。
|
|
6269
6348
|
*/
|
|
@@ -7392,18 +7471,20 @@ export interface RefererAuthPolicy {
|
|
|
7392
7471
|
Status: string;
|
|
7393
7472
|
/**
|
|
7394
7473
|
* Referer 校验类型,可选值:
|
|
7395
|
-
<li>Black
|
|
7396
|
-
<li>White
|
|
7474
|
+
<li>Black:黑名单方式校验。HTTP 请求携带了 Referers 列表中的某个 Referer 将被拒绝访问。</li>
|
|
7475
|
+
<li>White:白名单方式校验。HTTP 请求携带了 Referers 列表中的 Referer 时才允许访问。</li>
|
|
7476
|
+
当 Status 取值为 Enabled 时,AuthType 必须赋值。
|
|
7397
7477
|
*/
|
|
7398
7478
|
AuthType?: string;
|
|
7399
7479
|
/**
|
|
7400
|
-
* 用于校验的 Referer
|
|
7480
|
+
* 用于校验的 Referer 列表,最大支持20个 Referer。当 Status 取值为 Enabled 时, Referers 不能为空数组。Referer 的格式参考域名的格式。
|
|
7401
7481
|
*/
|
|
7402
7482
|
Referers?: Array<string>;
|
|
7403
7483
|
/**
|
|
7404
7484
|
* 是否允许空 Referer 访问本域名,可选值:
|
|
7405
|
-
<li>Yes
|
|
7406
|
-
<li>No
|
|
7485
|
+
<li>Yes: 是。</li>
|
|
7486
|
+
<li>No: 否。</li>
|
|
7487
|
+
当 Status 取值为 Enabled 时,BlankRefererAllowed 必须赋值。
|
|
7407
7488
|
*/
|
|
7408
7489
|
BlankRefererAllowed?: string;
|
|
7409
7490
|
}
|
|
@@ -9004,6 +9085,19 @@ export interface AsrFullTextConfigureInfo {
|
|
|
9004
9085
|
*/
|
|
9005
9086
|
SubtitleFormat?: string;
|
|
9006
9087
|
}
|
|
9088
|
+
/**
|
|
9089
|
+
* DeleteVodDomain请求参数结构体
|
|
9090
|
+
*/
|
|
9091
|
+
export interface DeleteVodDomainRequest {
|
|
9092
|
+
/**
|
|
9093
|
+
* 要删除的点播加速域名。
|
|
9094
|
+
*/
|
|
9095
|
+
Domain: string;
|
|
9096
|
+
/**
|
|
9097
|
+
* 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
9098
|
+
*/
|
|
9099
|
+
SubAppId?: number;
|
|
9100
|
+
}
|
|
9007
9101
|
/**
|
|
9008
9102
|
* CreateAIRecognitionTemplate请求参数结构体
|
|
9009
9103
|
*/
|
|
@@ -10089,6 +10183,24 @@ export interface SplitMediaOutputConfig {
|
|
|
10089
10183
|
*/
|
|
10090
10184
|
ExpireTime?: string;
|
|
10091
10185
|
}
|
|
10186
|
+
/**
|
|
10187
|
+
* CreateVodDomain返回参数结构体
|
|
10188
|
+
*/
|
|
10189
|
+
export interface CreateVodDomainResponse {
|
|
10190
|
+
/**
|
|
10191
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10192
|
+
*/
|
|
10193
|
+
RequestId?: string;
|
|
10194
|
+
}
|
|
10195
|
+
/**
|
|
10196
|
+
* ModifyVodDomainAccelerateConfig返回参数结构体
|
|
10197
|
+
*/
|
|
10198
|
+
export interface ModifyVodDomainAccelerateConfigResponse {
|
|
10199
|
+
/**
|
|
10200
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10201
|
+
*/
|
|
10202
|
+
RequestId?: string;
|
|
10203
|
+
}
|
|
10092
10204
|
/**
|
|
10093
10205
|
* 视频拆条输入。
|
|
10094
10206
|
*/
|
|
@@ -10934,6 +11046,15 @@ export interface DeleteWatermarkTemplateRequest {
|
|
|
10934
11046
|
*/
|
|
10935
11047
|
SubAppId?: number;
|
|
10936
11048
|
}
|
|
11049
|
+
/**
|
|
11050
|
+
* DeleteVodDomain返回参数结构体
|
|
11051
|
+
*/
|
|
11052
|
+
export interface DeleteVodDomainResponse {
|
|
11053
|
+
/**
|
|
11054
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11055
|
+
*/
|
|
11056
|
+
RequestId?: string;
|
|
11057
|
+
}
|
|
10937
11058
|
/**
|
|
10938
11059
|
* 编辑视频流信息
|
|
10939
11060
|
*/
|