tencentcloud-sdk-nodejs 4.0.866 → 4.0.868

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 (71) hide show
  1. package/CHANGELOG.md +274 -0
  2. package/SERVICE_CHANGELOG.md +321 -129
  3. package/package.json +1 -1
  4. package/products.md +19 -18
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/antiddos/v20200309/antiddos_models.ts +9 -0
  7. package/src/services/cdb/v20170320/cdb_models.ts +72 -24
  8. package/src/services/domain/v20180808/domain_models.ts +8 -0
  9. package/src/services/ess/v20201111/ess_client.ts +18 -0
  10. package/src/services/ess/v20201111/ess_models.ts +109 -0
  11. package/src/services/faceid/v20180301/faceid_models.ts +2 -2
  12. package/src/services/index.ts +1 -0
  13. package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +2 -2
  14. package/src/services/lighthouse/v20200324/lighthouse_client.ts +5 -5
  15. package/src/services/lighthouse/v20200324/lighthouse_models.ts +56 -54
  16. package/src/services/redis/v20180412/redis_models.ts +13 -13
  17. package/src/services/tcb/v20180608/tcb_models.ts +4 -4
  18. package/src/services/trocket/v20230308/trocket_client.ts +27 -8
  19. package/src/services/trocket/v20230308/trocket_models.ts +241 -33
  20. package/src/services/trtc/v20190722/trtc_client.ts +48 -5
  21. package/src/services/trtc/v20190722/trtc_models.ts +112 -22
  22. package/src/services/tse/v20201207/tse_models.ts +10 -0
  23. package/src/services/tsf/v20180326/tsf_models.ts +34 -5
  24. package/src/services/vdb/index.ts +5 -0
  25. package/src/services/vdb/v20230616/index.ts +6 -0
  26. package/src/services/vdb/v20230616/vdb_client.ts +46 -0
  27. package/src/services/vdb/v20230616/vdb_models.ts +266 -0
  28. package/src/services/waf/v20180125/waf_client.ts +13 -0
  29. package/src/services/waf/v20180125/waf_models.ts +62 -0
  30. package/src/services/wedata/v20210820/wedata_models.ts +4 -0
  31. package/tencentcloud/common/sdk_version.d.ts +1 -1
  32. package/tencentcloud/common/sdk_version.js +1 -1
  33. package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +9 -0
  34. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +72 -24
  35. package/tencentcloud/services/domain/v20180808/domain_models.d.ts +8 -0
  36. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +11 -1
  37. package/tencentcloud/services/ess/v20201111/ess_client.js +12 -0
  38. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +107 -0
  39. package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +2 -2
  40. package/tencentcloud/services/index.d.ts +1 -0
  41. package/tencentcloud/services/index.js +2 -0
  42. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +2 -2
  43. package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.d.ts +5 -5
  44. package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.js +5 -5
  45. package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +56 -54
  46. package/tencentcloud/services/redis/v20180412/redis_models.d.ts +13 -13
  47. package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +4 -4
  48. package/tencentcloud/services/trocket/v20230308/trocket_client.d.ts +12 -3
  49. package/tencentcloud/services/trocket/v20230308/trocket_client.js +14 -3
  50. package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +237 -33
  51. package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +47 -4
  52. package/tencentcloud/services/trtc/v20190722/trtc_client.js +47 -4
  53. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +112 -22
  54. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +10 -0
  55. package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +34 -5
  56. package/tencentcloud/services/vdb/index.d.ts +6 -0
  57. package/tencentcloud/services/vdb/index.js +7 -0
  58. package/tencentcloud/services/vdb/v20230616/index.d.ts +6 -0
  59. package/tencentcloud/services/vdb/v20230616/index.js +9 -0
  60. package/tencentcloud/services/vdb/v20230616/vdb_client.d.ts +14 -0
  61. package/tencentcloud/services/vdb/v20230616/vdb_client.js +37 -0
  62. package/tencentcloud/services/vdb/v20230616/vdb_models.d.ts +245 -0
  63. package/tencentcloud/services/vdb/v20230616/vdb_models.js +18 -0
  64. package/tencentcloud/services/waf/v20180125/waf_client.d.ts +5 -1
  65. package/tencentcloud/services/waf/v20180125/waf_client.js +6 -0
  66. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +59 -0
  67. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +4 -0
  68. package/test/ess.v20201111.test.js +10 -0
  69. package/test/trocket.v20230308.test.js +12 -2
  70. package/test/vdb.v20230616.test.js +31 -0
  71. package/test/waf.v20180125.test.js +10 -0
package/products.md CHANGED
@@ -10,7 +10,7 @@
10
10
  | ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-08-17 01:06:14 |
11
11
  | ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2024-04-22 01:07:21 |
