tencentcloud-sdk-nodejs 4.0.857 → 4.0.859
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 +203 -0
- package/SERVICE_CHANGELOG.md +230 -14
- package/package.json +1 -1
- package/products.md +17 -17
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdn/v20180606/cdn_models.ts +14 -0
- package/src/services/dlc/v20210125/dlc_client.ts +18 -6
- package/src/services/dlc/v20210125/dlc_models.ts +68 -0
- package/src/services/dsgc/v20190723/dsgc_models.ts +4 -9
- package/src/services/gme/v20180711/gme_models.ts +7 -7
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +19 -1
- package/src/services/mps/v20190612/mps_models.ts +16 -13
- package/src/services/ocr/v20181119/ocr_models.ts +20 -0
- package/src/services/sms/v20210111/sms_models.ts +4 -2
- package/src/services/teo/v20220901/teo_models.ts +5 -5
- package/src/services/tione/v20211111/tione_client.ts +1 -0
- package/src/services/tione/v20211111/tione_models.ts +42 -3
- package/src/services/tke/v20180525/tke_models.ts +4 -6
- package/src/services/tmt/v20180321/tmt_client.ts +0 -1
- package/src/services/tmt/v20180321/tmt_models.ts +10 -8
- package/src/services/trtc/v20190722/trtc_client.ts +56 -6
- package/src/services/trtc/v20190722/trtc_models.ts +166 -0
- package/src/services/tsf/v20180326/tsf_client.ts +24 -0
- package/src/services/tsf/v20180326/tsf_models.ts +51 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +14 -0
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +7 -3
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +9 -3
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +66 -0
- package/tencentcloud/services/dsgc/v20190723/dsgc_models.d.ts +4 -9
- package/tencentcloud/services/gme/v20180711/gme_models.d.ts +7 -7
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +19 -1
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +16 -13
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +20 -0
- package/tencentcloud/services/sms/v20210111/sms_models.d.ts +4 -2
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +5 -5
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +41 -3
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +4 -6
- package/tencentcloud/services/tmt/v20180321/tmt_client.d.ts +0 -1
- package/tencentcloud/services/tmt/v20180321/tmt_client.js +0 -1
- package/tencentcloud/services/tmt/v20180321/tmt_models.d.ts +10 -8
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +19 -3
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +27 -3
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +156 -0
- package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +9 -1
- package/tencentcloud/services/tsf/v20180326/tsf_client.js +12 -0
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +47 -1
- package/test/dlc.v20210125.test.js +12 -2
- package/test/trtc.v20190722.test.js +42 -2
- package/test/tsf.v20180326.test.js +20 -0
|
@@ -1629,6 +1629,43 @@ export interface Policy {
|
|
|
1629
1629
|
*/
|
|
1630
1630
|
Id?: number;
|
|
1631
1631
|
}
|
|
1632
|
+
/**
|
|
1633
|
+
* DescribeTaskLog请求参数结构体
|
|
1634
|
+
*/
|
|
1635
|
+
export interface DescribeTaskLogRequest {
|
|
1636
|
+
/**
|
|
1637
|
+
* 列表返回的Id
|
|
1638
|
+
*/
|
|
1639
|
+
TaskId: string;
|
|
1640
|
+
/**
|
|
1641
|
+
* 开始运行时间,unix时间戳(毫秒)
|
|
1642
|
+
*/
|
|
1643
|
+
StartTime: number;
|
|
1644
|
+
/**
|
|
1645
|
+
* 结束运行时间,unix时间戳(毫秒)
|
|
1646
|
+
*/
|
|
1647
|
+
EndTime: number;
|
|
1648
|
+
/**
|
|
1649
|
+
* 分页大小,最大1000,配合Context一起使用
|
|
1650
|
+
*/
|
|
1651
|
+
Limit: number;
|
|
1652
|
+
/**
|
|
1653
|
+
* 下一次分页参数,第一次传空。透传上次接口返回的Context值,可获取后续更多日志,总计最多可获取1万条原始日志,过期时间1小时。
|
|
1654
|
+
*/
|
|
1655
|
+
Context: string;
|
|
1656
|
+
/**
|
|
1657
|
+
* 是否升序排列,true:升序排序,false:倒序,默认false,倒序排列
|
|
1658
|
+
*/
|
|
1659
|
+
Asc?: boolean;
|
|
1660
|
+
/**
|
|
1661
|
+
* 预览日志的通用过滤条件
|
|
1662
|
+
*/
|
|
1663
|
+
Filters?: Array<Filter>;
|
|
1664
|
+
/**
|
|
1665
|
+
* SparkSQL任务唯一ID
|
|
1666
|
+
*/
|
|
1667
|
+
BatchId?: string;
|
|
1668
|
+
}
|
|
1632
1669
|
/**
|
|
1633
1670
|
* UpdateUserDataEngineConfig返回参数结构体
|
|
1634
1671
|
*/
|
|
@@ -6416,6 +6453,35 @@ export interface TaskResultInfo {
|
|
|
6416
6453
|
*/
|
|
6417
6454
|
QueryResultTime?: number;
|
|
6418
6455
|
}
|
|
6456
|
+
/**
|
|
6457
|
+
* DescribeTaskLog返回参数结构体
|
|
6458
|
+
*/
|
|
6459
|
+
export interface DescribeTaskLogResponse {
|
|
6460
|
+
/**
|
|
6461
|
+
* 下一次分页参数
|
|
6462
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6463
|
+
*/
|
|
6464
|
+
Context?: string;
|
|
6465
|
+
/**
|
|
6466
|
+
* 是否获取完结
|
|
6467
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6468
|
+
*/
|
|
6469
|
+
ListOver?: boolean;
|
|
6470
|
+
/**
|
|
6471
|
+
* 日志详情
|
|
6472
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6473
|
+
*/
|
|
6474
|
+
Results?: Array<JobLogResult>;
|
|
6475
|
+
/**
|
|
6476
|
+
* 日志url
|
|
6477
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6478
|
+
*/
|
|
6479
|
+
LogUrl?: string;
|
|
6480
|
+
/**
|
|
6481
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6482
|
+
*/
|
|
6483
|
+
RequestId?: string;
|
|
6484
|
+
}
|
|
6419
6485
|
/**
|
|
6420
6486
|
* DescribeTasks返回参数结构体
|
|
6421
6487
|
*/
|
|
@@ -481,7 +481,7 @@ export interface DSPACosMetaDataInfo {
|
|
|
481
481
|
Storage?: number;
|
|
482
482
|
}
|
|
483
483
|
/**
|
|
484
|
-
* DSPA
|
|
484
|
+
* DSPA评估模板
|
|
485
485
|
*/
|
|
486
486
|
export interface AssessmentTemplate {
|
|
487
487
|
/**
|
|
@@ -1999,12 +1999,7 @@ export interface DescribeDSPAAssessmentTemplatesRequest {
|
|
|
1999
1999
|
*/
|
|
2000
2000
|
Limit?: number;
|
|
2001
2001
|
/**
|
|
2002
|
-
*
|
|
2003
|
-
支持模糊搜索:(TemplateId,TemplateName)
|
|
2004
|
-
支持过滤:
|
|
2005
|
-
Source:模版来源,system / user
|
|
2006
|
-
UseType:模版类型,auto,semi-auto,law等
|
|
2007
|
-
Status:模版启用状态,draft / launched
|
|
2002
|
+
* 过滤项。支持模糊搜索:(TemplateId,TemplateName)支持过滤:Source:模板来源,system / userUseType:模板类型,auto,semi-auto,law等Status:模板启用状态,draft / launched
|
|
2008
2003
|
*/
|
|
2009
2004
|
Filters?: Array<DspaAssessmentFilter>;
|
|
2010
2005
|
}
|
|
@@ -5492,7 +5487,7 @@ export interface CreateDSPAAssessmentRiskTemplateRequest {
|
|
|
5492
5487
|
*/
|
|
5493
5488
|
DspaId: string;
|
|
5494
5489
|
/**
|
|
5495
|
-
*
|
|
5490
|
+
* 模板名称
|
|
5496
5491
|
*/
|
|
5497
5492
|
TemplateName: string;
|
|
5498
5493
|
/**
|
|
@@ -5504,7 +5499,7 @@ export interface CreateDSPAAssessmentRiskTemplateRequest {
|
|
|
5504
5499
|
*/
|
|
5505
5500
|
RiskIdList: Array<number | bigint>;
|
|
5506
5501
|
/**
|
|
5507
|
-
*
|
|
5502
|
+
* 模板描述
|
|
5508
5503
|
*/
|
|
5509
5504
|
TemplateDescription?: string;
|
|
5510
5505
|
}
|
|
@@ -5,31 +5,31 @@ export interface ApplicationList {
|
|
|
5
5
|
/**
|
|
6
6
|
* 服务开关状态
|
|
7
7
|
*/
|
|
8
|
-
ServiceConf
|
|
8
|
+
ServiceConf?: ServiceStatus;
|
|
9
9
|
/**
|
|
10
10
|
* 应用ID(AppID)
|
|
11
11
|
*/
|
|
12
|
-
BizId
|
|
12
|
+
BizId?: number;
|
|
13
13
|
/**
|
|
14
14
|
* 应用名称
|
|
15
15
|
*/
|
|
16
|
-
AppName
|
|
16
|
+
AppName?: string;
|
|
17
17
|
/**
|
|
18
18
|
* 项目ID,默认为0
|
|
19
19
|
*/
|
|
20
|
-
ProjectId
|
|
20
|
+
ProjectId?: number;
|
|
21
21
|
/**
|
|
22
22
|
* 应用状态,返回0表示正常,1表示关闭,2表示欠费停服,3表示欠费回收
|
|
23
23
|
*/
|
|
24
|
-
AppStatus
|
|
24
|
+
AppStatus?: number;
|
|
25
25
|
/**
|
|
26
26
|
* 创建时间,Unix时间戳格式
|
|
27
27
|
*/
|
|
28
|
-
CreateTime
|
|
28
|
+
CreateTime?: number;
|
|
29
29
|
/**
|
|
30
30
|
* 应用类型,无需关注此数值
|
|
31
31
|
*/
|
|
32
|
-
AppType
|
|
32
|
+
AppType?: number;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
35
|
* ModifyAppStatus请求参数结构体
|
|
@@ -740,7 +740,7 @@ export interface CreateStudioProductResponse {
|
|
|
740
740
|
/**
|
|
741
741
|
* 产品描述
|
|
742
742
|
*/
|
|
743
|
-
Product
|
|
743
|
+
Product?: ProductEntry;
|
|
744
744
|
/**
|
|
745
745
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
746
746
|
*/
|
|
@@ -944,6 +944,14 @@ export interface CreateStudioProductRequest {
|
|
|
944
944
|
* 产品的项目ID
|
|
945
945
|
*/
|
|
946
946
|
ProjectId: string;
|
|
947
|
+
/**
|
|
948
|
+
* 平均传输速率
|
|
949
|
+
*/
|
|
950
|
+
Rate?: string;
|
|
951
|
+
/**
|
|
952
|
+
* 期限
|
|
953
|
+
*/
|
|
954
|
+
Period?: string;
|
|
947
955
|
}
|
|
948
956
|
/**
|
|
949
957
|
* 产品模型定义
|
|
@@ -2166,6 +2174,16 @@ export interface ProductEntry {
|
|
|
2166
2174
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2167
2175
|
*/
|
|
2168
2176
|
DeviceCount?: number;
|
|
2177
|
+
/**
|
|
2178
|
+
* 平均传输速率
|
|
2179
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2180
|
+
*/
|
|
2181
|
+
Rate?: string;
|
|
2182
|
+
/**
|
|
2183
|
+
* 有效期
|
|
2184
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2185
|
+
*/
|
|
2186
|
+
Period?: string;
|
|
2169
2187
|
}
|
|
2170
2188
|
/**
|
|
2171
2189
|
* DescribeDeviceFirmWare返回参数结构体
|
|
@@ -5463,13 +5463,13 @@ export interface AiAnalysisTaskTagResult {
|
|
|
5463
5463
|
Output?: AiAnalysisTaskTagOutput;
|
|
5464
5464
|
}
|
|
5465
5465
|
/**
|
|
5466
|
-
*
|
|
5466
|
+
* 智能擦除任务输入类型
|
|
5467
5467
|
*/
|
|
5468
5468
|
export interface AiAnalysisTaskDelLogoInput {
|
|
5469
5469
|
/**
|
|
5470
|
-
*
|
|
5470
|
+
* 视频智能擦除模板 ID。
|
|
5471
5471
|
*/
|
|
5472
|
-
Definition
|
|
5472
|
+
Definition?: number;
|
|
5473
5473
|
}
|
|
5474
5474
|
/**
|
|
5475
5475
|
* BatchStopStreamLinkFlow请求参数结构体
|
|
@@ -7445,7 +7445,7 @@ export interface AiAnalysisResult {
|
|
|
7445
7445
|
<li>Tag:智能标签</li>
|
|
7446
7446
|
<li>FrameTag:智能按帧标签</li>
|
|
7447
7447
|
<li>Highlight:智能精彩集锦</li>
|
|
7448
|
-
<li>DeLogo
|
|
7448
|
+
<li>DeLogo:智能擦除</li>
|
|
7449
7449
|
<li>Description:大模型摘要</li>
|
|
7450
7450
|
*/
|
|
7451
7451
|
Type?: string;
|
|
@@ -7475,7 +7475,7 @@ export interface AiAnalysisResult {
|
|
|
7475
7475
|
*/
|
|
7476
7476
|
HighlightTask?: AiAnalysisTaskHighlightResult;
|
|
7477
7477
|
/**
|
|
7478
|
-
*
|
|
7478
|
+
* 视频内容分析智能擦除任务的查询结果,当任务类型为 DeLogo 时有效。
|
|
7479
7479
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7480
7480
|
*/
|
|
7481
7481
|
DeLogoTask?: AiAnalysisTaskDelLogoResult;
|
|
@@ -8724,17 +8724,17 @@ export interface DescribeStreamLinkFlowRealtimeStatusRequest {
|
|
|
8724
8724
|
OutputIds?: Array<string>;
|
|
8725
8725
|
}
|
|
8726
8726
|
/**
|
|
8727
|
-
*
|
|
8727
|
+
* 智能擦除结果信息
|
|
8728
8728
|
*/
|
|
8729
8729
|
export interface AiAnalysisTaskDelLogoOutput {
|
|
8730
8730
|
/**
|
|
8731
|
-
*
|
|
8731
|
+
* 擦除后文件的路径。
|
|
8732
8732
|
*/
|
|
8733
|
-
Path
|
|
8733
|
+
Path?: string;
|
|
8734
8734
|
/**
|
|
8735
|
-
*
|
|
8735
|
+
* 擦除后文件的存储位置。
|
|
8736
8736
|
*/
|
|
8737
|
-
OutputStorage
|
|
8737
|
+
OutputStorage?: TaskOutputStorage;
|
|
8738
8738
|
}
|
|
8739
8739
|
/**
|
|
8740
8740
|
* Asr 文字涉违禁信息
|
|
@@ -9912,6 +9912,9 @@ export interface Activity {
|
|
|
9912
9912
|
<li>action-image-sprite:雪碧图</li>
|
|
9913
9913
|
<li>action-snapshotByTimeOffset: 时间点截图</li>
|
|
9914
9914
|
<li>action-adaptive-substream:自适应码流</li>
|
|
9915
|
+
|
|
9916
|
+
|
|
9917
|
+
|
|
9915
9918
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9916
9919
|
*/
|
|
9917
9920
|
ActivityType: string;
|
|
@@ -13460,7 +13463,7 @@ export interface LiveActivityResItem {
|
|
|
13460
13463
|
LiveRecordTask?: LiveScheduleLiveRecordTaskResult;
|
|
13461
13464
|
}
|
|
13462
13465
|
/**
|
|
13463
|
-
*
|
|
13466
|
+
* 智能擦除结果类型
|
|
13464
13467
|
*/
|
|
13465
13468
|
export interface AiAnalysisTaskDelLogoResult {
|
|
13466
13469
|
/**
|
|
@@ -13476,11 +13479,11 @@ export interface AiAnalysisTaskDelLogoResult {
|
|
|
13476
13479
|
*/
|
|
13477
13480
|
Message?: string;
|
|
13478
13481
|
/**
|
|
13479
|
-
*
|
|
13482
|
+
* 智能擦除任务输入。
|
|
13480
13483
|
*/
|
|
13481
13484
|
Input?: AiAnalysisTaskDelLogoInput;
|
|
13482
13485
|
/**
|
|
13483
|
-
*
|
|
13486
|
+
* 智能擦除任务输出。
|
|
13484
13487
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13485
13488
|
*/
|
|
13486
13489
|
Output?: AiAnalysisTaskDelLogoOutput;
|
|
@@ -3195,10 +3195,30 @@ export interface RecognizeThaiIDCardOCRResponse {
|
|
|
3195
3195
|
* 泰文到期日期
|
|
3196
3196
|
*/
|
|
3197
3197
|
ExpirationDate?: string;
|
|
3198
|
+
/**
|
|
3199
|
+
* 英文签发日期
|
|
3200
|
+
*/
|
|
3201
|
+
EnIssueDate?: string;
|
|
3202
|
+
/**
|
|
3203
|
+
* 英文到期日期
|
|
3204
|
+
*/
|
|
3205
|
+
EnExpirationDate?: string;
|
|
3198
3206
|
/**
|
|
3199
3207
|
* 泰文出生日期
|
|
3200
3208
|
*/
|
|
3201
3209
|
Birthday?: string;
|
|
3210
|
+
/**
|
|
3211
|
+
* 英文出生日期
|
|
3212
|
+
*/
|
|
3213
|
+
EnBirthday?: string;
|
|
3214
|
+
/**
|
|
3215
|
+
* 宗教信仰
|
|
3216
|
+
*/
|
|
3217
|
+
Religion?: string;
|
|
3218
|
+
/**
|
|
3219
|
+
* 序列号
|
|
3220
|
+
*/
|
|
3221
|
+
SerialNumber?: string;
|
|
3202
3222
|
/**
|
|
3203
3223
|
* 地址
|
|
3204
3224
|
*/
|
|
@@ -292,7 +292,8 @@ export interface AddSmsTemplateRequest {
|
|
|
292
292
|
*/
|
|
293
293
|
TemplateContent: string;
|
|
294
294
|
/**
|
|
295
|
-
* 短信类型,
|
|
295
|
+
* 短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。
|
|
296
|
+
注:原“普通短信”类型模板目前仍支持提交申请,但为进一步提升短信发送质量、提高短信模板审核通过率,建议按“通知短信”类型或“验证码短信”类型申请新增模板,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。
|
|
296
297
|
*/
|
|
297
298
|
SmsType: number;
|
|
298
299
|
/**
|
|
@@ -323,7 +324,8 @@ export interface ModifySmsTemplateRequest {
|
|
|
323
324
|
*/
|
|
324
325
|
TemplateContent: string;
|
|
325
326
|
/**
|
|
326
|
-
* 短信类型,
|
|
327
|
+
* 短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。
|
|
328
|
+
注:原“普通短信”类型模板目前仍支持提交申请,为进一步提升短信发送质量、提高短信模板审核通过率,建议按“通知短信”类型或“验证码短信”类型申请新增模板,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。
|
|
327
329
|
*/
|
|
328
330
|
SmsType: number;
|
|
329
331
|
/**
|
|
@@ -159,7 +159,7 @@ export interface OriginDetail {
|
|
|
159
159
|
<li>COS:腾讯云 COS 对象存储源站;</li>
|
|
160
160
|
<li>AWS_S3:AWS S3 对象存储源站;</li>
|
|
161
161
|
<li>ORIGIN_GROUP:源站组类型源站;</li>
|
|
162
|
-
<li>VODEO
|
|
162
|
+
<li>VODEO:云点播-混合云版;</li>
|
|
163
163
|
<li>SPACE:源站卸载,当前仅白名单开放;</li>
|
|
164
164
|
<li>LB:负载均衡,当前仅白名单开放。</li>
|
|
165
165
|
*/
|
|
@@ -7280,7 +7280,7 @@ export interface OriginInfo {
|
|
|
7280
7280
|
<li>COS:腾讯云 COS 对象存储源站;</li>
|
|
7281
7281
|
<li>AWS_S3:AWS S3 对象存储源站;</li>
|
|
7282
7282
|
<li>ORIGIN_GROUP:源站组类型源站;</li>
|
|
7283
|
-
<li>VODEO
|
|
7283
|
+
<li>VODEO:云点播-混合云版;</li>
|
|
7284
7284
|
<li>SPACE:源站卸载,当前仅白名单开放;</li>
|
|
7285
7285
|
<li>LB:负载均衡,当前仅白名单开放。</li>
|
|
7286
7286
|
*/
|
|
@@ -7372,9 +7372,9 @@ export interface Https {
|
|
|
7372
7372
|
ApplyType?: string;
|
|
7373
7373
|
/**
|
|
7374
7374
|
* 密码套件,取值有:
|
|
7375
|
-
<li>loose-v2023
|
|
7376
|
-
<li>general-v2023
|
|
7377
|
-
<li>strict-v2023
|
|
7375
|
+
<li>loose-v2023:提供高兼容性,安全性一般,支持 TLS 1.0-1.3 密码套件;</li>
|
|
7376
|
+
<li>general-v2023:提供较高兼容性,安全性中等,支持 TLS 1.2-1.3 密码套件;</li>
|
|
7377
|
+
<li>strict-v2023:提供高安全性能,禁用所有含不安全隐患的加密套件,支持 TLS 1.2-1.3 密码套件。</li>
|
|
7378
7378
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7379
7379
|
*/
|
|
7380
7380
|
CipherSuite?: string;
|
|
@@ -150,9 +150,13 @@ export interface CreateModelServiceRequest {
|
|
|
150
150
|
*/
|
|
151
151
|
ServiceEIP?: ServiceEIP;
|
|
152
152
|
/**
|
|
153
|
-
* 服务的启动命令,以base64
|
|
153
|
+
* 服务的启动命令,以base64格式进行输入,与Command同时配置时,仅当前参数生效
|
|
154
154
|
*/
|
|
155
155
|
CommandBase64?: string;
|
|
156
|
+
/**
|
|
157
|
+
* 服务端口,仅在非内置镜像时生效,默认8501。不支持输入8501-8510,6006,9092
|
|
158
|
+
*/
|
|
159
|
+
ServicePort?: number;
|
|
156
160
|
}
|
|
157
161
|
/**
|
|
158
162
|
* CreateNotebookImage返回参数结构体
|
|
@@ -2365,9 +2369,13 @@ export interface ModifyModelServiceRequest {
|
|
|
2365
2369
|
*/
|
|
2366
2370
|
ServiceEIP?: ServiceEIP;
|
|
2367
2371
|
/**
|
|
2368
|
-
* 服务的启动命令,以base64
|
|
2372
|
+
* 服务的启动命令,以base64格式进行输入,与Command同时配置时,仅当前参数生效
|
|
2369
2373
|
*/
|
|
2370
2374
|
CommandBase64?: string;
|
|
2375
|
+
/**
|
|
2376
|
+
* 服务端口,仅在非内置镜像时生效,默认8501。不支持输入8501-8510,6006,9092
|
|
2377
|
+
*/
|
|
2378
|
+
ServicePort?: number;
|
|
2371
2379
|
}
|
|
2372
2380
|
/**
|
|
2373
2381
|
* 框架版本以及对应的训练模式
|
|
@@ -3269,6 +3277,26 @@ export interface Option {
|
|
|
3269
3277
|
*/
|
|
3270
3278
|
Value: number;
|
|
3271
3279
|
}
|
|
3280
|
+
/**
|
|
3281
|
+
* 自定义镜像仓库凭据
|
|
3282
|
+
*/
|
|
3283
|
+
export interface ImageSecret {
|
|
3284
|
+
/**
|
|
3285
|
+
* 用于加密密码的KMS公钥ID
|
|
3286
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3287
|
+
*/
|
|
3288
|
+
KeyId?: string;
|
|
3289
|
+
/**
|
|
3290
|
+
* 用户名
|
|
3291
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3292
|
+
*/
|
|
3293
|
+
Username?: string;
|
|
3294
|
+
/**
|
|
3295
|
+
* 密码,base64编码; 当keyId不为空时,密码是加密后的
|
|
3296
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3297
|
+
*/
|
|
3298
|
+
Password?: string;
|
|
3299
|
+
}
|
|
3272
3300
|
/**
|
|
3273
3301
|
* DescribeNotebookImageRecords请求参数结构体
|
|
3274
3302
|
*/
|
|
@@ -4129,7 +4157,7 @@ export interface BatchTaskSetItem {
|
|
|
4129
4157
|
*/
|
|
4130
4158
|
export interface ImageInfo {
|
|
4131
4159
|
/**
|
|
4132
|
-
* 镜像类型:TCR为腾讯云TCR镜像; CCR为腾讯云TCR个人版镜像,PreSet
|
|
4160
|
+
* 镜像类型:TCR为腾讯云TCR镜像; CCR为腾讯云TCR个人版镜像,PreSet为平台预置镜像,CUSTOM为第三方自定义镜像
|
|
4133
4161
|
*/
|
|
4134
4162
|
ImageType: string;
|
|
4135
4163
|
/**
|
|
@@ -4161,6 +4189,11 @@ export interface ImageInfo {
|
|
|
4161
4189
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4162
4190
|
*/
|
|
4163
4191
|
SupportDataPipeline?: boolean;
|
|
4192
|
+
/**
|
|
4193
|
+
* 镜像仓库用户名密码信息(仅当ImageType为CUSTOM第三方镜像的时候需要)
|
|
4194
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4195
|
+
*/
|
|
4196
|
+
ImageSecret?: ImageSecret;
|
|
4164
4197
|
}
|
|
4165
4198
|
/**
|
|
4166
4199
|
* 推理服务在集群中的信息
|
|
@@ -4326,6 +4359,11 @@ export interface ServiceInfo {
|
|
|
4326
4359
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4327
4360
|
*/
|
|
4328
4361
|
ServiceEIP?: ServiceEIP;
|
|
4362
|
+
/**
|
|
4363
|
+
* 服务端口,默认为8501
|
|
4364
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4365
|
+
*/
|
|
4366
|
+
ServicePort?: number;
|
|
4329
4367
|
}
|
|
4330
4368
|
/**
|
|
4331
4369
|
* 出参类型
|
|
@@ -425,7 +425,7 @@ export interface UpgradeClusterReleaseRequest {
|
|
|
425
425
|
*/
|
|
426
426
|
ChartFrom?: string;
|
|
427
427
|
/**
|
|
428
|
-
* 制品版本(
|
|
428
|
+
* 制品版本( 从第三方安装时,不传这个参数)
|
|
429
429
|
*/
|
|
430
430
|
ChartVersion?: string;
|
|
431
431
|
/**
|
|
@@ -445,7 +445,7 @@ export interface UpgradeClusterReleaseRequest {
|
|
|
445
445
|
*/
|
|
446
446
|
ChartNamespace?: string;
|
|
447
447
|
/**
|
|
448
|
-
* 集群类型,支持传 tke, eks, tkeedge,
|
|
448
|
+
* 集群类型,支持传 tke, eks, tkeedge, external(注册集群)
|
|
449
449
|
*/
|
|
450
450
|
ClusterType?: string;
|
|
451
451
|
}
|
|
@@ -2571,9 +2571,7 @@ export interface AddExistedInstancesRequest {
|
|
|
2571
2571
|
*/
|
|
2572
2572
|
SkipValidateOptions?: Array<string>;
|
|
2573
2573
|
/**
|
|
2574
|
-
* 参数InstanceAdvancedSettingsOverride数组用于定制化地配置各台instance,与InstanceIds顺序对应。当传入InstanceAdvancedSettingsOverrides数组时,将覆盖默认参数InstanceAdvancedSettings;当没有传入参数InstanceAdvancedSettingsOverrides时,InstanceAdvancedSettings参数对每台instance
|
|
2575
|
-
|
|
2576
|
-
参数InstanceAdvancedSettingsOverride数组的长度应与InstanceIds数组一致;当长度大于InstanceIds数组长度时将报错;当长度小于InstanceIds数组时,没有对应配置的instace将使用默认配置。
|
|
2574
|
+
* 参数InstanceAdvancedSettingsOverride数组用于定制化地配置各台instance,与InstanceIds顺序对应。当传入InstanceAdvancedSettingsOverrides数组时,将覆盖默认参数InstanceAdvancedSettings;当没有传入参数InstanceAdvancedSettingsOverrides时,InstanceAdvancedSettings参数对每台instance生效。参数InstanceAdvancedSettingsOverride数组的长度应与InstanceIds数组一致;当长度大于InstanceIds数组长度时将报错;当长度小于InstanceIds数组时,没有对应配置的instance将使用默认配置。
|
|
2577
2575
|
*/
|
|
2578
2576
|
InstanceAdvancedSettingsOverrides?: Array<InstanceAdvancedSettings>;
|
|
2579
2577
|
/**
|
|
@@ -8244,7 +8242,7 @@ export interface CreateClusterReleaseRequest {
|
|
|
8244
8242
|
*/
|
|
8245
8243
|
ChartNamespace?: string;
|
|
8246
8244
|
/**
|
|
8247
|
-
* 集群类型,支持传 tke, eks, tkeedge,
|
|
8245
|
+
* 集群类型,支持传 tke, eks, tkeedge, external(注册集群)
|
|
8248
8246
|
*/
|
|
8249
8247
|
ClusterType?: string;
|
|
8250
8248
|
}
|
|
@@ -41,7 +41,6 @@ export declare class Client extends AbstractClient {
|
|
|
41
41
|
待识别和翻译的音频文件可以是 pcm、mp3和speex 格式,pcm采样率要求16kHz、位深16bit、单声道,音频内语音清晰。<br/>
|
|
42
42
|
如果采用流式传输的方式,要求每个分片时长200ms~500ms;如果采用非流式的传输方式,要求音频时长不超过8s。注意最后一个分片的IsEnd参数设置为1。<br />
|
|
43
43
|
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源部分。
|
|
44
|
-
|
|
45
44
|
*/
|
|
46
45
|
SpeechTranslate(req: SpeechTranslateRequest, cb?: (error: string, rep: SpeechTranslateResponse) => void): Promise<SpeechTranslateResponse>;
|
|
47
46
|
}
|
|
@@ -73,7 +73,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
73
73
|
待识别和翻译的音频文件可以是 pcm、mp3和speex 格式,pcm采样率要求16kHz、位深16bit、单声道,音频内语音清晰。<br/>
|
|
74
74
|
如果采用流式传输的方式,要求每个分片时长200ms~500ms;如果采用非流式的传输方式,要求音频时长不超过8s。注意最后一个分片的IsEnd参数设置为1。<br />
|
|
75
75
|
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源部分。
|
|
76
|
-
|
|
77
76
|
*/
|
|
78
77
|
async SpeechTranslate(req, cb) {
|
|
79
78
|
return this.request("SpeechTranslate", req, cb);
|
|
@@ -97,35 +97,35 @@ export interface SpeechTranslateResponse {
|
|
|
97
97
|
/**
|
|
98
98
|
* 请求的SessionUuid直接返回
|
|
99
99
|
*/
|
|
100
|
-
SessionUuid
|
|
100
|
+
SessionUuid?: string;
|
|
101
101
|
/**
|
|
102
102
|
* 语音识别状态 1-进行中 0-完成
|
|
103
103
|
*/
|
|
104
|
-
RecognizeStatus
|
|
104
|
+
RecognizeStatus?: number;
|
|
105
105
|
/**
|
|
106
106
|
* 识别出的原文
|
|
107
107
|
*/
|
|
108
|
-
SourceText
|
|
108
|
+
SourceText?: string;
|
|
109
109
|
/**
|
|
110
110
|
* 翻译出的译文
|
|
111
111
|
*/
|
|
112
|
-
TargetText
|
|
112
|
+
TargetText?: string;
|
|
113
113
|
/**
|
|
114
114
|
* 第几个语音分片
|
|
115
115
|
*/
|
|
116
|
-
Seq
|
|
116
|
+
Seq?: number;
|
|
117
117
|
/**
|
|
118
118
|
* 原语言
|
|
119
119
|
*/
|
|
120
|
-
Source
|
|
120
|
+
Source?: string;
|
|
121
121
|
/**
|
|
122
122
|
* 目标语言
|
|
123
123
|
*/
|
|
124
|
-
Target
|
|
124
|
+
Target?: string;
|
|
125
125
|
/**
|
|
126
126
|
* 当请求的Mode参数填写bvad是,启动VadSeq。此时Seq会被设置为后台vad(静音检测)后的新序号,而VadSeq代表客户端原始Seq值
|
|
127
127
|
*/
|
|
128
|
-
VadSeq
|
|
128
|
+
VadSeq?: number;
|
|
129
129
|
/**
|
|
130
130
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
131
131
|
*/
|
|
@@ -332,10 +332,12 @@ export interface SpeechTranslateRequest {
|
|
|
332
332
|
ProjectId?: number;
|
|
333
333
|
/**
|
|
334
334
|
* 识别模式,该参数已废弃
|
|
335
|
+
* @deprecated
|
|
335
336
|
*/
|
|
336
337
|
Mode?: string;
|
|
337
338
|
/**
|
|
338
339
|
* 该参数已废弃
|
|
340
|
+
* @deprecated
|
|
339
341
|
*/
|
|
340
342
|
TransType?: number;
|
|
341
343
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { CreatePictureRequest, DescribeTRTCMarketQualityMetricDataResponse, DescribeTRTCRealTimeScaleDataRequest, DescribeTRTCMarketScaleDataRequest, DescribeUserEventRequest, DescribeTrtcRoomUsageResponse, StopPublishCdnStreamResponse, DescribeTRTCRealTimeScaleMetricDataRequest, StopWebRecordRequest, DescribeUserEventResponse, StopMCUMixTranscodeByStrRoomIdResponse, DescribeCallDetailInfoRequest, DescribeTRTCMarketScaleDataResponse, ModifyPictureRequest, DescribeWebRecordResponse, DescribeUserInfoRequest, DescribeTRTCMarketQualityDataResponse, DescribeRelayUsageRequest, DescribeRecordStatisticResponse, StartMCUMixTranscodeByStrRoomIdResponse, DescribeTrtcUsageResponse, DismissRoomByStrRoomIdRequest, DescribeTRTCMarketQualityMetricDataRequest, DescribeWebRecordRequest, DescribeTRTCRealTimeScaleDataResponse, DescribeRecordStatisticRequest, DescribeRoomInfoRequest, DescribeCallDetailInfoResponse, DescribeTRTCRealTimeQualityDataResponse, DescribeMixTranscodingUsageRequest, DescribeStreamIngestResponse, StopStreamIngestRequest, DescribeTRTCRealTimeQualityDataRequest, DescribeTrtcUsageRequest, DescribeRoomInfoResponse, DismissRoomRequest, DescribeTRTCRealTimeQualityMetricDataRequest, DescribeUserInfoResponse, RemoveUserByStrRoomIdResponse, DescribeTRTCRealTimeScaleMetricDataResponse, StartMCUMixTranscodeRequest, StartPublishCdnStreamResponse, DescribeTRTCMarketScaleMetricDataRequest, DescribeRelayUsageResponse, StartStreamIngestRequest, DescribeRecordingUsageResponse, StopMCUMixTranscodeRequest, ModifyPictureResponse, DescribeRecordingUsageRequest, DescribeScaleInfoResponse, StopMCUMixTranscodeResponse, DescribeMixTranscodingUsageResponse, RemoveUserRequest, DescribeUnusualEventRequest, DescribeCloudRecordingRequest, DescribeTRTCRealTimeQualityMetricDataResponse, StartWebRecordResponse, CreateCloudRecordingRequest, DeleteCloudRecordingResponse, StopMCUMixTranscodeByStrRoomIdRequest, StopPublishCdnStreamRequest, DeletePictureResponse, ModifyCloudRecordingRequest, StartPublishCdnStreamRequest, CreateCloudRecordingResponse, StartStreamIngestResponse, StartMCUMixTranscodeResponse, DescribeTrtcMcuTranscodeTimeResponse, DeleteCloudRecordingRequest, DescribePictureRequest, DescribePictureResponse, DescribeTrtcRoomUsageRequest, DescribeTrtcMcuTranscodeTimeRequest, DescribeScaleInfoRequest, DismissRoomByStrRoomIdResponse, DescribeUnusualEventResponse, ModifyCloudRecordingResponse, StartMCUMixTranscodeByStrRoomIdRequest, DescribeCloudRecordingResponse, DismissRoomResponse, StopStreamIngestResponse, DescribeTRTCMarketQualityDataRequest, UpdatePublishCdnStreamRequest, StartWebRecordRequest, StopWebRecordResponse, DeletePictureRequest, UpdatePublishCdnStreamResponse, RemoveUserByStrRoomIdRequest, DescribeStreamIngestRequest, DescribeTRTCMarketScaleMetricDataResponse, CreatePictureResponse, RemoveUserResponse } from "./trtc_models";
|
|
3
|
+
import { CreatePictureRequest, DescribeTRTCMarketQualityMetricDataResponse, DescribeTRTCRealTimeScaleDataRequest, DescribeTRTCMarketScaleDataRequest, DescribeUserEventRequest, DescribeTrtcRoomUsageResponse, StopPublishCdnStreamResponse, DescribeTRTCRealTimeScaleMetricDataRequest, StopWebRecordRequest, DescribeUserEventResponse, StopMCUMixTranscodeByStrRoomIdResponse, DescribeCallDetailInfoRequest, DescribeTRTCMarketScaleDataResponse, ModifyPictureRequest, DescribeWebRecordResponse, DescribeUserInfoRequest, DescribeTRTCMarketQualityDataResponse, DescribeRelayUsageRequest, DescribeRecordStatisticResponse, StartMCUMixTranscodeByStrRoomIdResponse, DescribeTrtcUsageResponse, DismissRoomByStrRoomIdRequest, DescribeTRTCMarketQualityMetricDataRequest, DescribeWebRecordRequest, DescribeTRTCRealTimeScaleDataResponse, DescribeRecordStatisticRequest, DescribeRoomInfoRequest, DescribeCallDetailInfoResponse, DescribeTRTCRealTimeQualityDataResponse, DescribeMixTranscodingUsageRequest, DescribeStreamIngestResponse, StopStreamIngestRequest, DescribeTRTCRealTimeQualityDataRequest, DescribeTrtcUsageRequest, DescribeRoomInfoResponse, DismissRoomRequest, DescribeTRTCRealTimeQualityMetricDataRequest, DescribeAITranscriptionRequest, DescribeUserInfoResponse, RemoveUserByStrRoomIdResponse, DescribeTRTCRealTimeScaleMetricDataResponse, StartMCUMixTranscodeRequest, StartPublishCdnStreamResponse, DescribeTRTCMarketScaleMetricDataRequest, DescribeRelayUsageResponse, StartStreamIngestRequest, DescribeRecordingUsageResponse, StopMCUMixTranscodeRequest, ModifyPictureResponse, DescribeRecordingUsageRequest, DescribeScaleInfoResponse, StopMCUMixTranscodeResponse, DescribeMixTranscodingUsageResponse, RemoveUserRequest, DescribeUnusualEventRequest, DescribeCloudRecordingRequest, DescribeTRTCRealTimeQualityMetricDataResponse, StartWebRecordResponse, CreateCloudRecordingRequest, DeleteCloudRecordingResponse, StopMCUMixTranscodeByStrRoomIdRequest, StopPublishCdnStreamRequest, DeletePictureResponse, ModifyCloudRecordingRequest, StartPublishCdnStreamRequest, CreateCloudRecordingResponse, StartStreamIngestResponse, StartMCUMixTranscodeResponse, DescribeTrtcMcuTranscodeTimeResponse, DeleteCloudRecordingRequest, DescribePictureRequest, DescribePictureResponse, DescribeTrtcRoomUsageRequest, DescribeTrtcMcuTranscodeTimeRequest, DescribeScaleInfoRequest, DismissRoomByStrRoomIdResponse, DescribeUnusualEventResponse, ModifyCloudRecordingResponse, StartMCUMixTranscodeByStrRoomIdRequest, DescribeCloudRecordingResponse, StartAITranscriptionRequest, DismissRoomResponse, StopStreamIngestResponse, DescribeTRTCMarketQualityDataRequest, SummarizeTranscriptionRequest, UpdatePublishCdnStreamRequest, StartWebRecordRequest, StopWebRecordResponse, SummarizeTranscriptionResponse, DeletePictureRequest, StopAITranscriptionRequest, UpdatePublishCdnStreamResponse, RemoveUserByStrRoomIdRequest, DescribeStreamIngestRequest, DescribeTRTCMarketScaleMetricDataResponse, StopAITranscriptionResponse, DescribeAITranscriptionResponse, CreatePictureResponse, StartAITranscriptionResponse, RemoveUserResponse } from "./trtc_models";
|
|
4
4
|
/**
|
|
5
5
|
* trtc client
|
|
6
6
|
* @class
|
|
@@ -270,6 +270,10 @@ TRTC 的一个房间中可能会同时存在多路音视频流,您可以通过
|
|
|
270
270
|
3、客户端混流和服务端混流不能混用。
|
|
271
271
|
*/
|
|
272
272
|
StartMCUMixTranscode(req: StartMCUMixTranscodeRequest, cb?: (error: string, rep: StartMCUMixTranscodeResponse) => void): Promise<StartMCUMixTranscodeResponse>;
|
|
273
|
+
/**
|
|
274
|
+
* 这个接口调用后,后台会启动机器人,实时进行语音识别并下发字幕和会议记录。
|
|
275
|
+
*/
|
|
276
|
+
StartAITranscription(req: StartAITranscriptionRequest, cb?: (error: string, rep: StartAITranscriptionResponse) => void): Promise<StartAITranscriptionResponse>;
|
|
273
277
|
/**
|
|
274
278
|
* 查询TRTC监控仪表盘-数据大盘规模指标(会返回通话人数,通话房间数,峰值同时在线人数,峰值同时在线频道数)
|
|
275
279
|
userCount:通话人数,
|
|
@@ -285,6 +289,10 @@ peakCurrentUsers:峰值同时在线人数。
|
|
|
285
289
|
* 停止页面录制任务
|
|
286
290
|
*/
|
|
287
291
|
StopWebRecord(req: StopWebRecordRequest, cb?: (error: string, rep: StopWebRecordResponse) => void): Promise<StopWebRecordResponse>;
|
|
292
|
+
/**
|
|
293
|
+
* 停止转推任务。
|
|
294
|
+
*/
|
|
295
|
+
StopPublishCdnStream(req: StopPublishCdnStreamRequest, cb?: (error: string, rep: StopPublishCdnStreamResponse) => void): Promise<StopPublishCdnStreamResponse>;
|
|
288
296
|
/**
|
|
289
297
|
* 接口说明:
|
|
290
298
|
启动云端录制功能,完成房间内的音视频录制,并上传到指定的云存储。您可以通过此 API 接口把TRTC 房间中的每一路音视频流做单独的录制又或者多路视频画面合流混成一路。
|
|
@@ -330,6 +338,10 @@ peakCurrentUsers:峰值同时在线人数。
|
|
|
330
338
|
* 接口说明:结束云端混流
|
|
331
339
|
*/
|
|
332
340
|
StopMCUMixTranscodeByStrRoomId(req: StopMCUMixTranscodeByStrRoomIdRequest, cb?: (error: string, rep: StopMCUMixTranscodeByStrRoomIdResponse) => void): Promise<StopMCUMixTranscodeByStrRoomIdResponse>;
|
|
341
|
+
/**
|
|
342
|
+
* 对转录的文本进行总结
|
|
343
|
+
*/
|
|
344
|
+
SummarizeTranscription(req?: SummarizeTranscriptionRequest, cb?: (error: string, rep: SummarizeTranscriptionResponse) => void): Promise<SummarizeTranscriptionResponse>;
|
|
333
345
|
/**
|
|
334
346
|
* 获取TRTC录制的用量明细。
|
|
335
347
|
- 查询时间小于等于1天时,返回每5分钟粒度的数据;查询时间大于1天时,返回按天汇总的数据。
|
|
@@ -390,6 +402,10 @@ peakCurrentUsers:峰值同时在线人数。
|
|
|
390
402
|
* 如果您需要在 [云端混流转码](https://cloud.tencent.com/document/product/647/16827) 时频繁修改自定义背景图或水印素材,可通过此接口修改已上传的图片。无需频繁修改图片素材的场景,建议直接在 [控制台 > 应用管理 > 素材管理](https://cloud.tencent.com/document/product/647/50769) 中操作。
|
|
391
403
|
*/
|
|
392
404
|
ModifyPicture(req: ModifyPictureRequest, cb?: (error: string, rep: ModifyPictureResponse) => void): Promise<ModifyPictureResponse>;
|
|
405
|
+
/**
|
|
406
|
+
* 查询AI转录状态
|
|
407
|
+
*/
|
|
408
|
+
DescribeAITranscription(req: DescribeAITranscriptionRequest, cb?: (error: string, rep: DescribeAITranscriptionResponse) => void): Promise<DescribeAITranscriptionResponse>;
|
|
393
409
|
/**
|
|
394
410
|
* 更新转推任务。
|
|
395
411
|
注:请参见启动转推任务的接口说明和使用说明。
|
|
@@ -425,9 +441,9 @@ networkDelay :网络延迟率。
|
|
|
425
441
|
*/
|
|
426
442
|
DescribeTRTCMarketQualityData(req: DescribeTRTCMarketQualityDataRequest, cb?: (error: string, rep: DescribeTRTCMarketQualityDataResponse) => void): Promise<DescribeTRTCMarketQualityDataResponse>;
|
|
427
443
|
/**
|
|
428
|
-
*
|
|
444
|
+
* 停止AI转录
|
|
429
445
|
*/
|
|
430
|
-
|
|
446
|
+
StopAITranscription(req: StopAITranscriptionRequest, cb?: (error: string, rep: StopAITranscriptionResponse) => void): Promise<StopAITranscriptionResponse>;
|
|
431
447
|
/**
|
|
432
448
|
* 查询SdkAppId下任意20条异常体验事件,返回异常体验ID与可能产生异常体验的原因。可查询14天内数据,查询起止时间不超过1个小时。支持跨天查询。(同老接口DescribeAbnormalEvent)
|
|
433
449
|
异常体验ID映射见:https://cloud.tencent.com/document/product/647/44916
|