tencentcloud-sdk-nodejs 4.0.940 → 4.0.942

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.
Files changed (72) hide show
  1. package/CHANGELOG.md +383 -0
  2. package/SERVICE_CHANGELOG.md +611 -38
  3. package/package.json +1 -1
  4. package/products.md +15 -14
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/as/v20180419/as_models.ts +8 -0
  7. package/src/services/asr/v20190614/asr_client.ts +71 -57
  8. package/src/services/asr/v20190614/asr_models.ts +967 -895
  9. package/src/services/cfg/v20210820/cfg_models.ts +4 -0
  10. package/src/services/cwp/v20180228/cwp_client.ts +5 -3
  11. package/src/services/cwp/v20180228/cwp_models.ts +131 -48
  12. package/src/services/dlc/v20210125/dlc_models.ts +4 -0
  13. package/src/services/dsgc/v20190723/dsgc_models.ts +1 -1
  14. package/src/services/ims/v20201229/ims_client.ts +1 -1
  15. package/src/services/ims/v20201229/ims_models.ts +3 -3
  16. package/src/services/index.ts +1 -0
  17. package/src/services/lke/v20231130/lke_client.ts +576 -478
  18. package/src/services/lke/v20231130/lke_models.ts +516 -98
  19. package/src/services/mps/v20190612/mps_models.ts +8 -3
  20. package/src/services/mqtt/index.ts +5 -0
  21. package/src/services/mqtt/v20240516/index.ts +6 -0
  22. package/src/services/mqtt/v20240516/mqtt_client.ts +275 -0
  23. package/src/services/mqtt/v20240516/mqtt_models.ts +1112 -0
  24. package/src/services/tcss/v20201101/tcss_client.ts +4 -2
  25. package/src/services/tke/v20180525/tke_client.ts +40 -16
  26. package/src/services/tke/v20180525/tke_models.ts +154 -70
  27. package/src/services/vdb/v20230616/vdb_models.ts +5 -0
  28. package/src/services/vod/v20180717/vod_client.ts +2 -1
  29. package/src/services/vod/v20180717/vod_models.ts +34 -1
  30. package/src/services/vpc/v20170312/vpc_models.ts +17 -1
  31. package/tencentcloud/common/sdk_version.d.ts +1 -1
  32. package/tencentcloud/common/sdk_version.js +1 -1
  33. package/tencentcloud/services/as/v20180419/as_models.d.ts +8 -0
  34. package/tencentcloud/services/asr/v20190614/asr_client.d.ts +5 -1
  35. package/tencentcloud/services/asr/v20190614/asr_client.js +6 -0
  36. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +998 -930
  37. package/tencentcloud/services/cfg/v20210820/cfg_models.d.ts +4 -0
  38. package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +1 -1
  39. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +128 -47
  40. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +4 -0
  41. package/tencentcloud/services/dsgc/v20190723/dsgc_models.d.ts +1 -1
  42. package/tencentcloud/services/ims/v20201229/ims_client.d.ts +1 -1
  43. package/tencentcloud/services/ims/v20201229/ims_client.js +1 -1
  44. package/tencentcloud/services/ims/v20201229/ims_models.d.ts +3 -3
  45. package/tencentcloud/services/index.d.ts +1 -0
  46. package/tencentcloud/services/index.js +2 -0
  47. package/tencentcloud/services/lke/v20231130/lke_client.d.ts +195 -163
  48. package/tencentcloud/services/lke/v20231130/lke_client.js +288 -240
  49. package/tencentcloud/services/lke/v20231130/lke_models.d.ts +497 -97
  50. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +7 -2
  51. package/tencentcloud/services/mqtt/index.d.ts +6 -0
  52. package/tencentcloud/services/mqtt/index.js +7 -0
  53. package/tencentcloud/services/mqtt/v20240516/index.d.ts +6 -0
  54. package/tencentcloud/services/mqtt/v20240516/index.js +9 -0
  55. package/tencentcloud/services/mqtt/v20240516/mqtt_client.d.ts +95 -0
  56. package/tencentcloud/services/mqtt/v20240516/mqtt_client.js +154 -0
  57. package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +1051 -0
  58. package/tencentcloud/services/mqtt/v20240516/mqtt_models.js +18 -0
  59. package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +3 -1
  60. package/tencentcloud/services/tcss/v20201101/tcss_client.js +3 -1
  61. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +13 -5
  62. package/tencentcloud/services/tke/v20180525/tke_client.js +18 -6
  63. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +150 -70
  64. package/tencentcloud/services/vdb/v20230616/vdb_models.d.ts +5 -0
  65. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +1 -1
  66. package/tencentcloud/services/vod/v20180717/vod_client.js +1 -1
  67. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +33 -1
  68. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +17 -1
  69. package/test/asr.v20190614.test.js +10 -0
  70. package/test/lke.v20231130.test.js +238 -158
  71. package/test/mqtt.v20240516.test.js +211 -0
  72. package/test/tke.v20180525.test.js +24 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.940",