12
12
  | anicloud | [动效素材服务](https://cloud.tencent.com/document/product/1641) | 2023-05-18 01:01:53 |
13
- | antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/297) | 2024-05-14 01:08:57 |
13
+ | antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/297) | 2024-06-04 01:07:52 |
14
14
  | apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
15
15
  | ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
16
16
  | api | [云 API](https://cloud.tencent.com/document/product/1278) | 2023-01-05 01:02:52 |
@@ -40,7 +40,7 @@
40
40
  | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2024-05-28 01:14:36 |
41
41
  | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2024-03-21 01:09:20 |
42
42
  | ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2024-05-28 01:15:06 |
43
- | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2024-05-31 01:15:35 |
43
+ | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2024-06-04 01:16:12 |
44
44
  | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-03-20 01:10:04 |
45
45
  | cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2024-05-21 01:17:01 |
46
46
  | cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2024-04-22 01:10:25 |
@@ -82,7 +82,7 @@
82
82
  | dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2024-04-26 01:13:59 |
83
83
  | dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-05-31 01:32:25 |
84
84
  | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-05-30 01:33:24 |
85
- | domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-05-28 01:34:04 |
85
+ | domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-06-04 01:35:42 |
86
86
  | drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2024-04-22 01:15:04 |
87
87
  | ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2024-03-20 01:15:13 |
88
88
  | dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2024-05-27 01:34:38 |
@@ -96,10 +96,10 @@
96
96
  | eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
97
97
  | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2024-05-17 01:39:38 |
98
98
  | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2024-05-14 01:51:30 |
99
- | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2024-05-31 01:39:40 |
99
+ | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2024-06-04 01:41:39 |
100
100
  | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2024-05-31 01:40:33 |
101
101
  | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2024-05-31 01:41:22 |
102
- | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2024-05-30 01:41:19 |
102
+ | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2024-06-04 01:43:35 |
103
103
  | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2024-05-09 01:15:52 |
104
104
  | ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2024-03-20 01:17:13 |
105
105
  | gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2024-04-17 01:14:36 |
@@ -123,7 +123,7 @@
123
123
  | ioa | [iOA 零信任安全管理系统](https://cloud.tencent.com/document/product/1092) | 2024-04-03 11:20:41 |
124
124
  | iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2023-07-17 01:22:28 |
125
125
  | iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2024-03-20 01:18:04 |
126
- | iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2024-05-30 01:45:30 |
126
+ | iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2024-06-03 01:47:39 |
127
127
  | iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
128
128
  | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2024-05-14 02:02:07 |
129
129
  | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2024-03-20 01:18:54 |
@@ -133,7 +133,7 @@
133
133
  | keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2024-03-20 01:19:20 |
134
134
  | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2024-04-17 01:17:16 |
135
135
  | lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2024-04-26 01:18:49 |
136
- | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2024-05-30 01:51:13 |
136
+ | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2024-06-04 01:54:03 |
137
137
  | live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2024-05-29 01:52:02 |
138
138
  | lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2024-05-31 01:53:17 |
139
139
  | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
@@ -164,7 +164,7 @@
164
164
  | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2024-03-20 01:22:42 |
165
165
  | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2024-04-19 01:24:07 |
166
166
  | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-05-20 02:02:25 |
167
- | redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2024-05-30 02:02:41 |
167
+ | redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2024-06-03 02:05:36 |
168
168
  | region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2024-04-22 01:23:34 |
169
169
  | rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2023-12-25 00:16:39 |
170
170
  | rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
@@ -193,16 +193,16 @@
193
193
  | tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 |
194
194
  | tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2024-03-20 01:24:24 |
195
195
  | tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2024-03-20 01:24:25 |
196
- | tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2024-05-30 02:08:52 |
196
+ | tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2024-06-04 02:12:41 |
197
197
  | tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2024-04-22 01:25:05 |
198
198
  | tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
199
199
  | tchd | [腾讯云健康看板](https://cloud.tencent.com/document/product/1688) | 2024-03-20 01:24:49 |
200
200
  | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
201
201
  | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2024-03-20 01:24:49 |
202
- | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2024-05-31 02:09:57 |
202
+ | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2024-06-04 02:13:52 |
203
203
  | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-05-31 02:10:49 |
204
204
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2024-03-20 01:25:48 |
205
- | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-04-25 01:24:56 |
205
+ | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-06-04 02:17:43 |
206
206
  | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2024-05-29 02:13:49 |
207
207
  | tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2024-04-22 01:26:50 |
208
208
  | tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2024-03-20 01:26:14 |
@@ -222,25 +222,26 @@
222
222
  | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2024-05-28 02:20:13 |
223
223
  | tourism | [文旅客情大数据](https://cloud.tencent.com/document/product/1684) | 2024-03-20 01:28:59 |
224
224
  | trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2023-05-18 02:01:19 |
225
- | trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2024-05-29 02:20:10 |
225
+ | trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2024-06-03 02:23:52 |
226
226
  | trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2024-05-30 02:20:31 |
227
- | trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2024-05-31 02:20:57 |
228
- | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2024-05-29 02:21:14 |
229
- | tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2024-05-15 01:35:13 |
230
- | tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-05-23 02:22:11 |
227
+ | trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2024-06-03 02:24:47 |
228
+ | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2024-06-03 02:25:00 |
229
+ | tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2024-06-04 02:26:13 |
230
+ | tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-06-04 02:27:15 |
231
231
  | tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2024-03-20 01:30:06 |
232
232
  | tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2024-04-24 01:23:54 |
233
233
  | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2024-03-20 01:30:08 |
234
234
  | vcg | [视频生成](https://cloud.tencent.com/document/product/1770) | 2024-05-16 16:26:14 |
235
+ | vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2024-06-03 15:48:04 |
235
236
  | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-03-20 01:30:12 |
236
237
  | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
237
238
  | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-05-17 02:33:00 |
238
239
  | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2024-05-10 02:45:29 |
239
240
  | vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-04-02 01:27:45 |
240
241
  | vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-05-16 16:17:26 |
241
- | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2024-05-31 02:29:01 |
242
+ | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2024-06-04 02:34:05 |
242
243
  | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2024-03-20 01:32:09 |
243
- | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2024-05-29 02:30:31 |
244
+ | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2024-06-04 02:35:39 |
244
245
  | weilingwith | [微瓴同业开放平台](https://cloud.tencent.com/document/product/1693) | 2024-05-15 01:38:36 |
245
246
  | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
246
247
  | yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2024-03-20 01:33:11 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.866"
1
+ export const sdkVersion = "4.0.868"
@@ -656,6 +656,10 @@ export interface DescribeListBGPInstancesRequest {
656
656
  * 是否跨区域产品 0: 不包含跨区域产品 1: 中国大陆跨区域产品 2: 非中国大陆跨区域产品 3: 包含全部
657
657
  */
658
658
  FilterTransRegionFlag?: number
659
+ /**
660
+ * zoenid列表
661
+ */
662
+ FilterZoneIdList?: Array<number | bigint>
659
663
  }
660
664
 
661
665
  /**
@@ -5478,6 +5482,11 @@ export interface BGPInstance {
5478
5482
  注意:此字段可能返回 null,表示取不到有效值。
5479
5483
  */
5480
5484
  SuperPackFlag?: number
5485
+ /**
5486
+ * 所属ZoneId
5487
+ 注意:此字段可能返回 null,表示取不到有效值。
5488
+ */
5489
+ ZoneId?: number
5481
5490
  }
5482
5491
 
5483
5492
  /**
@@ -1234,6 +1234,7 @@ export interface CreateCdbProxyAddressRequest {
1234
1234
  UniqSubnetId: string
1235
1235
  /**
1236
1236
  * 是否开启连接池
1237
+ 注意:如需使用数据库代理连接池能力,MySQL 8.0 主实例的内核小版本要大于等于 MySQL 8.0 20230630。
1237
1238
  */
1238
1239
  ConnectionPool?: boolean
1239
1240
  /**
@@ -1256,6 +1257,14 @@ export interface CreateCdbProxyAddressRequest {
1256
1257
  * 连接池类型。可选值 transaction(事务级别连接池),connection(会话级别连接池),ConnectionPool为true时生效。
1257
1258
  */
1258
1259
  ConnectionPoolType?: string
1260
+ /**
1261
+ * 是否自适应负载均衡
1262
+ */
1263
+ AutoLoadBalance?: boolean
1264
+ /**
1265
+ * 接入模式
1266
+ */
1267
+ AccessMode?: string
1259
1268
  }
1260
1269
 
1261
1270
  /**
@@ -6123,6 +6132,16 @@ export interface ProxyInst {
6123
6132
  注意:此字段可能返回 null,表示取不到有效值。
6124
6133
  */
6125
6134
  Zone?: string
6135
+ /**
6136
+ * 实例节点ID
6137
+ 注意:此字段可能返回 null,表示取不到有效值。
6138
+ */
6139
+ InstNodeId?: string
6140
+ /**
6141
+ * 节点角色
6142
+ 注意:此字段可能返回 null,表示取不到有效值。
6143
+ */
6144
+ InstNodeRole?: string
6126
6145
  }
6127
6146
 
6128
6147
  /**
@@ -6230,42 +6249,52 @@ export interface DescribeProxySupportParamResponse {
6230
6249
  * 支持最大代理版本
6231
6250
  注意:此字段可能返回 null,表示取不到有效值。
6232
6251
  */
6233
- ProxyVersion: string
6252
+ ProxyVersion?: string
6234
6253
  /**
6235
6254
  * 是否支持连接池
6236
6255
  注意:此字段可能返回 null,表示取不到有效值。
6237
6256
  */
6238
- SupportPool: boolean
6257
+ SupportPool?: boolean
6239
6258
  /**
6240
6259
  * 连接池最小值
6241
6260
  注意:此字段可能返回 null,表示取不到有效值。
6242
6261
  */
6243
- PoolMin: number
6262
+ PoolMin?: number
6244
6263
  /**
6245
6264
  * 连接池最大值
6246
6265
  注意:此字段可能返回 null,表示取不到有效值。
6247
6266
  */
6248
- PoolMax: number
6267
+ PoolMax?: number
6249
6268
  /**
6250
6269
  * 是否支持事务拆分
6251
6270
  注意:此字段可能返回 null,表示取不到有效值。
6252
6271
  */
6253
- SupportTransSplit: boolean
6272
+ SupportTransSplit?: boolean
6254
6273
  /**
6255
6274
  * 支持连接池的最小代理版本
6256
6275
  注意:此字段可能返回 null,表示取不到有效值。
6257
6276
  */
6258
- SupportPoolMinVersion: string
6277
+ SupportPoolMinVersion?: string
6259
6278
  /**
6260
6279
  * 支持事务拆分的最小代理版本
6261
6280
  注意:此字段可能返回 null,表示取不到有效值。
6262
6281
  */
6263
- SupportTransSplitMinVersion: string
6282
+ SupportTransSplitMinVersion?: string
6264
6283
  /**
6265
6284
  * 是否支持设置只读
6266
6285
  注意:此字段可能返回 null,表示取不到有效值。
6267
6286
  */
6268
- SupportReadOnly: boolean
6287
+ SupportReadOnly?: boolean
6288
+ /**
6289
+ * 是否自动均衡负载
6290
+ 注意:此字段可能返回 null,表示取不到有效值。
6291
+ */
6292
+ SupportAutoLoadBalance?: boolean
6293
+ /**
6294
+ * 是否支持接入模式
6295
+ 注意:此字段可能返回 null,表示取不到有效值。
6296
+ */
6297
+ SupportAccessMode?: boolean
6269
6298
  /**
6270
6299
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6271
6300
  */
@@ -6859,12 +6888,21 @@ export interface AdjustCdbProxyAddressRequest {
6859
6888
  TransSplit?: boolean
6860
6889
  /**
6861
6890
  * 是否开启连接池
6891
+ 注意:如需使用数据库代理连接池能力,MySQL 8.0 主实例的内核小版本要大于等于 MySQL 8.0 20230630。
6862
6892
  */
6863
6893
  ConnectionPool?: boolean
6864
6894
  /**
6865
6895
  * 读写权重分配。如果 WeightMode 传的是 system ,则传入的权重不生效,由系统分配默认权重。
6866
6896
  */
6867
6897
  ProxyAllocation?: Array<ProxyAllocation>
6898
+ /**
6899
+ * 是否开启自适应负载均衡
6900
+ */
6901
+ AutoLoadBalance?: boolean
6902
+ /**
6903
+ * 访问模式:就近访问,均衡分配
6904
+ */
6905
+ AccessMode?: string
6868
6906
  }
6869
6907
 
6870
6908
  /**
@@ -8211,79 +8249,89 @@ export interface ProxyAddress {
8211
8249
  /**
8212
8250
  * 代理组地址ID
8213
8251
  */
8214
- ProxyAddressId: string
8252
+ ProxyAddressId?: string
8215
8253
  /**
8216
8254
  * 私有网络ID
8217
8255
  */
8218
- UniqVpcId: string
8256
+ UniqVpcId?: string
8219
8257
  /**
8220
8258
  * 私有子网ID
8221
8259
  */
8222
- UniqSubnetId: string
8260
+ UniqSubnetId?: string
8223
8261
  /**
8224
8262
  * IP地址
8225
8263
  */
8226
- Vip: string
8264
+ Vip?: string
8227
8265
  /**
8228
8266
  * 端口
8229
8267
  */
8230
- VPort: number
8268
+ VPort?: number
8231
8269
  /**
8232
8270
  * 权重分配模式;
8233
8271
  系统自动分配:"system", 自定义:"custom"
8234
8272
  注意:此字段可能返回 null,表示取不到有效值。
8235
8273
  */
8236
- WeightMode: string
8274
+ WeightMode?: string
8237
8275
  /**
8238
8276
  * 是否开启延迟剔除,取值:"true" | "false"
8239
8277
  注意:此字段可能返回 null,表示取不到有效值。
8240
8278
  */
8241
- IsKickOut: boolean
8279
+ IsKickOut?: boolean
8242
8280
  /**
8243
8281
  * 最小保留数量,最小取值:0
8244
8282
  注意:此字段可能返回 null,表示取不到有效值。
8245
8283
  */
8246
- MinCount: number
8284
+ MinCount?: number
8247
8285
  /**
8248
8286
  * 延迟剔除阈值,最小取值:0
8249
8287
  注意:此字段可能返回 null,表示取不到有效值。
8250
8288
  */
8251
- MaxDelay: number
8289
+ MaxDelay?: number
8252
8290
  /**
8253
8291
  * 是否自动添加RO,取值:"true" | "false"
8254
8292
  注意:此字段可能返回 null,表示取不到有效值。
8255
8293
  */
8256
- AutoAddRo: boolean
8294
+ AutoAddRo?: boolean
8257
8295
  /**
8258
8296
  * 是否是只读,取值:"true" | "false"
8259
8297
  注意:此字段可能返回 null,表示取不到有效值。
8260
8298
  */
8261
- ReadOnly: boolean
8299
+ ReadOnly?: boolean
8262
8300
  /**
8263
8301
  * 是否开启事务分离
8264
8302
  注意:此字段可能返回 null,表示取不到有效值。
8265
8303
  */
8266
- TransSplit: boolean
8304
+ TransSplit?: boolean
8267
8305
  /**
8268
8306
  * 是否开启故障转移
8269
8307
  注意:此字段可能返回 null,表示取不到有效值。
8270
8308
  */
8271
- FailOver: boolean
8309
+ FailOver?: boolean
8272
8310
  /**
8273
8311
  * 是否开启连接池
8274
8312
  注意:此字段可能返回 null,表示取不到有效值。
8275
8313
  */
8276
- ConnectionPool: boolean
8314
+ ConnectionPool?: boolean
8277
8315
  /**
8278
8316
  * 描述
8279
8317
  注意:此字段可能返回 null,表示取不到有效值。
8280
8318
  */
8281
- Desc: string
8319
+ Desc?: string
8282
8320
  /**
8283
8321
  * 实例读权重分配
8284
8322
  注意:此字段可能返回 null,表示取不到有效值。
8285
8323
  */
8286
- ProxyAllocation: Array<ProxyAllocation>
8324
+ ProxyAllocation?: Array<ProxyAllocation>
8325
+ /**
8326
+ * 接入模式
8327
+ 注意:此字段可能返回 null,表示取不到有效值。
8328
+ */
8329
+ AccessMode?: string
8330
+ /**
8331
+ * 是否开启自动负载均衡
8332
+ 注意:此字段可能返回 null,表示取不到有效值。
8333
+ */
8334
+ AutoLoadBalance?: boolean
8287
8335
  }
8288
8336
 
8289
8337
  /**
@@ -1430,6 +1430,14 @@ export interface ReservedPreDomainsRequest {
1430
1430
  * 模板ID
1431
1431
  */
1432
1432
  TemplateId: string
1433
+ /**
1434
+ * 结束后是否自动支付尾款,默认开启 传入1关闭
1435
+ */
1436
+ IsAutoPay?: number
1437
+ /**
1438
+ * 结束后是否自动进行梯度保证金扣除,默认开启 传入1关闭
1439
+ */
1440
+ IsBidAutoPay?: number
1433
1441
  }
1434
1442
 
1435
1443
  /**
@@ -160,6 +160,7 @@ import {
160
160
  RemindFlowRecords,
161
161
  CreatePreparedPersonalEsignResponse,
162
162
  DescribeOrganizationSealsResponse,
163
+ CreateUserMobileChangeUrlRequest,
163
164
  RegistrationOrganizationInfo,
164
165
  CreateEmbedWebUrlRequest,
165
166
  DeleteIntegrationEmployeesRequest,
@@ -238,6 +239,7 @@ import {
238
239
  DescribeFlowBriefsRequest,
239
240
  CreateSealPolicyRequest,
240
241
  DescribeBillUsageDetailResponse,
242
+ CreateUserMobileChangeUrlResponse,
241
243
  CreateUserAutoSignEnableUrlResponse,
242
244
  DescribeSignFaceVideoResponse,
243
245
  SignUrl,
@@ -349,6 +351,17 @@ export class Client extends AbstractClient {
349
351
  return this.request("StartFlow", req, cb)
350
352
  }
351
353
 
354
+ /**
355
+ * 该接口会生成一个手机号变更的链接,用户可以通过该链接进入电子签系统进行手机号的变更。
356
+ 该接口支持员工和个人端手机号的变更。
357
+ */
358
+ async CreateUserMobileChangeUrl(
359
+ req: CreateUserMobileChangeUrlRequest,
360
+ cb?: (error: string, rep: CreateUserMobileChangeUrlResponse) => void
361
+ ): Promise<CreateUserMobileChangeUrlResponse> {
362
+ return this.request("CreateUserMobileChangeUrl", req, cb)
363
+ }
364
+
352
365
  /**
353
366
  * 用于撤销合同流程<br/>
354
367
  适用场景:如果某个合同流程当前至少还有一方没有签署,则可通过该接口取消该合同流程。常用于合同发错、内容填错,需要及时撤销的场景。<br/>
@@ -1103,6 +1116,11 @@ httpProfile.setEndpoint("file.test.ess.tencent.cn");
1103
1116
  注:
1104
1117
  - 合同**发起后就会扣减合同的额度**, 只有撤销没有参与方签署过或只有自动签署签署过的合同,才会返还合同额度。(**过期,拒签,签署完成,解除完成等状态不会返还额度**)
1105
1118
  - **静默(自动)签署不支持合同签署方存在填写**功能
1119
+
1120
+
1121
+ <font color="red">相关视频指引</font> <br>
1122
+ 1. <a href="https://dyn.ess.tencent.cn/guide/apivideo/ess_uploadfiles.mp4" target="_blank">上传用于合同发起的PDF文件代码编写示例</a><br>
1123
+ 2. <a href="https://dyn.ess.tencent.cn/guide/apivideo/ess-CreateFlowByFiles.mp4" target="_blank">用PDF文件创建签署流程编写示例</a><br>
1106
1124
  */
1107
1125
  async CreateFlowByFiles(
1108
1126
  req: CreateFlowByFilesRequest,
@@ -5259,6 +5259,78 @@ export interface DescribeOrganizationSealsResponse {
5259
5259
  RequestId?: string
5260
5260
  }
5261
5261
 
5262
+ /**
5263
+ * CreateUserMobileChangeUrl请求参数结构体
5264
+ */
5265
+ export interface CreateUserMobileChangeUrlRequest {
5266
+ /**
5267
+ * 执行本接口操作的员工信息。使用此接口时,必须填写userId。 支持填入集团子公司经办人 userId 代发合同。 注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
5268
+ */
5269
+ Operator: UserInfo
5270
+ /**
5271
+ * 代理企业和员工的信息。 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
5272
+ */
5273
+ Agent?: Agent
5274
+ /**
5275
+ * 如果您要修改企业员工用户ID,传递此用户ID即可,其他参数(Name,UserAccountType,IdCardType,IdCardNumber)将被忽略。如果不传此用户ID,则会使用其他参数来进行链接生成。
5276
+
5277
+ [点击查看用户ID的获取方式](https://res.ess.tencent.cn/cdn/tsign-developer-center/assets/images/%E7%BB%84%E7%BB%87%E6%9E%B6%E6%9E%84-47eb7105dd300e6dc0c502fba22688ae.png)
5278
+ */
5279
+ UserId?: string
5280
+ /**
5281
+ * 要修改手机号用户的类型。
5282
+ <ul><li>0:员工 (默认)</li><li>1:个人</li>
5283
+ </ul>
5284
+ 如果是员工类型,<b>只能修改本方员工,而不能修改其他企业的员工</b>。
5285
+ 如果是个人类型,可<b>不指定用户身份,生成的是固定的链接,当前登录电子签小程序的用户可进行换绑。</b>
5286
+
5287
+ */
5288
+ UserAccountType?: number
5289
+ /**
5290
+ * 要修改手机号用户的姓名,请确保填写的姓名为对方的真实姓名,而非昵称等代名。
5291
+
5292
+ 如果没有传递 userId且 userAccountType 是 0 或者没有传递, 此参数为<b>必填项。</b>
5293
+ */
5294
+ Name?: string
5295
+ /**
5296
+ * 要修改手机号用户的证件类型,
5297
+ 目前支持的账号类型如下:
5298
+
5299
+ <ul><li><b>ID_CARD </b>: (默认)中国大陆居民身份证 </li>
5300
+ <li><b>HONGKONG_AND_MACAO</b> : 港澳居民来往内地通行证</li>
5301
+ <li><b>HONGKONG_MACAO_AND_TAIWAN </b>: 港澳台居民居住证(格式同居民身份证)</li></ul>
5302
+
5303
+ */
5304
+ IdCardType?: string
5305
+ /**
5306
+ * 要修改手机号用户的身份证号码,应符合以下规则
5307
+ <ul><li>居民身份证号码应为18位字符串,由数字和大写字母X组成(如存在X,请大写)。</li>
5308
+ <li>港澳居民来往内地通行证号码共11位。第1位为字母,“H”字头签发给香港居民,“M”字头签发给澳门居民;第2位至第11位为数字。</li>
5309
+ <li>港澳台居民居住证号码编码规则与中国大陆身份证相同,应为18位字符串。</li></ul>
5310
+ 如果没有传递 userId且 userAccountType 是 0 或者没有传递, 此参数为<b>必填项。</b>
5311
+ */
5312
+ IdCardNumber?: string
5313
+ /**
5314
+ * 要跳转的链接类型
5315
+
5316
+ <ul>
5317
+ <li><b>HTTP</b>:(默认)跳转电子签小程序的http_url,短信通知或者H5跳转适合此类型 ,此时返回长链 (默认类型)</li>
5318
+ <li><b>HTTP_SHORT_URL</b>:跳转电子签小程序的http_url,短信通知或者H5跳转适合此类型,此时返回短链</li>
5319
+ <li><b>APP</b>:第三方APP或小程序跳转电子签小程序的path, APP或者小程序跳转适合此类型</li>
5320
+ </ul>
5321
+
5322
+
5323
+ */
5324
+ Endpoint?: string
5325
+ /**
5326
+ * 在用户完成实名认证后,其自定义数据将通过[手机号换绑回调](https://qian.tencent.com/developers/company/callback_types_staffs/#%E5%8D%81%E4%B8%89-%E4%B8%AA%E4%BA%BA%E5%91%98%E5%B7%A5%E6%89%8B%E6%9C%BA%E5%8F%B7%E4%BF%AE%E6%94%B9%E5%90%8E%E5%9B%9E%E8%B0%83)返回,以便用户确认其个人数据信息。请注意,自定义数据的字符长度上限为1000,且必须采用base64编码格式。
5327
+
5328
+ 请注意:
5329
+ 此参数仅支持通过[获取c端用户实名链接](https://qian.tencent.com/developers/companyApis/users/CreateUserVerifyUrl)接口实名的用户生效。
5330
+ */
5331
+ UserData?: string
5332
+ }
5333
+
5262
5334
  /**
5263
5335
  * 企业认证信息参数, 需要保证这些参数跟营业执照中的信息一致。
5264
5336
  */
@@ -8020,6 +8092,43 @@ export interface DescribeBillUsageDetailResponse {
8020
8092
  RequestId?: string
8021
8093
  }
8022
8094
 
8095
+ /**
8096
+ * CreateUserMobileChangeUrl返回参数结构体
8097
+ */
8098
+ export interface CreateUserMobileChangeUrlResponse {
8099
+ /**
8100
+ * 腾讯电子签小程序的实名认证链接。
8101
+ 如果没有传递,默认值是 HTTP。 链接的有效期均是 7 天。
8102
+
8103
+ - 如果EndPoint是APP,
8104
+ 得到的链接类似于pages/guide/index?to=MOBILE_CHANGE_INTENTION&shortKey=yDCZHUyOcExAlcOvNod0, 用法可以参考描述中的"跳转到小程序的实现"
8105
+
8106
+ - 如果EndPoint是HTTP,
8107
+ 得到的链接类似于https://res.ess.tencent.cn/cdn/h5-activity/jump-mp.html?to=MOBILE_CHANGE_INTENTION&shortKey=yDCZHUyOcChrfpaswT0d,点击后会跳转到腾讯电子签小程序进行签署
8108
+
8109
+ - 如果EndPoint是HTTP_SHORT_URL,
8110
+ 得到的链接类似于https://essurl.cn/2n**42Nd,点击后会跳转到腾讯电子签小程序进行签署
8111
+
8112
+
8113
+ 注: 生成的链路后面不能再增加参数
8114
+ 示例值:https://essurl.cn/2n**42Nd
8115
+ */
8116
+ Url?: string
8117
+ /**
8118
+ * 链接失效期限如下:
8119
+
8120
+ <ul>
8121
+ <li>如果指定更换绑定手机号的用户(指定用户ID或姓名等信息),则设定的链接失效期限为7天后。</li>
8122
+ <li>如果没有指定更换绑定手机号的用户,则生成通用跳转到个人换手机号的界面,链接不会过期。</li>
8123
+ </ul>
8124
+ */
8125
+ ExpireTime?: number
8126
+ /**
8127
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8128
+ */
8129
+ RequestId?: string
8130
+ }
8131
+
8023
8132
  /**
8024
8133
  * CreateUserAutoSignEnableUrl返回参数结构体
8025
8134
  */
@@ -255,7 +255,7 @@ export interface IntentionQuestionResult {
255
255
  */
256
256
  export interface RuleIdConfig {
257
257
  /**
258
- * 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
258
+ * 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认开启。
259
259
  */
260
260
  IntentionRecognition?: boolean
261
261
  /**
@@ -1864,7 +1864,7 @@ export interface GetEidTokenConfig {
1864
1864
  */
1865
1865
  IntentionActions?: Array<IntentionActionConfig>
1866
1866
  /**
1867
- * 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
1867
+ * 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认开启。
1868
1868
  */
1869
1869
  IntentionRecognition?: boolean
1870
1870
  /**
@@ -230,6 +230,7 @@ export { tsw } from "./tsw"
230
230
  export { tts } from "./tts"
231
231
  export { ump } from "./ump"
232
232
  export { vcg } from "./vcg"
233
+ export { vdb } from "./vdb"
233
234
  export { vm } from "./vm"
234
235
  export { vms } from "./vms"
235
236
  export { vod } from "./vod"
@@ -4141,7 +4141,7 @@ export interface TWeCallInfo {
4141
4141
  */
4142
4142
  ModelId: string
4143
4143
  /**
4144
- * Sn信息
4144
+ * Sn信息,SN格式:产品ID_设备名
4145
4145
  注意:此字段可能返回 null,表示取不到有效值。
4146
4146
  */
4147
4147
  Sn: string
@@ -5951,7 +5951,7 @@ export interface UpdateDeviceTWeCallAuthorizeStatusResponse {
5951
5951
  */
5952
5952
  export interface ActivateTWeCallLicenseRequest {
5953
5953
  /**
5954
- * voip类型
5954
+ * TWecall类型: 1-家庭安防场景; 2-穿戴类场景; 3-生活娱乐场景; 4-对讲及其它场景
5955
5955
  */
5956
5956
  PkgType: number
5957
5957
  /**
@@ -405,7 +405,7 @@ export class Client extends AbstractClient {
405
405
  }
406
406
 
407
407
  /**
408
- * 重命名实例内的Docker容器,之后可以通过返回的ActivityId调用DescribeDockerActivities接口查询重命名情况。
408
+ * 重命名实例内的Docker容器,之后可以通过返回的ActivityId调用[DescribeDockerActivities](https://cloud.tencent.com/document/product/1207/95476)接口查询重命名情况。
409
409
  */
410
410
  async RenameDockerContainer(
411
411
  req: RenameDockerContainerRequest,
@@ -469,7 +469,7 @@ export class Client extends AbstractClient {
469
469
  }
470
470
 
471
471
  /**
472
- * 重启实例内的Docker容器,之后可以通过返回的ActivityId调用DescribeDockerActivities接口查询重启情况。
472
+ * 重启实例内的Docker容器,之后可以通过返回的ActivityId调用[DescribeDockerActivities](https://cloud.tencent.com/document/product/1207/95476)接口查询重启情况。
473
473
  */
474
474
  async RestartDockerContainers(
475
475
  req: RestartDockerContainersRequest,
@@ -901,7 +901,7 @@ export class Client extends AbstractClient {
901
901
  }
902
902
 
903
903
  /**
904
- * 启动实例内的Docker容器,之后可以通过返回的ActivityId调用DescribeDockerActivities接口查询启动情况。
904
+ * 启动实例内的Docker容器,之后可以通过返回的ActivityId调用[DescribeDockerActivities](https://cloud.tencent.com/document/product/1207/95476)接口查询启动情况。
905
905
  */
906
906
  async StartDockerContainers(
907
907
  req: StartDockerContainersRequest,
@@ -1212,7 +1212,7 @@ https://img.qcloud.com/qcloud/app/active_vnc/index.html?InstanceVncUrl=wss%3A%2F
1212
1212
  }
1213
1213
 
1214
1214
  /**
1215
- * 停止实例内的Docker容器,之后可以通过返回的ActivityId调用DescribeDockerActivities接口查询停止情况。
1215
+ * 停止实例内的Docker容器,之后可以通过返回的ActivityId调用[DescribeDockerActivities](https://cloud.tencent.com/document/product/1207/95476)接口查询停止情况。
1216
1216
  */
1217
1217
  async StopDockerContainers(
1218
1218
  req: StopDockerContainersRequest,
@@ -1303,7 +1303,7 @@ https://img.qcloud.com/qcloud/app/active_vnc/index.html?InstanceVncUrl=wss%3A%2F
1303
1303
  }
1304
1304
 
1305
1305
  /**
1306
- * 删除实例内的Docker容器,之后可以通过返回的ActivityId调用DescribeDockerActivities接口查询删除情况。
1306
+ * 删除实例内的Docker容器,之后可以通过返回的ActivityId调用[DescribeDockerActivities](https://cloud.tencent.com/document/product/1207/95476)接口查询删除情况。
1307
1307
  */
1308
1308
  async RemoveDockerContainers(
1309
1309
  req: RemoveDockerContainersRequest,