tencentcloud-sdk-nodejs 4.0.635 → 4.0.637

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 (65) hide show
  1. package/CHANGELOG.md +427 -0
  2. package/SERVICE_CHANGELOG.md +465 -184
  3. package/package.json +1 -1
  4. package/products.md +25 -25
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/ciam/v20220331/ciam_models.ts +8 -0
  7. package/src/services/dasb/v20191018/dasb_models.ts +17 -13
  8. package/src/services/dbbrain/v20210527/dbbrain_client.ts +13 -1
  9. package/src/services/dbbrain/v20210527/dbbrain_models.ts +48 -11
  10. package/src/services/dlc/v20210125/dlc_models.ts +1 -1
  11. package/src/services/ecm/v20190719/ecm_client.ts +4 -3
  12. package/src/services/ecm/v20190719/ecm_models.ts +123 -77
  13. package/src/services/essbasic/v20210526/essbasic_models.ts +42 -37
  14. package/src/services/gaap/v20180529/gaap_models.ts +35 -35
  15. package/src/services/mongodb/v20190725/mongodb_models.ts +65 -41
  16. package/src/services/privatedns/v20201028/privatedns_models.ts +3 -3
  17. package/src/services/pts/v20210728/pts_models.ts +2 -2
  18. package/src/services/tcr/v20190924/tcr_client.ts +62 -13
  19. package/src/services/tcr/v20190924/tcr_models.ts +365 -136
  20. package/src/services/teo/v20220901/teo_client.ts +462 -790
  21. package/src/services/teo/v20220901/teo_models.ts +533 -2272
  22. package/src/services/thpc/v20230321/thpc_models.ts +1 -1
  23. package/src/services/tke/v20180525/tke_models.ts +16 -4
  24. package/src/services/vod/v20180717/vod_client.ts +2 -2
  25. package/src/services/vod/v20180717/vod_models.ts +18 -18
  26. package/src/services/vpc/v20170312/vpc_client.ts +3 -2
  27. package/src/services/vpc/v20170312/vpc_models.ts +22 -18
  28. package/src/services/wedata/v20210820/wedata_client.ts +16 -2
  29. package/src/services/wedata/v20210820/wedata_models.ts +211 -13
  30. package/tencentcloud/common/sdk_version.d.ts +1 -1
  31. package/tencentcloud/common/sdk_version.js +1 -1
  32. package/tencentcloud/services/ciam/v20220331/ciam_models.d.ts +8 -0
  33. package/tencentcloud/services/dasb/v20191018/dasb_models.d.ts +17 -13
  34. package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.d.ts +5 -1
  35. package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.js +6 -0
  36. package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +46 -11
  37. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +1 -1
  38. package/tencentcloud/services/ecm/v20190719/ecm_client.d.ts +1 -1
  39. package/tencentcloud/services/ecm/v20190719/ecm_models.d.ts +121 -76
  40. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +42 -37
  41. package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +35 -35
  42. package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +65 -41
  43. package/tencentcloud/services/privatedns/v20201028/privatedns_models.d.ts +3 -3
  44. package/tencentcloud/services/pts/v20210728/pts_models.d.ts +2 -2
  45. package/tencentcloud/services/tcr/v20190924/tcr_client.d.ts +17 -1
  46. package/tencentcloud/services/tcr/v20190924/tcr_client.js +24 -0
  47. package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +354 -134
  48. package/tencentcloud/services/teo/v20220901/teo_client.d.ts +121 -223
  49. package/tencentcloud/services/teo/v20220901/teo_client.js +179 -333
  50. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +576 -2245
  51. package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +1 -1
  52. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +16 -4
  53. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +2 -2
  54. package/tencentcloud/services/vod/v20180717/vod_client.js +2 -2
  55. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +18 -18
  56. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +3 -2
  57. package/tencentcloud/services/vpc/v20170312/vpc_client.js +3 -2
  58. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +22 -18
  59. package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +5 -1
  60. package/tencentcloud/services/wedata/v20210820/wedata_client.js +6 -0
  61. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +207 -13
  62. package/test/dbbrain.v20210527.test.js +10 -0
  63. package/test/tcr.v20190924.test.js +40 -0
  64. package/test/teo.v20220901.test.js +118 -378
  65. package/test/wedata.v20210820.test.js +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.635",