3
+ "version": "4.0.942",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
package/products.md CHANGED
@@ -16,8 +16,8 @@
16
16
  | api | [云 API](https://cloud.tencent.com/document/product/1278) | 2023-01-05 01:02:52 |
17
17
  | apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2024-08-27 22:32:44 |
18
18
  | apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2024-09-13 01:04:24 |
19
- | as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2024-08-28 01:05:22 |
20
- | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2024-09-02 01:09:58 |
19
+ | as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2024-09-20 12:54:26 |
20
+ | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2024-09-23 01:07:54 |
21
21
  | asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2023-05-18 01:04:02 |
22
22
  | ba | [ICP备案](https://cloud.tencent.com/document/product/243) | 2024-04-22 01:08:02 |
23
23
  | batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2024-08-29 01:10:22 |
@@ -48,7 +48,7 @@
48
48
  | cdwdoris | [腾讯云数据仓库 TCHouse-D](https://cloud.tencent.com/document/product/1387) | 2024-09-04 01:13:34 |
49
49
  | cdwpg | [云数据仓库 PostgreSQL](https://cloud.tencent.com/document/product/878) | 2024-03-28 01:10:53 |
50
50
  | cdz | [专属可用区](https://cloud.tencent.com/document/product/1629) | 2024-08-28 01:17:24 |
51
- | cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2024-09-13 01:14:11 |
51
+ | cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2024-09-20 12:56:59 |
52
52
  | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2024-08-28 01:17:42 |
53
53
  | cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2024-09-19 01:15:41 |
54
54
  | chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2024-03-20 01:10:55 |
@@ -73,7 +73,7 @@
73
73
  | csip | [云安全一体化平台](https://cloud.tencent.com/document/product/664) | 2024-09-19 01:21:01 |
74
74
  | csxg | [5G入云服务](https://cloud.tencent.com/document/product/1687) | 2024-03-20 01:12:25 |
75
75
  | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2024-09-10 01:20:00 |
76
- | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2024-09-09 01:25:33 |
76
+ | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2024-09-20 12:58:49 |
77
77
  | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
78
78
  | cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2024-09-19 01:26:29 |
79
79
  | dasb | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2024-09-13 01:25:56 |
@@ -83,12 +83,12 @@
83
83
  | dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2024-07-08 01:12:54 |
84
84
  | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2024-09-10 01:27:21 |
85
85
  | dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2024-09-11 01:32:35 |
86
- | dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-09-16 01:37:54 |
86
+ | dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-09-20 13:00:46 |
87
87
  | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-09-11 01:34:34 |
88
88
  | domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-07-31 01:30:16 |
89
89
  | drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2024-07-12 01:14:44 |
90
90
  | ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2024-03-20 01:15:13 |
91
- | dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2024-09-13 01:31:06 |
91
+ | dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2024-09-20 13:01:30 |
92
92
  | dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
93
93
  | dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2024-09-10 01:32:13 |
94
94
  | eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2024-08-19 01:36:09 |
@@ -122,11 +122,11 @@
122
122
  | ie | [智能编辑](https://cloud.tencent.com/document/product/1186) | 2023-08-17 03:20:18 |
123
123
  | iecp | [物联网边缘计算平台](https://cloud.tencent.com/document/product/1118) | 2024-06-20 01:46:44 |
124
124
  | iir | [智能识图](https://cloud.tencent.com/document/product/1217) | 2022-04-04 06:48:05 |
125
- | ims | [图片内容安全](https://cloud.tencent.com/document/product/1125) | 2024-09-03 01:54:57 |
125
+ | ims | [图片内容安全](https://cloud.tencent.com/document/product/1125) | 2024-09-20 13:04:24 |
126
126
  | ioa | [iOA 零信任安全管理系统](https://cloud.tencent.com/document/product/1092) | 2024-08-13 01:52:20 |
127
127
  | iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2023-07-17 01:22:28 |
128
128
  | iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2024-06-05 01:47:50 |
129
- | iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2024-09-12 01:46:54 |
129
+ | iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2024-09-20 13:04:36 |
130
130
  | iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
131
131
  | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2024-07-08 01:16:48 |
132
132
  | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2024-03-20 01:18:54 |
@@ -138,7 +138,7 @@
138
138
  | lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2024-08-26 02:00:18 |
139
139
  | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2024-08-28 01:59:28 |
140
140
  | live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2024-09-12 01:53:31 |
141
- | lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2024-09-16 02:02:56 |
141
+ | lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2024-09-20 13:06:39 |
142
142
  | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
143
143
  | lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
144
144
  | mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2024-03-20 01:20:11 |
@@ -150,8 +150,9 @@
150
150
  | mna | [多网聚合加速](https://cloud.tencent.com/document/product/1385) | 2024-08-23 01:55:12 |
151
151
  | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2024-08-28 02:04:37 |
152
152
  | monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2024-08-28 02:05:12 |
153
- | mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2024-09-13 01:54:23 |
154
- | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2024-09-12 02:00:38 |
153
+ | mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2024-09-20 13:07:52 |
154
+ | mqtt | [消息队列 MQTT 版](https://cloud.tencent.com/document/product/1778) | 2024-09-23 01:21:43 |
155
+ | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2024-09-20 13:08:23 |
155
156
  | ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2024-08-16 02:04:04 |
156
157
  | msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2024-04-17 14:48:31 |
157
158
  | mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
@@ -203,7 +204,7 @@
203
204
  | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
204
205
  | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2024-06-18 02:13:19 |
205
206
  | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2024-09-05 02:07:24 |
206
- | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-08-23 02:13:33 |
207
+ | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-09-20 13:11:46 |
207
208
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2024-07-10 01:25:35 |
208
209
  | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-06-04 02:17:43 |
209
210
  | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2024-09-13 02:12:41 |
@@ -237,11 +238,11 @@
237
238
  | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2024-03-20 01:30:08 |
238
239
  | vcg | [视频生成](https://cloud.tencent.com/document/product/1770) | 2024-06-06 02:47:17 |
239
240
  | vclm | [大模型视频创作引擎](https://cloud.tencent.com/document/product/1616) | 2024-09-10 02:22:16 |
240
- | vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2024-09-16 02:39:09 |
241
+ | vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2024-09-20 13:15:27 |
241
242
  | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-07-26 02:26:34 |
242
243
  | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
243
244
  | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-09-11 19:07:13 |
244
- | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2024-09-19 02:31:07 |
245
+ | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2024-09-20 13:16:10 |
245
246
  | vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-09-06 02:27:27 |
246
247
  | vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-09-10 02:27:11 |
247
248
  | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2024-09-09 02:31:32 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.940"
1
+ export const sdkVersion = "4.0.942"
@@ -3027,6 +3027,14 @@ WAKE_UP_STOPPED_SCALING:扩容优先开机。扩容时优先对已关机的实
3027
3027
  * 开启负载均衡不健康替换服务。若开启则对于负载均衡健康检查判断不健康的实例,弹性伸缩服务会进行替换。若不指定该参数,则默认为 False。
3028
3028
  */
3029
3029
  ReplaceLoadBalancerUnhealthy?: boolean
3030
+ /**
3031
+ * 不健康替换服务的替换模式。取值范围:
3032
+ RECREATE:重建实例替代原有不健康实例;
3033
+ RESET:对原有不健康实例进行重装系统操作,可保持数据盘、内网IP、实例id等信息不发生变化,实例登录设置、主机名、增强服务和 UserData 与当前启动配置保持一致。
3034
+ 默认取值:RECREATE
3035
+ 注意:此字段可能返回 null,表示取不到有效值。
3036
+ */
3037
+ ReplaceMode?: string
3030
3038
  }
3031
3039
 
3032
3040
  /**
@@ -18,88 +18,92 @@
18
18
  import { AbstractClient } from "../../../common/abstract_client"
19
19
  import { ClientConfig } from "../../../common/interface"
20
20
  import {
21
- SetVocabStateResponse,
22
21
  CreateCustomizationResponse,
23
- VoicePrintDeleteRequest,
24
22
  KeyWordResult,
25
- DescribeAsyncRecognitionTasksRequest,
26
23
  ModifyCustomizationStateRequest,
24
+ CreateRecTaskResponse,
25
+ UpdateAsrVocabResponse,
26
+ DeleteAsrKeyWordLibResponse,
27
+ CreateAsrKeyWordLibRequest,
28
+ VoicePrintGroupVerifyRequest,
29
+ GetCustomizationListResponse,
30
+ CloseAsyncRecognitionTaskRequest,
31
+ Task,
32
+ AsyncRecognitionTasks,
33
+ DeleteCustomizationResponse,
34
+ TaskStatus,
35
+ GetCustomizationListRequest,
36
+ SentenceRecognitionRequest,
37
+ VoicePrintCountRequest,
38
+ VoicePrintCompareResponse,
39
+ VerifyTop,
40
+ SetVocabStateResponse,
41
+ UsageByDateInfoData,
42
+ VoicePrintDeleteRequest,
43
+ DescribeAsyncRecognitionTasksRequest,
27
44
  GetAsrKeyWordLibListResponse,
28
45
  VoicePrintEnrollResponse,
29
- VoicePrintUpdateRequest,
30
46
  CreateAsrKeyWordLibResponse,
31
47
  CreateAsyncRecognitionTaskRequest,
32
- HotWord,
33
- GetModelInfoRequest,
34
48
  GetAsrVocabRequest,
35
49
  DescribeTaskStatusResponse,
36
- SentenceRecognitionRequest,
37
50
  VoicePrintVerifyData,
38
- KeyWordLib,
39
- CloseAsyncRecognitionTaskResponse,
40
- SentenceDetail,
41
- CreateCustomizationRequest,
51
+ SentenceWord,
42
52
  DownloadAsrVocabResponse,
43
- Vocab,
44
- CreateRecTaskResponse,
45
- UpdateAsrKeyWordLibRequest,
46
53
  ModifyCustomizationResponse,
47
- DeleteAsrKeyWordLibResponse,
48
- DeleteAsrVocabResponse,
49
- CreateAsyncRecognitionTaskResponse,
54
+ GetAsrVocabListRequest,
55
+ VoicePrintCountData,
56
+ VoicePrintUpdateRequest,
57
+ DeleteAsrVocabRequest,
58
+ UpdateAsrVocabRequest,
59
+ CreateAsrVocabResponse,
60
+ SentenceRecognitionResponse,
61
+ VoicePrintBaseData,
62
+ DescribeAsyncRecognitionTasksResponse,
63
+ GetAsrVocabListResponse,
64
+ DownloadCustomizationRequest,
65
+ VerifyTopResult,
66
+ GetAsrVocabResponse,
67
+ HotWord,
68
+ UpdateAsrKeyWordLibRequest,
69
+ GetUsageByDateResponse,
50
70
  VoicePrintDeleteResponse,
51
- GetAsrKeyWordLibListRequest,
52
- CreateAsrKeyWordLibRequest,
53
71
  DownloadCustomizationResponse,
54
72
  CreateRecTaskRequest,
55
- KeyWordLibIdData,
56
- VoicePrintGroupVerifyRequest,
57
- GetAsrVocabResponse,
58
- GetAsrVocabListRequest,
59
- GetCustomizationListResponse,
60
- VoicePrintGroupVerifyResponse,
73
+ SentenceDetail,
61
74
  DownloadAsrVocabRequest,
62
- SetVocabStateRequest,
63
- KeyWordLibListData,
64
- CloseAsyncRecognitionTaskRequest,
65
- Task,
66
- AsyncRecognitionTasks,
67
- VoicePrintVerifyRequest,
75
+ Vocab,
76
+ KeyWordLib,
68
77
  ModifyCustomizationRequest,
69
- DeleteCustomizationResponse,
70
- TaskStatus,
71
- DeleteAsrVocabRequest,
72
- GetCustomizationListRequest,
73
- UpdateAsrVocabResponse,
74
- VoicePrintCountResponse,
75
- VoicePrintCompareData,
76
78
  VoicePrintVerifyResponse,
79
+ GetModelInfoResponse,
77
80
  DescribeTaskStatusRequest,
81
+ VoicePrintCompareRequest,
82
+ DeleteCustomizationRequest,
83
+ AsyncRecognitionTaskInfo,
84
+ VoicePrintCountResponse,
85
+ KeyWordLibListData,
86
+ CloseAsyncRecognitionTaskResponse,
87
+ VoicePrintGroupVerifyResponse,
88
+ CreateCustomizationRequest,
89
+ UsageByDateInfo,
90
+ UpdateAsrKeyWordLibResponse,
91
+ CreateAsyncRecognitionTaskResponse,
92
+ GetAsrKeyWordLibListRequest,
93
+ DeleteAsrVocabResponse,
94
+ KeyWordLibIdData,
95
+ VoicePrintCompareData,
96
+ VoicePrintVerifyRequest,
97
+ SetVocabStateRequest,
78
98
  Model,
79
99
  CreateAsrVocabRequest,
80
- GetModelInfoResponse,
81
- UpdateAsrVocabRequest,
82
- VoicePrintCountRequest,
83
- VoicePrintEnrollRequest,
84
- CreateAsrVocabResponse,
85
- SentenceRecognitionResponse,
86
100
  VoicePrintUpdateResponse,
87
101
  DeleteAsrKeyWordLibRequest,
88
- VoicePrintBaseData,
89
- UpdateAsrKeyWordLibResponse,
90
- VerifyTopResult,
91
- VoicePrintCompareRequest,
92
- VoicePrintCompareResponse,
93
- DeleteCustomizationRequest,
94
- VerifyTop,
95
- AsyncRecognitionTaskInfo,
102
+ GetModelInfoRequest,
96
103
  ModifyCustomizationStateResponse,
97
- DescribeAsyncRecognitionTasksResponse,
98
- GetAsrVocabListResponse,
99
- SentenceWord,
104
+ GetUsageByDateRequest,
105
+ VoicePrintEnrollRequest,
100
106
  SentenceWords,
101
- VoicePrintCountData,
102
- DownloadCustomizationRequest,
103
107
  } from "./asr_models"
104
108
 
105
109
  /**
@@ -111,6 +115,16 @@ export class Client extends AbstractClient {
111
115
  super("asr.tencentcloudapi.com", "2019-06-14", clientConfig)
112
116
  }
113
117
 
118
+ /**
119
+ * 查询用户用量
120
+ */
121
+ async GetUsageByDate(
122
+ req: GetUsageByDateRequest,
123
+ cb?: (error: string, rep: GetUsageByDateResponse) => void
124
+ ): Promise<GetUsageByDateResponse> {
125
+ return this.request("GetUsageByDate", req, cb)
126
+ }
127
+
114
128
  /**
115
129
  * 通过比对两段音频内说话人的声纹,得到一个打分,可通过打分判断两段音频声纹相似度, 打分区间[0 - 100]。 音频要求:16k采样率, 16bit位深,pcm或者wav格式, 单声道,总时长不超过30秒的音频,base64编码数据大小不超过2M,音频内容只有一个说话人声音,并且尽可能清晰,这样结果更加准确。
116
130
  */