tencentcloud-sdk-nodejs 4.0.764 → 4.0.765
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 +78 -0
- package/SERVICE_CHANGELOG.md +92 -155
- package/package.json +1 -1
- package/products.md +9 -9
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdwdoris/v20211228/cdwdoris_models.ts +10 -0
- package/src/services/emr/v20190103/emr_client.ts +2 -0
- package/src/services/emr/v20190103/emr_models.ts +230 -46
- package/src/services/ess/v20201111/ess_models.ts +29 -27
- package/src/services/essbasic/v20210526/essbasic_models.ts +6 -3
- package/src/services/organization/v20210331/organization_models.ts +17 -17
- package/src/services/rkp/v20191209/rkp_client.ts +12 -6
- package/src/services/ses/v20201002/ses_models.ts +2 -3
- package/src/services/vod/v20180717/vod_client.ts +33 -22
- package/src/services/vod/v20180717/vod_models.ts +4 -3
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdwdoris/v20211228/cdwdoris_models.d.ts +10 -0
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +228 -46
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +29 -27
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +6 -3
- package/tencentcloud/services/organization/v20210331/organization_models.d.ts +17 -17
- package/tencentcloud/services/rkp/v20191209/rkp_client.d.ts +9 -3
- package/tencentcloud/services/rkp/v20191209/rkp_client.js +9 -3
- package/tencentcloud/services/ses/v20201002/ses_models.d.ts +2 -3
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +22 -11
- package/tencentcloud/services/vod/v20180717/vod_client.js +22 -11
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +4 -3
|
@@ -469,7 +469,7 @@ export interface CreateOrganizationMemberResponse {
|
|
|
469
469
|
* 成员Uin。
|
|
470
470
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
471
471
|
*/
|
|
472
|
-
Uin
|
|
472
|
+
Uin?: number;
|
|
473
473
|
/**
|
|
474
474
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
475
475
|
*/
|
|
@@ -1011,82 +1011,82 @@ export interface DescribeOrganizationResponse {
|
|
|
1011
1011
|
* 企业组织ID。
|
|
1012
1012
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1013
1013
|
*/
|
|
1014
|
-
OrgId
|
|
1014
|
+
OrgId?: number;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* 创建者UIN。
|
|
1017
1017
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1018
1018
|
*/
|
|
1019
|
-
HostUin
|
|
1019
|
+
HostUin?: number;
|
|
1020
1020
|
/**
|
|
1021
1021
|
* 创建者昵称。
|
|
1022
1022
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1023
1023
|
*/
|
|
1024
|
-
NickName
|
|
1024
|
+
NickName?: string;
|
|
1025
1025
|
/**
|
|
1026
1026
|
* 企业组织类型。
|
|
1027
1027
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1028
1028
|
*/
|
|
1029
|
-
OrgType
|
|
1029
|
+
OrgType?: number;
|
|
1030
1030
|
/**
|
|
1031
1031
|
* 是否组织管理员。是:true ,否:false
|
|
1032
1032
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1033
1033
|
*/
|
|
1034
|
-
IsManager
|
|
1034
|
+
IsManager?: boolean;
|
|
1035
1035
|
/**
|
|
1036
1036
|
* 策略类型。财务管理:Financial
|
|
1037
1037
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1038
1038
|
*/
|
|
1039
|
-
OrgPolicyType
|
|
1039
|
+
OrgPolicyType?: string;
|
|
1040
1040
|
/**
|
|
1041
1041
|
* 策略名。
|
|
1042
1042
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1043
1043
|
*/
|
|
1044
|
-
OrgPolicyName
|
|
1044
|
+
OrgPolicyName?: string;
|
|
1045
1045
|
/**
|
|
1046
1046
|
* 成员财务权限列表。
|
|
1047
1047
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1048
1048
|
*/
|
|
1049
|
-
OrgPermission
|
|
1049
|
+
OrgPermission?: Array<OrgPermission>;
|
|
1050
1050
|
/**
|
|
1051
1051
|
* 组织根节点ID。
|
|
1052
1052
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1053
1053
|
*/
|
|
1054
|
-
RootNodeId
|
|
1054
|
+
RootNodeId?: number;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* 组织创建时间。
|
|
1057
1057
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1058
1058
|
*/
|
|
1059
|
-
CreateTime
|
|
1059
|
+
CreateTime?: string;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* 成员加入时间。
|
|
1062
1062
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1063
1063
|
*/
|
|
1064
|
-
JoinTime
|
|
1064
|
+
JoinTime?: string;
|
|
1065
1065
|
/**
|
|
1066
1066
|
* 成员是否允许退出。允许:Allow,不允许:Denied
|
|
1067
1067
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1068
1068
|
*/
|
|
1069
|
-
IsAllowQuit
|
|
1069
|
+
IsAllowQuit?: string;
|
|
1070
1070
|
/**
|
|
1071
1071
|
* 代付者Uin。
|
|
1072
1072
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1073
1073
|
*/
|
|
1074
|
-
PayUin
|
|
1074
|
+
PayUin?: string;
|
|
1075
1075
|
/**
|
|
1076
1076
|
* 代付者名称。
|
|
1077
1077
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1078
1078
|
*/
|
|
1079
|
-
PayName
|
|
1079
|
+
PayName?: string;
|
|
1080
1080
|
/**
|
|
1081
1081
|
* 是否可信服务管理员。是:true,否:false
|
|
1082
1082
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1083
1083
|
*/
|
|
1084
|
-
IsAssignManager
|
|
1084
|
+
IsAssignManager?: boolean;
|
|
1085
1085
|
/**
|
|
1086
1086
|
* 是否实名主体管理员。是:true,否:false
|
|
1087
1087
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1088
1088
|
*/
|
|
1089
|
-
IsAuthManager
|
|
1089
|
+
IsAuthManager?: boolean;
|
|
1090
1090
|
/**
|
|
1091
1091
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1092
1092
|
*/
|
|
@@ -8,15 +8,21 @@ import { GetTokenResponse, QueryDevAndRiskRequest, GetOpenIdRequest, QueryDevAnd
|
|
|
8
8
|
export declare class Client extends AbstractClient {
|
|
9
9
|
constructor(clientConfig: ClientConfig);
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* 产品侧确认风险探针已停售,无收入,并且已经停服。目前服务使用自建redis,不符合规范需要整改下线。
|
|
12
|
+
|
|
13
|
+
根据DevicceToken查询OpenID。
|
|
12
14
|
*/
|
|
13
15
|
GetOpenId(req: GetOpenIdRequest, cb?: (error: string, rep: GetOpenIdResponse) => void): Promise<GetOpenIdResponse>;
|
|
14
16
|
/**
|
|
15
|
-
*
|
|
17
|
+
* 产品侧确认风险探针已停售,无收入,并且已经停服。目前服务使用自建redis,不符合规范需要整改下线。
|
|
18
|
+
|
|
19
|
+
获取token接口。
|
|
16
20
|
*/
|
|
17
21
|
GetToken(req: GetTokenRequest, cb?: (error: string, rep: GetTokenResponse) => void): Promise<GetTokenResponse>;
|
|
18
22
|
/**
|
|
19
|
-
*
|
|
23
|
+
* 产品侧确认风险探针已停售,无收入,并且已经停服。目前服务使用自建redis,不符合规范需要整改下线。
|
|
24
|
+
|
|
25
|
+
腾讯天御设备风险查询接口,输入由客户应用自主采集的设备信息, 通过腾讯大数据风控能力,可以准确根据输入设备信息,还原设备库中的设备ID,并且识别设备的风险,解决客户业务过程中的设备风险,降低企业损失。
|
|
20
26
|
*/
|
|
21
27
|
QueryDevAndRisk(req: QueryDevAndRiskRequest, cb?: (error: string, rep: QueryDevAndRiskResponse) => void): Promise<QueryDevAndRiskResponse>;
|
|
22
28
|
}
|
|
@@ -28,19 +28,25 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
28
28
|
super("rkp.tencentcloudapi.com", "2019-12-09", clientConfig);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* 产品侧确认风险探针已停售,无收入,并且已经停服。目前服务使用自建redis,不符合规范需要整改下线。
|
|
32
|
+
|
|
33
|
+
根据DevicceToken查询OpenID。
|
|
32
34
|
*/
|
|
33
35
|
async GetOpenId(req, cb) {
|
|
34
36
|
return this.request("GetOpenId", req, cb);
|
|
35
37
|
}
|
|
36
38
|
/**
|
|
37
|
-
*
|
|
39
|
+
* 产品侧确认风险探针已停售,无收入,并且已经停服。目前服务使用自建redis,不符合规范需要整改下线。
|
|
40
|
+
|
|
41
|
+
获取token接口。
|
|
38
42
|
*/
|
|
39
43
|
async GetToken(req, cb) {
|
|
40
44
|
return this.request("GetToken", req, cb);
|
|
41
45
|
}
|
|
42
46
|
/**
|
|
43
|
-
*
|
|
47
|
+
* 产品侧确认风险探针已停售,无收入,并且已经停服。目前服务使用自建redis,不符合规范需要整改下线。
|
|
48
|
+
|
|
49
|
+
腾讯天御设备风险查询接口,输入由客户应用自主采集的设备信息, 通过腾讯大数据风控能力,可以准确根据输入设备信息,还原设备库中的设备ID,并且识别设备的风险,解决客户业务过程中的设备风险,降低企业损失。
|
|
44
50
|
*/
|
|
45
51
|
async QueryDevAndRisk(req, cb) {
|
|
46
52
|
return this.request("QueryDevAndRisk", req, cb);
|
|
@@ -277,9 +277,8 @@ export interface GetSendEmailStatusResponse {
|
|
|
277
277
|
*/
|
|
278
278
|
export interface SendEmailRequest {
|
|
279
279
|
/**
|
|
280
|
-
*
|
|
281
|
-
|
|
282
|
-
别名 <邮箱地址>,例如:QCLOUDTEAM <noreply@mail.qcloud.com>
|
|
280
|
+
* 发件人邮箱地址。不使用别名时请直接填写发件人邮箱地址,例如:noreply@mail.qcloud.com
|
|
281
|
+
如需填写发件人别名时,请按照如下方式(注意别名与邮箱地址之间必须使用一个空格隔开):别名+一个空格+<邮箱地址>
|
|
283
282
|
*/
|
|
284
283
|
FromEmailAddress: string;
|
|
285
284
|
/**
|
|
@@ -94,7 +94,8 @@ export declare class Client extends AbstractClient {
|
|
|
94
94
|
*/
|
|
95
95
|
CreateQualityInspectTemplate(req: CreateQualityInspectTemplateRequest, cb?: (error: string, rep: CreateQualityInspectTemplateResponse) => void): Promise<CreateQualityInspectTemplateResponse>;
|
|
96
96
|
/**
|
|
97
|
-
*
|
|
97
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
98
|
+
修改视频重生模板。
|
|
98
99
|
*/
|
|
99
100
|
ModifyRebuildMediaTemplate(req: ModifyRebuildMediaTemplateRequest, cb?: (error: string, rep: ModifyRebuildMediaTemplateResponse) => void): Promise<ModifyRebuildMediaTemplateResponse>;
|
|
100
101
|
/**
|
|
@@ -288,7 +289,8 @@ export declare class Client extends AbstractClient {
|
|
|
288
289
|
*/
|
|
289
290
|
CreateContentReviewTemplate(req: CreateContentReviewTemplateRequest, cb?: (error: string, rep: CreateContentReviewTemplateResponse) => void): Promise<CreateContentReviewTemplateResponse>;
|
|
290
291
|
/**
|
|
291
|
-
*
|
|
292
|
+
* 该 API 已经<font color=red>不再维护</font>,请使用新版接口 [音画质重生](https://cloud.tencent.com/document/api/266/102571)。
|
|
293
|
+
发起音画质重生
|
|
292
294
|
*/
|
|
293
295
|
RebuildMedia(req: RebuildMediaRequest, cb?: (error: string, rep: RebuildMediaResponse) => void): Promise<RebuildMediaResponse>;
|
|
294
296
|
/**
|
|
@@ -306,7 +308,8 @@ export declare class Client extends AbstractClient {
|
|
|
306
308
|
*/
|
|
307
309
|
DescribeDrmKeyProviderInfo(req: DescribeDrmKeyProviderInfoRequest, cb?: (error: string, rep: DescribeDrmKeyProviderInfoResponse) => void): Promise<DescribeDrmKeyProviderInfoResponse>;
|
|
308
310
|
/**
|
|
309
|
-
*
|
|
311
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
312
|
+
删除视频重生模板。
|
|
310
313
|
*/
|
|
311
314
|
DeleteRebuildMediaTemplate(req: DeleteRebuildMediaTemplateRequest, cb?: (error: string, rep: DeleteRebuildMediaTemplateResponse) => void): Promise<DeleteRebuildMediaTemplateResponse>;
|
|
312
315
|
/**
|
|
@@ -433,7 +436,8 @@ export declare class Client extends AbstractClient {
|
|
|
433
436
|
*/
|
|
434
437
|
DescribeImageReviewUsageData(req: DescribeImageReviewUsageDataRequest, cb?: (error: string, rep: DescribeImageReviewUsageDataResponse) => void): Promise<DescribeImageReviewUsageDataResponse>;
|
|
435
438
|
/**
|
|
436
|
-
*
|
|
439
|
+
* 该 API 已经<font color=red>不再维护</font>,请使用新版接口 [音画质重生](https://cloud.tencent.com/document/api/266/102571)。
|
|
440
|
+
使用模板发起音画质重生。
|
|
437
441
|
*/
|
|
438
442
|
EnhanceMediaByTemplate(req: EnhanceMediaByTemplateRequest, cb?: (error: string, rep: EnhanceMediaByTemplateResponse) => void): Promise<EnhanceMediaByTemplateResponse>;
|
|
439
443
|
/**
|
|
@@ -441,11 +445,13 @@ export declare class Client extends AbstractClient {
|
|
|
441
445
|
*/
|
|
442
446
|
ModifyPersonSample(req: ModifyPersonSampleRequest, cb?: (error: string, rep: ModifyPersonSampleResponse) => void): Promise<ModifyPersonSampleResponse>;
|
|
443
447
|
/**
|
|
444
|
-
*
|
|
448
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
449
|
+
创建音画质重生模板。
|
|
445
450
|
*/
|
|
446
451
|
CreateEnhanceMediaTemplate(req: CreateEnhanceMediaTemplateRequest, cb?: (error: string, rep: CreateEnhanceMediaTemplateResponse) => void): Promise<CreateEnhanceMediaTemplateResponse>;
|
|
447
452
|
/**
|
|
448
|
-
*
|
|
453
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
454
|
+
创建视频重生模板。
|
|
449
455
|
*/
|
|
450
456
|
CreateRebuildMediaTemplate(req: CreateRebuildMediaTemplateRequest, cb?: (error: string, rep: CreateRebuildMediaTemplateResponse) => void): Promise<CreateRebuildMediaTemplateResponse>;
|
|
451
457
|
/**
|
|
@@ -672,7 +678,8 @@ export declare class Client extends AbstractClient {
|
|
|
672
678
|
*/
|
|
673
679
|
ModifyWordSample(req: ModifyWordSampleRequest, cb?: (error: string, rep: ModifyWordSampleResponse) => void): Promise<ModifyWordSampleResponse>;
|
|
674
680
|
/**
|
|
675
|
-
*
|
|
681
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
682
|
+
修改音画质重生模板。
|
|
676
683
|
*/
|
|
677
684
|
ModifyEnhanceMediaTemplate(req: ModifyEnhanceMediaTemplateRequest, cb?: (error: string, rep: ModifyEnhanceMediaTemplateResponse) => void): Promise<ModifyEnhanceMediaTemplateResponse>;
|
|
678
685
|
/**
|
|
@@ -807,7 +814,8 @@ export declare class Client extends AbstractClient {
|
|
|
807
814
|
*/
|
|
808
815
|
DeletePersonSample(req: DeletePersonSampleRequest, cb?: (error: string, rep: DeletePersonSampleResponse) => void): Promise<DeletePersonSampleResponse>;
|
|
809
816
|
/**
|
|
810
|
-
*
|
|
817
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
818
|
+
获取音画质重生模板列表。
|
|
811
819
|
*/
|
|
812
820
|
DescribeEnhanceMediaTemplates(req: DescribeEnhanceMediaTemplatesRequest, cb?: (error: string, rep: DescribeEnhanceMediaTemplatesResponse) => void): Promise<DescribeEnhanceMediaTemplatesResponse>;
|
|
813
821
|
/**
|
|
@@ -898,7 +906,8 @@ export declare class Client extends AbstractClient {
|
|
|
898
906
|
*/
|
|
899
907
|
DescribeMediaInfos(req: DescribeMediaInfosRequest, cb?: (error: string, rep: DescribeMediaInfosResponse) => void): Promise<DescribeMediaInfosResponse>;
|
|
900
908
|
/**
|
|
901
|
-
*
|
|
909
|
+
* 该 API 已经<font color=red>不再维护</font>,请使用新版接口 [音画质重生](https://cloud.tencent.com/document/api/266/102571)。
|
|
910
|
+
使用模板发起视频重生。
|
|
902
911
|
*/
|
|
903
912
|
RebuildMediaByTemplate(req: RebuildMediaByTemplateRequest, cb?: (error: string, rep: RebuildMediaByTemplateResponse) => void): Promise<RebuildMediaByTemplateResponse>;
|
|
904
913
|
/**
|
|
@@ -932,11 +941,13 @@ export declare class Client extends AbstractClient {
|
|
|
932
941
|
*/
|
|
933
942
|
CreateAIRecognitionTemplate(req: CreateAIRecognitionTemplateRequest, cb?: (error: string, rep: CreateAIRecognitionTemplateResponse) => void): Promise<CreateAIRecognitionTemplateResponse>;
|
|
934
943
|
/**
|
|
935
|
-
*
|
|
944
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
945
|
+
删除音画质重生模板。
|
|
936
946
|
*/
|
|
937
947
|
DeleteEnhanceMediaTemplate(req: DeleteEnhanceMediaTemplateRequest, cb?: (error: string, rep: DeleteEnhanceMediaTemplateResponse) => void): Promise<DeleteEnhanceMediaTemplateResponse>;
|
|
938
948
|
/**
|
|
939
|
-
*
|
|
949
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
950
|
+
获取视频重生模板列表。
|
|
940
951
|
*/
|
|
941
952
|
DescribeRebuildMediaTemplates(req: DescribeRebuildMediaTemplatesRequest, cb?: (error: string, rep: DescribeRebuildMediaTemplatesResponse) => void): Promise<DescribeRebuildMediaTemplatesResponse>;
|
|
942
953
|
/**
|
|
@@ -142,7 +142,8 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
142
142
|
return this.request("CreateQualityInspectTemplate", req, cb);
|
|
143
143
|
}
|
|
144
144
|
/**
|
|
145
|
-
*
|
|
145
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
146
|
+
修改视频重生模板。
|
|
146
147
|
*/
|
|
147
148
|
async ModifyRebuildMediaTemplate(req, cb) {
|
|
148
149
|
return this.request("ModifyRebuildMediaTemplate", req, cb);
|
|
@@ -410,7 +411,8 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
410
411
|
return this.request("CreateContentReviewTemplate", req, cb);
|
|
411
412
|
}
|
|
412
413
|
/**
|
|
413
|
-
*
|
|
414
|
+
* 该 API 已经<font color=red>不再维护</font>,请使用新版接口 [音画质重生](https://cloud.tencent.com/document/api/266/102571)。
|
|
415
|
+
发起音画质重生
|
|
414
416
|
*/
|
|
415
417
|
async RebuildMedia(req, cb) {
|
|
416
418
|
return this.request("RebuildMedia", req, cb);
|
|
@@ -436,7 +438,8 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
436
438
|
return this.request("DescribeDrmKeyProviderInfo", req, cb);
|
|
437
439
|
}
|
|
438
440
|
/**
|
|
439
|
-
*
|
|
441
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
442
|
+
删除视频重生模板。
|
|
440
443
|
*/
|
|
441
444
|
async DeleteRebuildMediaTemplate(req, cb) {
|
|
442
445
|
return this.request("DeleteRebuildMediaTemplate", req, cb);
|
|
@@ -597,7 +600,8 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
597
600
|
return this.request("DescribeImageReviewUsageData", req, cb);
|
|
598
601
|
}
|
|
599
602
|
/**
|
|
600
|
-
*
|
|
603
|
+
* 该 API 已经<font color=red>不再维护</font>,请使用新版接口 [音画质重生](https://cloud.tencent.com/document/api/266/102571)。
|
|
604
|
+
使用模板发起音画质重生。
|
|
601
605
|
*/
|
|
602
606
|
async EnhanceMediaByTemplate(req, cb) {
|
|
603
607
|
return this.request("EnhanceMediaByTemplate", req, cb);
|
|
@@ -609,13 +613,15 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
609
613
|
return this.request("ModifyPersonSample", req, cb);
|
|
610
614
|
}
|
|
611
615
|
/**
|
|
612
|
-
*
|
|
616
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
617
|
+
创建音画质重生模板。
|
|
613
618
|
*/
|
|
614
619
|
async CreateEnhanceMediaTemplate(req, cb) {
|
|
615
620
|
return this.request("CreateEnhanceMediaTemplate", req, cb);
|
|
616
621
|
}
|
|
617
622
|
/**
|
|
618
|
-
*
|
|
623
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
624
|
+
创建视频重生模板。
|
|
619
625
|
*/
|
|
620
626
|
async CreateRebuildMediaTemplate(req, cb) {
|
|
621
627
|
return this.request("CreateRebuildMediaTemplate", req, cb);
|
|
@@ -932,7 +938,8 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
932
938
|
return this.request("ModifyWordSample", req, cb);
|
|
933
939
|
}
|
|
934
940
|
/**
|
|
935
|
-
*
|
|
941
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
942
|
+
修改音画质重生模板。
|
|
936
943
|
*/
|
|
937
944
|
async ModifyEnhanceMediaTemplate(req, cb) {
|
|
938
945
|
return this.request("ModifyEnhanceMediaTemplate", req, cb);
|
|
@@ -1113,7 +1120,8 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1113
1120
|
return this.request("DeletePersonSample", req, cb);
|
|
1114
1121
|
}
|
|
1115
1122
|
/**
|
|
1116
|
-
*
|
|
1123
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
1124
|
+
获取音画质重生模板列表。
|
|
1117
1125
|
*/
|
|
1118
1126
|
async DescribeEnhanceMediaTemplates(req, cb) {
|
|
1119
1127
|
return this.request("DescribeEnhanceMediaTemplates", req, cb);
|
|
@@ -1228,7 +1236,8 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1228
1236
|
return this.request("DescribeMediaInfos", req, cb);
|
|
1229
1237
|
}
|
|
1230
1238
|
/**
|
|
1231
|
-
*
|
|
1239
|
+
* 该 API 已经<font color=red>不再维护</font>,请使用新版接口 [音画质重生](https://cloud.tencent.com/document/api/266/102571)。
|
|
1240
|
+
使用模板发起视频重生。
|
|
1232
1241
|
*/
|
|
1233
1242
|
async RebuildMediaByTemplate(req, cb) {
|
|
1234
1243
|
return this.request("RebuildMediaByTemplate", req, cb);
|
|
@@ -1278,13 +1287,15 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1278
1287
|
return this.request("CreateAIRecognitionTemplate", req, cb);
|
|
1279
1288
|
}
|
|
1280
1289
|
/**
|
|
1281
|
-
*
|
|
1290
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
1291
|
+
删除音画质重生模板。
|
|
1282
1292
|
*/
|
|
1283
1293
|
async DeleteEnhanceMediaTemplate(req, cb) {
|
|
1284
1294
|
return this.request("DeleteEnhanceMediaTemplate", req, cb);
|
|
1285
1295
|
}
|
|
1286
1296
|
/**
|
|
1287
|
-
*
|
|
1297
|
+
* 该 API 已经<font color=red>不再维护</font>,新版 [音画质重生](https://cloud.tencent.com/document/product/266/102571) 接口使用预置模板,详情请参见 [音画质重生模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
1298
|
+
获取视频重生模板列表。
|
|
1288
1299
|
*/
|
|
1289
1300
|
async DescribeRebuildMediaTemplates(req, cb) {
|
|
1290
1301
|
return this.request("DescribeRebuildMediaTemplates", req, cb);
|
|
@@ -4641,11 +4641,12 @@ export interface EnhanceMediaQualityRequest {
|
|
|
4641
4641
|
*/
|
|
4642
4642
|
FileId: string;
|
|
4643
4643
|
/**
|
|
4644
|
-
* 音画质重生模板 ID
|
|
4644
|
+
* 音画质重生模板 ID。
|
|
4645
|
+
针对典型的使用场景,云点播提供了多个[预置模板](https://cloud.tencent.com/document/product/266/102586#50604b3f-0286-4a10-a3f7-18218116aff7)。
|
|
4645
4646
|
*/
|
|
4646
4647
|
Definition: number;
|
|
4647
4648
|
/**
|
|
4648
|
-
* <b>点播[
|
|
4649
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
4649
4650
|
*/
|
|
4650
4651
|
SubAppId?: number;
|
|
4651
4652
|
/**
|
|
@@ -14586,7 +14587,7 @@ export interface RebuildMediaRequest {
|
|
|
14586
14587
|
*/
|
|
14587
14588
|
FileId: string;
|
|
14588
14589
|
/**
|
|
14589
|
-
* <b>点播
|
|
14590
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
14590
14591
|
*/
|
|
14591
14592
|
SubAppId?: number;
|
|
14592
14593
|
/**
|