3
+ "version": "4.0.637",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
package/products.md CHANGED
@@ -23,7 +23,7 @@
23
23
  | batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2023-05-18 01:04:14 |
24
24
  | bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2023-06-26 01:08:49 |
25
25
  | bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2023-05-18 01:04:39 |
26
- | billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2023-07-03 01:04:02 |
26
+ | billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2023-07-06 01:08:15 |
27
27
  | bizlive | [商业直播](https://cloud.tencent.com/document/product) | 2020-03-10 01:08:07 |
28
28
  | bm | [黑石物理服务器CPM](https://cloud.tencent.com/document/product/386) | 2023-05-18 01:04:59 |
29
29
  | bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2023-05-18 01:05:33 |
@@ -50,7 +50,7 @@
50
50
  | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2023-06-27 01:08:55 |
51
51
  | cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2023-07-05 01:13:10 |
52
52
  | chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2023-05-31 01:12:53 |
53
- | ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2023-07-04 01:14:49 |
53
+ | ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2023-07-06 01:13:25 |
54
54
  | cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2023-05-18 01:12:07 |
55
55
  | cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
56
56
  | cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
@@ -70,36 +70,36 @@
70
70
  | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2023-05-26 01:16:07 |
71
71
  | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2023-06-20 01:17:02 |
72
72
  | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
73
- | cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2023-06-29 14:25:48 |
74
- | dasb | [T-Sec-堡垒机(BH)](https://cloud.tencent.com/document/product/1025) | 2023-05-18 01:19:47 |
73
+ | cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2023-07-07 01:17:43 |
74
+ | dasb | [T-Sec-堡垒机(BH)](https://cloud.tencent.com/document/product/1025) | 2023-07-07 01:21:45 |
75
75
  | dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
76
76
  | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2023-05-18 01:20:11 |
77
- | dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2023-06-14 01:18:59 |
77
+ | dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2023-07-07 01:22:44 |
78
78
  | dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2023-05-18 01:21:33 |
79
79
  | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2023-05-18 01:21:37 |
80
80
  | dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2023-06-28 01:18:44 |
81
- | dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2023-07-05 01:21:49 |
81
+ | dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2023-07-06 01:21:05 |
82
82
  | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2023-07-03 01:19:17 |
83
83
  | domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2023-05-18 01:23:17 |
84
84
  | drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2023-05-18 01:23:31 |
85
85
  | ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2023-05-18 01:23:36 |
86
86
  | dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
87
- | dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2023-06-12 01:18:11 |
87
+ | dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2023-07-06 01:22:17 |
88
88
  | eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2023-05-18 01:24:14 |
89
89
  | ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2023-05-18 01:24:28 |
90
90
  | ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2023-05-18 01:24:35 |
91
- | ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2023-06-06 01:28:52 |
91
+ | ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2023-07-07 01:25:16 |
92
92
  | eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2023-05-18 01:25:40 |
93
93
  | eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-05-18 01:25:58 |
94
94
  | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2023-07-05 01:26:25 |
95
95
  | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2023-07-03 01:22:18 |
96
- | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2023-07-05 01:27:03 |
97
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2023-07-05 01:27:29 |
96
+ | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2023-07-07 01:32:25 |
97
+ | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2023-07-07 01:34:05 |
98
98
  | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2023-05-31 01:26:29 |
99
99
  | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2023-07-03 01:23:32 |
100
100
  | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2023-05-24 14:30:55 |
101
101
  | ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2023-05-18 01:28:35 |
102
- | gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2023-07-03 01:23:57 |
102
+ | gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2023-07-07 01:35:13 |
103
103
  | gme | [游戏多媒体引擎](https://cloud.tencent.com/document/product/607) | 2023-06-14 01:25:30 |
104
104
  | goosefs | [数据加速器 GooseFS](https://cloud.tencent.com/document/product/1424) | 2023-05-18 01:29:36 |
105
105
  | gpm | [游戏玩家匹配](https://cloud.tencent.com/document/product/1294) | 2022-07-11 06:12:36 |
@@ -136,9 +136,9 @@
136
136
  | mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
137
137
  | mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2023-05-18 01:39:20 |
138
138
  | mna | [移动网络加速](https://cloud.tencent.com/document/product/1385) | 2023-05-25 01:46:28 |
139
- | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2023-05-29 01:32:50 |
140
- | monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2023-06-26 01:41:04 |
141
- | mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2023-06-15 01:28:24 |
139
+ | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2023-07-06 01:31:55 |
140
+ | monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2023-07-06 01:32:15 |
141
+ | mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2023-07-06 01:33:04 |
142
142
  | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2023-05-18 01:42:01 |
143
143
  | ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2023-06-15 01:29:09 |
144
144
  | msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2023-05-18 01:42:21 |
@@ -152,11 +152,11 @@
152
152
  | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2023-06-21 01:29:51 |
153
153
  | pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2023-05-18 01:44:14 |
154
154
  | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2023-07-05 01:39:08 |
155
- | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2023-07-05 01:39:49 |
156
- | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2023-06-20 01:44:07 |
155
+ | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2023-07-06 01:39:21 |
156
+ | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2023-07-07 01:45:35 |
157
157
  | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2023-05-18 01:45:58 |
158
158
  | redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2023-06-28 01:36:04 |
159
- | region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2023-06-12 01:33:36 |
159
+ | region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2023-07-07 01:46:17 |
160
160
  | rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2023-05-18 01:46:50 |
161
161
  | rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
162
162
  | rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2023-05-18 01:46:54 |
@@ -188,15 +188,15 @@
188
188
  | tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
189
189
  | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
190
190
  | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2023-06-06 01:55:42 |
191
- | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2023-06-30 01:44:37 |
192
- | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2023-06-30 01:45:16 |
191
+ | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2023-07-07 01:50:00 |
192
+ | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2023-07-06 01:44:39 |
193
193
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2023-06-21 01:36:25 |
194
194
  | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2023-06-27 01:43:11 |
195
195
  | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2023-06-28 01:43:23 |
196
196
  | tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2023-05-18 01:55:50 |
197
197
  | tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2023-05-22 02:01:01 |
198
- | teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2023-05-29 01:44:07 |
199
- | thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2023-06-15 01:38:28 |
198
+ | teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2023-07-06 01:59:03 |
199
+ | thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2023-07-07 01:53:45 |
200
200
  | tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
201
201
  | tic | [资源编排 TIC](https://cloud.tencent.com/document/product/1213) | 2023-05-18 01:58:19 |
202
202
  | ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 |
@@ -205,7 +205,7 @@
205
205
  | tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2023-05-29 01:47:15 |
206
206
  | tione | [TI-ONE 训练平台](https://cloud.tencent.com/document/product/851) | 2023-06-26 01:57:45 |
207
207
  | tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2023-06-08 02:02:46 |
208
- | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2023-06-30 01:49:36 |
208
+ | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2023-07-07 01:54:52 |
209
209
  | tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
210
210
  | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2023-05-18 02:01:07 |
211
211
  | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2023-05-18 02:01:10 |
@@ -221,12 +221,12 @@
221
221
  | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2023-05-18 02:04:06 |
222
222
  | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2023-05-18 02:04:19 |
223
223
  | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2023-05-18 02:04:23 |
224
- | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2023-07-03 01:54:42 |
225
- | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2023-07-05 01:54:12 |
224
+ | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2023-07-06 20:35:50 |
225
+ | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2023-07-07 01:59:12 |
226
226
  | vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2023-06-21 01:45:11 |
227
227
  | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2023-07-05 01:56:06 |
228
228
  | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2023-06-30 12:15:39 |
229
- | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2023-07-05 01:56:36 |
229
+ | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2023-07-07 02:01:57 |
230
230
  | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
231
231
  | yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2023-06-22 02:06:43 |
232
232
  | youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.635"
1
+ export const sdkVersion = "4.0.637"
@@ -634,6 +634,10 @@ export type ListUserStoreRequest = null
634
634
  * CreateUserGroup返回参数结构体
635
635
  */
636
636
  export interface CreateUserGroupResponse {
637
+ /**
638
+ * 用户组ID
639
+ */
640
+ UserGroupId?: string
637
641
  /**
638
642
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
639
643
  */
@@ -1486,6 +1490,10 @@ export interface SetPasswordResponse {
1486
1490
  * CreateUserStore返回参数结构体
1487
1491
  */
1488
1492
  export interface CreateUserStoreResponse {
1493
+ /**
1494
+ * 用户目录ID
1495
+ */
1496
+ UserStoreId?: string
1489
1497
  /**
1490
1498
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1491
1499
  */
@@ -146,16 +146,16 @@ export interface Department {
146
146
  /**
147
147
  * 部门ID
148
148
  */
149
- Id: string
149
+ Id?: string
150
150
  /**
151
151
  * 部门名称,1 - 256个字符
152
152
  */
153
- Name: string
153
+ Name?: string
154
154
  /**
155
155
  * 部门管理员账号ID
156
156
  注意:此字段可能返回 null,表示取不到有效值。
157
157
  */
158
- Managers: Array<string>
158
+ Managers?: Array<string>
159
159
  }
160
160
 
161
161
  /**
@@ -955,7 +955,7 @@ export interface CreateUserResponse {
955
955
  /**
956
956
  * 新建用户的ID
957
957
  */
958
- Id: number
958
+ Id?: number
959
959
  /**
960
960
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
961
961
  */
@@ -1502,6 +1502,10 @@ export interface DescribeUsersRequest {
1502
1502
  大陆手机号直接填写,如果是其他国家、地区号码,按照"国家地区代码|手机号"的格式输入。如: "+852|xxxxxxxx"
1503
1503
  */
1504
1504
  Phone?: string
1505
+ /**
1506
+ * 邮箱,精确查询
1507
+ */
1508
+ Email?: string
1505
1509
  /**
1506
1510
  * 查询具有指定资产ID访问权限的用户
1507
1511
  */
@@ -1846,14 +1850,14 @@ export interface User {
1846
1850
  * 用户姓名, 最大20个字符,不能包含空白字符
1847
1851
  */
1848
1852
  RealName: string
1849
- /**
1850
- * 手机号码, 大陆手机号直接填写,如果是其他国家、地区号码,按照"国家地区代码|手机号"的格式输入。如: "+852|xxxxxxxx"
1851
- */
1852
- Phone: string
1853
1853
  /**
1854
1854
  * 用户ID
1855
1855
  */
1856
1856
  Id?: number
1857
+ /**
1858
+ * 手机号码, 大陆手机号直接填写,如果是其他国家、地区号码,按照"国家地区代码|手机号"的格式输入。如: "+852|xxxxxxxx"
1859
+ */
1860
+ Phone?: string
1857
1861
  /**
1858
1862
  * 电子邮件
1859
1863
  */
@@ -2030,11 +2034,11 @@ export interface DescribeUsersResponse {
2030
2034
  /**
2031
2035
  * 用户总数
2032
2036
  */
2033
- TotalCount: number
2037
+ TotalCount?: number
2034
2038
  /**
2035
2039
  * 用户列表
2036
2040
  */
2037
- UserSet: Array<User>
2041
+ UserSet?: Array<User>
2038
2042
  /**
2039
2043
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2040
2044
  */
@@ -2066,7 +2070,7 @@ export interface CreateUserRequest {
2066
2070
  /**
2067
2071
  * 大陆手机号直接填写,如果是其他国家、地区号码, 按照"国家地区代码|手机号"的格式输入。如: "+852|xxxxxxxx"
2068
2072
  */
2069
- Phone: string
2073
+ Phone?: string
2070
2074
  /**
2071
2075
  * 电子邮件
2072
2076
  */
@@ -2413,11 +2417,11 @@ export interface ModifyUserRequest {
2413
2417
  /**
2414
2418
  * 大陆手机号直接填写,如果是其他国家、地区号码,按照"国家地区代码|手机号"的格式输入。如: "+852|xxxxxxxx"
2415
2419
  */
2416
- Phone: string
2420
+ Phone?: string
2417
2421
  /**
2418
2422
  * 电子邮件
2419
2423
  */
2420
- Email: string
2424
+ Email?: string
2421
2425
  /**
2422
2426
  * 用户生效时间,如:"2021-09-22T00:00:00+00:00"
2423
2427
  生效、失效时间不填则用户长期有效
@@ -28,7 +28,7 @@ import {
28
28
  DescribeSlowLogsRequest,
29
29
  DescribeTopSpaceTablesRequest,
30
30
  ScoreItem,
31
- InstanceConfs,
31
+ CreateRedisBigKeyAnalysisTaskResponse,
32
32
  CreateSecurityAuditLogExportTaskRequest,
33
33
  DescribeDBDiagEventResponse,
34
34
  DescribeDBDiagEventsResponse,
@@ -43,6 +43,7 @@ import {
43
43
  CreateKillTaskResponse,
44
44
  DiagHistoryEventItem,
45
45
  DescribeProxySessionKillTasksRequest,
46
+ CreateRedisBigKeyAnalysisTaskRequest,
46
47
  DescribeMySqlProcessListResponse,
47
48
  SessionItem,
48
49
  HealthStatus,
@@ -88,6 +89,7 @@ import {
88
89
  CreateDBDiagReportUrlRequest,
89
90
  DescribeSecurityAuditLogExportTasksResponse,
90
91
  DescribeRedisTopKeyPrefixListRequest,
92
+ InstanceConfs,
91
93
  DescribeSqlTemplateResponse,
92
94
  HealthScoreInfo,
93
95
  DescribeTopSpaceTableTimeSeriesResponse,
@@ -268,6 +270,16 @@ export class Client extends AbstractClient {
268
270
  return this.request("ModifyDiagDBInstanceConf", req, cb)
269
271
  }
270
272
 
273
+ /**
274
+ * 即时创建redis实例大key分析任务,限制正在运行的即时分析任务数量默认为5。
275
+ */
276
+ async CreateRedisBigKeyAnalysisTask(
277
+ req: CreateRedisBigKeyAnalysisTaskRequest,
278
+ cb?: (error: string, rep: CreateRedisBigKeyAnalysisTaskResponse) => void
279
+ ): Promise<CreateRedisBigKeyAnalysisTaskResponse> {
280
+ return this.request("CreateRedisBigKeyAnalysisTask", req, cb)
281
+ }
282
+
271
283
  /**
272
284
  * 用于删除云数据库实例的审计日志文件。
273
285
  */
@@ -306,22 +306,17 @@ export interface ScoreItem {
306
306
  }
307
307
 
308
308
  /**
309
- * 实例配置。
309
+ * CreateRedisBigKeyAnalysisTask返回参数结构体
310
310
  */
311
- export interface InstanceConfs {
311
+ export interface CreateRedisBigKeyAnalysisTaskResponse {
312
312
  /**
313
- * 数据库巡检开关, Yes/No
314
- */
315
- DailyInspection?: string
316
- /**
317
- * 实例概览开关,Yes/No。
313
+ * 异步任务ID
318
314
  */
319
- OverviewDisplay?: string
315
+ AsyncRequestId?: number
320
316
  /**
321
- * redis大key分析的自定义分割符,仅redis使用
322
- 注意:此字段可能返回 null,表示取不到有效值。
317
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
323
318
  */
324
- KeyDelimiters?: Array<string>
319
+ RequestId?: string
325
320
  }
326
321
 
327
322
  /**
@@ -738,6 +733,29 @@ export interface DescribeProxySessionKillTasksRequest {
738
733
  Product: string
739
734
  }
740
735
 
736
+ /**
737
+ * CreateRedisBigKeyAnalysisTask请求参数结构体
738
+ */
739
+ export interface CreateRedisBigKeyAnalysisTaskRequest {
740
+ /**
741
+ * 实例ID。
742
+ */
743
+ InstanceId: string
744
+ /**
745
+ * 服务产品类型,支持值包括 "redis" - 云数据库 Redis。
746
+ */
747
+ Product: string
748
+ /**
749
+ * 分片节点序号列表。当列表为空时,选择所有分片节点。
750
+ */
751
+ ShardIds?: Array<number>
752
+ /**
753
+ * Top Key前缀的分隔符列表。
754
+ 目前仅支持以下分割符:[",", ";", ":", "_", "-", "+", "@", "=", "|", "#", "."],当列表为空时,默认选择所有分隔符。
755
+ */
756
+ KeyDelimiterList?: Array<string>
757
+ }
758
+
741
759
  /**
742
760
  * DescribeMySqlProcessList返回参数结构体
743
761
  */
@@ -1671,6 +1689,25 @@ export interface DescribeRedisTopKeyPrefixListRequest {
1671
1689
  Limit?: number
1672
1690
  }
1673
1691
 
1692
+ /**
1693
+ * 实例配置。
1694
+ */
1695
+ export interface InstanceConfs {
1696
+ /**
1697
+ * 数据库巡检开关, Yes/No。
1698
+ */
1699
+ DailyInspection?: string
1700
+ /**
1701
+ * 实例概览开关,Yes/No。
1702
+ */
1703
+ OverviewDisplay?: string
1704
+ /**
1705
+ * redis大key分析的自定义分割符,仅redis使用
1706
+ 注意:此字段可能返回 null,表示取不到有效值。
1707
+ */
1708
+ KeyDelimiters?: Array<string>
1709
+ }
1710
+
1674
1711
  /**
1675
1712
  * DescribeSqlTemplate返回参数结构体
1676
1713
  */
@@ -4352,7 +4352,7 @@ export interface ModifyWorkGroupRequest {
4352
4352
  */
4353
4353
  WorkGroupId: number
4354
4354
  /**
4355
- * 工作组描述
4355
+ * 工作组描述,最大字符数限制50
4356
4356
  */
4357
4357
  WorkGroupDescription: string
4358
4358
  }
@@ -63,6 +63,7 @@ import {
63
63
  CreateImageRequest,
64
64
  Instance,
65
65
  RunSecurityServiceEnabled,
66
+ PeakBase,
66
67
  DeleteLoadBalancerRequest,
67
68
  DescribeVpcsRequest,
68
69
  DescribeRouteConflictsResponse,
@@ -103,7 +104,7 @@ import {
103
104
  DeleteSubnetResponse,
104
105
  ISP,
105
106
  Address,
106
- PeakBase,
107
+ ModifyModuleImageResponse,
107
108
  ReplaceRouteTableAssociationRequest,
108
109
  ModifyTargetWeightResponse,
109
110
  DescribeCustomImageTaskResponse,
@@ -138,7 +139,6 @@ import {
138
139
  ModifyTargetPortResponse,
139
140
  MonthNetwork,
140
141
  ResetRoutesResponse,
141
- AllocateAddressesResponse,
142
142
  CreateImageResponse,
143
143
  ModifyModuleNetworkRequest,
144
144
  AddressTemplateSpecification,
@@ -242,6 +242,7 @@ import {
242
242
  CreateHaVipResponse,
243
243
  ImportImageRequest,
244
244
  DiskChargePrepaid,
245
+ ISPIPv6CidrBlock,
245
246
  DisableRoutesRequest,
246
247
  StopInstancesResponse,
247
248
  ModifyModuleNameRequest,
@@ -267,7 +268,7 @@ import {
267
268
  BatchRegisterTargetsRequest,
268
269
  RemovePrivateIpAddressesResponse,
269
270
  PublicIPAddressInfo,
270
- ModifyModuleImageResponse,
271
+ AllocateAddressesResponse,
271
272
  DeleteLoadBalancerListenersResponse,
272
273
  VpcInfo,
273
274
  ModuleItem,