tencentcloud-sdk-nodejs 4.0.348 → 4.0.351

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 (68) hide show
  1. package/CHANGELOG.md +234 -0
  2. package/SERVICE_CHANGELOG.md +313 -42
  3. package/package.json +1 -1
  4. package/products.md +22 -22
  5. package/src/common/abstract_client.ts +1 -1
  6. package/src/common/sdk_version.ts +1 -1
  7. package/src/services/cbs/v20170312/cbs_models.ts +48 -20
  8. package/src/services/ccc/v20200210/ccc_models.ts +2 -2
  9. package/src/services/cfw/v20190904/cfw_models.ts +5 -5
  10. package/src/services/ckafka/v20190819/ckafka_models.ts +1 -1
  11. package/src/services/cwp/v20180228/cwp_models.ts +17 -2
  12. package/src/services/cynosdb/v20190107/cynosdb_models.ts +21 -21
  13. package/src/services/dcdb/v20180411/dcdb_client.ts +12 -0
  14. package/src/services/dcdb/v20180411/dcdb_models.ts +25 -0
  15. package/src/services/dlc/v20210125/dlc_client.ts +102 -16
  16. package/src/services/dlc/v20210125/dlc_models.ts +845 -231
  17. package/src/services/iotcloud/v20210408/iotcloud_client.ts +13 -0
  18. package/src/services/iotcloud/v20210408/iotcloud_models.ts +65 -0
  19. package/src/services/ivld/v20210903/ivld_client.ts +1 -1
  20. package/src/services/kms/v20190118/kms_models.ts +39 -0
  21. package/src/services/organization/v20210331/organization_client.ts +14 -2
  22. package/src/services/organization/v20210331/organization_models.ts +53 -12
  23. package/src/services/redis/v20180412/redis_client.ts +24 -0
  24. package/src/services/redis/v20180412/redis_models.ts +80 -0
  25. package/src/services/sqlserver/v20180328/sqlserver_models.ts +1 -1
  26. package/src/services/vod/v20180717/vod_client.ts +3 -2
  27. package/src/services/vod/v20180717/vod_models.ts +1 -1
  28. package/src/services/vpc/v20170312/vpc_client.ts +1 -1
  29. package/src/services/vpc/v20170312/vpc_models.ts +25 -2
  30. package/tencentcloud/common/abstract_client.js +1 -1
  31. package/tencentcloud/common/sdk_version.d.ts +1 -1
  32. package/tencentcloud/common/sdk_version.js +1 -1
  33. package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +42 -19
  34. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +2 -2
  35. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +5 -5
  36. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +1 -1
  37. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +14 -2
  38. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +21 -21
  39. package/tencentcloud/services/dcdb/v20180411/dcdb_client.d.ts +5 -1
  40. package/tencentcloud/services/dcdb/v20180411/dcdb_client.js +6 -0
  41. package/tencentcloud/services/dcdb/v20180411/dcdb_models.d.ts +22 -0
  42. package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +31 -3
  43. package/tencentcloud/services/dlc/v20210125/dlc_client.js +45 -3
  44. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +676 -168
  45. package/tencentcloud/services/iotcloud/v20210408/iotcloud_client.d.ts +5 -1
  46. package/tencentcloud/services/iotcloud/v20210408/iotcloud_client.js +6 -0
  47. package/tencentcloud/services/iotcloud/v20210408/iotcloud_models.d.ts +55 -0
  48. package/tencentcloud/services/ivld/v20210903/ivld_client.d.ts +1 -1
  49. package/tencentcloud/services/ivld/v20210903/ivld_client.js +1 -1
  50. package/tencentcloud/services/kms/v20190118/kms_models.d.ts +32 -0
  51. package/tencentcloud/services/organization/v20210331/organization_client.d.ts +5 -1
  52. package/tencentcloud/services/organization/v20210331/organization_client.js +6 -0
  53. package/tencentcloud/services/organization/v20210331/organization_models.d.ts +47 -12
  54. package/tencentcloud/services/redis/v20180412/redis_client.d.ts +9 -1
  55. package/tencentcloud/services/redis/v20180412/redis_client.js +12 -0
  56. package/tencentcloud/services/redis/v20180412/redis_models.d.ts +68 -0
  57. package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +1 -1
  58. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +1 -0
  59. package/tencentcloud/services/vod/v20180717/vod_client.js +1 -0
  60. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +1 -1
  61. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +1 -1
  62. package/tencentcloud/services/vpc/v20170312/vpc_client.js +1 -1
  63. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +21 -2
  64. package/test/dcdb.v20180411.test.js +10 -0
  65. package/test/dlc.v20210125.test.js +72 -2
  66. package/test/iotcloud.v20210408.test.js +10 -0
  67. package/test/organization.v20210331.test.js +10 -0
  68. package/test/redis.v20180412.test.js +20 -0
package/products.md CHANGED
@@ -17,7 +17,7 @@
17
17
  | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2022-05-26 06:06:08 |
18
18
  | asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2022-04-04 06:08:40 |
19
19
  | ba | [网站备案](https://cloud.tencent.com/document/product/243) | 2022-04-04 06:08:45 |
20
- | batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2022-05-23 06:02:46 |
20
+ | batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2022-05-31 06:04:46 |
21
21
  | bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2022-05-09 06:02:49 |
22
22
  | bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2022-05-13 18:34:36 |
23
23
  | billing | [计费相关](https://cloud.tencent.com/document/product/555) | 2022-04-04 06:09:17 |
@@ -34,20 +34,20 @@
34
34
  | car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2022-04-27 06:05:49 |
35
35
  | casb | [云数据加密代理网关](https://cloud.tencent.com/document/product/1303) | 2022-04-04 06:11:55 |
36
36
  | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2022-05-23 06:03:34 |
37
- | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2022-04-21 06:07:31 |
38
- | ccc | [云呼叫中心](https://cloud.tencent.com/document/product/679) | 2022-05-24 06:07:44 |
37
+ | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2022-05-31 06:05:45 |
38
+ | ccc | [云呼叫中心](https://cloud.tencent.com/document/product/679) | 2022-05-31 06:05:55 |
39
39
  | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2022-05-19 06:08:10 |
40
40
  | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2022-05-16 17:18:07 |
41
41
  | cdn | [内容分发网络](https://cloud.tencent.com/document/product/228) | 2022-05-20 06:02:50 |
42
42
  | cds | [数据安全审计](https://cloud.tencent.com/document/product/856) | 2022-04-04 06:17:07 |
43
43
  | cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2022-05-24 06:08:29 |
44
44
  | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2022-04-04 06:17:16 |
45
- | cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2022-05-12 06:07:30 |
45
+ | cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2022-05-31 06:06:47 |
46
46
  | chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2022-05-26 06:08:04 |
47
47
  | cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2022-04-04 06:18:39 |
48
48
  | cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
49
49
  | cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
50
- | ckafka | [消息队列 Ckafka](https://cloud.tencent.com/document/product/597) | 2022-05-16 06:05:48 |
50
+ | ckafka | [消息队列 Ckafka](https://cloud.tencent.com/document/product/597) | 2022-05-31 06:07:03 |
51
51
  | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2022-05-11 06:06:40 |
52
52
  | cloudaudit | [云审计](https://cloud.tencent.com/document/product/629) | 2022-05-25 06:05:44 |
53
53
  | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2022-04-04 06:21:17 |
@@ -57,16 +57,16 @@
57
57
  | cms | [内容安全](https://cloud.tencent.com/document/product) | 2020-10-29 08:03:08 |
58
58
  | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2022-05-20 06:04:11 |
59
59
  | cr | [金融联络机器人](https://cloud.tencent.com/document/product/656) | 2021-02-24 08:03:24 |
60
- | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2022-05-26 06:09:19 |
61
- | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2022-05-25 06:06:46 |
60
+ | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2022-05-31 06:08:24 |
61
+ | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2022-05-31 06:08:47 |
62
62
  | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
63
- | cynosdb | [云原生数据库 TDSQL-C](https://cloud.tencent.com/document/product/1003) | 2022-05-25 06:07:14 |
64
- | dasb | [堡垒机](https://cloud.tencent.com/document/product/1025) | 2022-05-26 06:10:06 |
63
+ | cynosdb | [云原生数据库 TDSQL-C](https://cloud.tencent.com/document/product/1003) | 2022-05-27 06:07:33 |
64
+ | dasb | [堡垒机](https://cloud.tencent.com/document/product/1025) | 2022-05-31 06:09:23 |
65
65
  | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2022-04-04 06:33:41 |
66
66
  | dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2022-04-25 06:05:43 |
67
67
  | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2022-04-13 06:36:47 |
68
- | dcdb | [分布式数据库 TDSQL](https://cloud.tencent.com/document/product/557) | 2022-05-25 06:07:44 |
69
- | dlc | [数据湖计算](https://cloud.tencent.com/document/product/1342) | 2022-05-20 06:10:49 |
68
+ | dcdb | [分布式数据库 TDSQL](https://cloud.tencent.com/document/product/557) | 2022-05-31 06:09:47 |
69
+ | dlc | [数据湖计算](https://cloud.tencent.com/document/product/1342) | 2022-05-26 18:17:40 |
70
70
  | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2022-05-19 06:11:31 |
71
71
  | domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2022-05-24 06:11:36 |
72
72
  | drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2022-04-04 06:38:48 |
@@ -102,15 +102,15 @@
102
102
  | iir | [智能识图](https://cloud.tencent.com/document/product/1217) | 2022-04-04 06:48:05 |
103
103
  | ims | [图片内容检测](https://cloud.tencent.com/document/product/1125) | 2022-05-26 06:12:53 |
104
104
  | iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2022-04-04 06:48:08 |
105
- | iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2022-05-20 06:13:13 |
105
+ | iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2022-05-27 06:10:42 |
106
106
  | iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2022-05-25 06:10:34 |
107
107
  | iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2022-04-04 06:49:46 |
108
108
  | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2022-04-04 06:49:51 |
109
109
  | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2022-04-04 06:51:27 |
110
- | ivld | [视频智能标签](https://cloud.tencent.com/document/product/1509) | 2022-04-24 15:20:20 |
111
- | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2022-04-04 06:53:19 |
110
+ | ivld | [视频智能标签](https://cloud.tencent.com/document/product/1509) | 2022-05-26 17:59:01 |
111
+ | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2022-05-31 06:13:25 |
112
112
  | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2022-05-20 06:14:11 |
113
- | live | [云直播](https://cloud.tencent.com/document/product/267) | 2022-05-20 06:14:21 |
113
+ | live | [云直播](https://cloud.tencent.com/document/product/267) | 2022-05-30 06:10:06 |
114
114
  | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
115
115
  | lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
116
116
  | mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2022-05-25 06:11:46 |
@@ -129,13 +129,13 @@
129
129
  | npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
130
130
  | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2022-05-23 06:11:33 |
131
131
  | ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2022-05-24 06:16:42 |
132
- | organization | [企业组织](https://cloud.tencent.com/document/product/850) | 2022-04-04 07:01:46 |
132
+ | organization | [企业组织](https://cloud.tencent.com/document/product/850) | 2022-05-30 06:11:27 |
133
133
  | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2022-04-04 07:01:49 |
134
134
  | pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2022-04-04 07:02:02 |
135
135
  | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2022-05-09 06:11:56 |
136
136
  | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2022-04-04 07:02:49 |
137
137
  | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2022-04-21 06:16:10 |
138
- | redis | [云数据库 Redis](https://cloud.tencent.com/document/product/239) | 2022-05-18 06:15:32 |
138
+ | redis | [云数据库 Redis](https://cloud.tencent.com/document/product/239) | 2022-05-30 06:11:47 |
139
139
  | rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2022-04-04 07:04:04 |
140
140
  | rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
141
141
  | rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2022-04-04 07:04:08 |
@@ -146,7 +146,7 @@
146
146
  | sms | [短信](https://cloud.tencent.com/document/product/382) | 2022-04-14 06:16:29 |
147
147
  | soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2022-05-26 06:16:15 |
148
148
  | solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
149
- | sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2022-05-23 06:12:44 |
149
+ | sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2022-05-31 06:16:15 |
150
150
  | ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2022-04-22 06:14:46 |
151
151
  | ssl | [证书](https://cloud.tencent.com/document/product/400) | 2022-05-20 06:17:18 |
152
152
  | sslpod | [SSL 证书监控](https://cloud.tencent.com/document/product/1084) | 2022-04-04 07:07:55 |
@@ -180,7 +180,7 @@
180
180
  | tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2022-05-13 06:18:48 |
181
181
  | tione | [腾讯云 TI 平台 TI-ONE](https://cloud.tencent.com/document/product/851) | 2022-04-04 07:17:26 |
182
182
  | tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2022-05-17 06:17:19 |
183
- | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2022-05-23 06:14:59 |
183
+ | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2022-05-31 06:18:37 |
184
184
  | tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
185
185
  | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2022-04-04 07:18:11 |
186
186
  | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2022-05-19 06:19:37 |
@@ -188,12 +188,12 @@
188
188
  | tse | [腾讯云微服务引擎](https://cloud.tencent.com/document/product/1364) | 2022-04-22 06:17:09 |
189
189
  | tsf | [腾讯微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2022-05-20 06:20:03 |
190
190
  | tsw | [腾讯微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2022-04-04 07:22:40 |
191
- | tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2022-04-04 07:22:42 |
191
+ | tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2022-05-27 06:17:04 |
192
192
  | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2022-04-04 07:22:44 |
193
193
  | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2022-05-10 06:14:42 |
194
194
  | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2022-04-04 07:22:54 |
195
- | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2022-05-26 06:19:26 |
196
- | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2022-05-18 06:20:08 |
195
+ | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2022-05-31 06:19:43 |
196
+ | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2022-05-31 06:20:06 |
197
197
  | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2022-05-12 06:19:46 |
198
198
  | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2022-04-04 07:39:05 |
199
199
  | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
@@ -206,7 +206,7 @@ export class AbstractClient {
206
206
  private mergeData(data: any, prefix = "") {
207
207
  const ret: any = {}
208
208
  for (const k in data) {
209
- if (data[k] === null) {
209
+ if (data[k] === null || data[k] === undefined) {
210
210
  continue
211
211
  }
212
212
  if (data[k] instanceof Array || data[k] instanceof Object) {
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.348"
1
+ export const sdkVersion = "4.0.351"
@@ -45,14 +45,14 @@ export interface ModifyDiskAttributesResponse {
45
45
  */
46
46
  export interface AutoSnapshotPolicy {
47
47
  /**
48
- * 定期快照策略ID
48
+ * 已绑定当前定期快照策略的云盘ID列表。
49
49
  */
50
- AutoSnapshotPolicyId?: string
50
+ DiskIdSet?: Array<string>
51
51
 
52
52
  /**
53
- * 定期快照策略名称。
53
+ * 定期快照策略是否激活。
54
54
  */
55
- AutoSnapshotPolicyName?: string
55
+ IsActivated?: boolean
56
56
 
57
57
  /**
58
58
  * 定期快照策略的状态。取值范围:<br><li>NORMAL:正常<br><li>ISOLATED:已隔离。
@@ -60,9 +60,10 @@ export interface AutoSnapshotPolicy {
60
60
  AutoSnapshotPolicyState?: string
61
61
 
62
62
  /**
63
- * 定期快照策略是否激活。
64
- */
65
- IsActivated?: boolean
63
+ * 是否是跨账号复制快照快照, 1:是, 0: 不是
64
+ 注意:此字段可能返回 null,表示取不到有效值。
65
+ */
66
+ IsCopyToRemote: number
66
67
 
67
68
  /**
68
69
  * 使用该定期快照策略创建出来的快照是否永久保留。
@@ -70,19 +71,19 @@ export interface AutoSnapshotPolicy {
70
71
  IsPermanent?: boolean
71
72
 
72
73
  /**
73
- * 使用该定期快照策略创建出来的快照保留天数。
74
+ * 定期快照下次触发的时间。
74
75
  */
75
- RetentionDays?: number
76
+ NextTriggerTime?: string
76
77
 
77
78
  /**
78
- * 定期快照策略的创建时间。
79
+ * 定期快照策略名称。
79
80
  */
80
- CreateTime?: string
81
+ AutoSnapshotPolicyName?: string
81
82
 
82
83
  /**
83
- * 定期快照下次触发的时间。
84
+ * 定期快照策略ID。
84
85
  */
85
- NextTriggerTime?: string
86
+ AutoSnapshotPolicyId?: string
86
87
 
87
88
  /**
88
89
  * 定期快照的执行策略。
@@ -90,9 +91,26 @@ export interface AutoSnapshotPolicy {
90
91
  Policy?: Array<Policy>
91
92
 
92
93
  /**
93
- * 已绑定当前定期快照策略的云盘ID列表。
94
+ * 定期快照策略的创建时间。
94
95
  */
95
- DiskIdSet?: Array<string>
96
+ CreateTime?: string
97
+
98
+ /**
99
+ * 使用该定期快照策略创建出来的快照保留天数。
100
+ */
101
+ RetentionDays?: number
102
+
103
+ /**
104
+ * 复制的目标账户ID
105
+ 注意:此字段可能返回 null,表示取不到有效值。
106
+ */
107
+ CopyToAccountUin: string
108
+
109
+ /**
110
+ * 已绑定当前定期快照策略的实例ID列表。
111
+ 注意:此字段可能返回 null,表示取不到有效值。
112
+ */
113
+ InstanceIdSet: Array<string>
96
114
  }
97
115
 
98
116
  /**
@@ -168,7 +186,7 @@ export interface BindAutoSnapshotPolicyRequest {
168
186
  /**
169
187
  * 要绑定的云硬盘ID列表,一次请求最多绑定80块云盘。
170
188
  */
171
- DiskIds: Array<string>
189
+ DiskIds?: Array<string>
172
190
  }
173
191
 
174
192
  /**
@@ -890,6 +908,11 @@ export interface CreateSnapshotRequest {
890
908
  * 云硬盘备份点ID。传入此参数时,将通过备份点创建快照。
891
909
  */
892
910
  DiskBackupId?: string
911
+
912
+ /**
913
+ * 快照绑定的标签。
914
+ */
915
+ Tags?: Array<Tag>
893
916
  }
894
917
 
895
918
  /**
@@ -1315,14 +1338,14 @@ export interface ModifySnapshotAttributeRequest {
1315
1338
  */
1316
1339
  export interface UnbindAutoSnapshotPolicyRequest {
1317
1340
  /**
1318
- * 要解绑定期快照策略的云盘ID列表。
1341
+ * 要解绑的定期快照策略ID
1319
1342
  */
1320
- DiskIds: Array<string>
1343
+ AutoSnapshotPolicyId: string
1321
1344
 
1322
1345
  /**
1323
- * 要解绑的定期快照策略ID
1346
+ * 要解绑定期快照策略的云盘ID列表。
1324
1347
  */
1325
- AutoSnapshotPolicyId: string
1348
+ DiskIds?: Array<string>
1326
1349
  }
1327
1350
 
1328
1351
  /**
@@ -1585,6 +1608,11 @@ export interface Snapshot {
1585
1608
  * 快照开始共享的时间。
1586
1609
  */
1587
1610
  TimeStartShare: string
1611
+
1612
+ /**
1613
+ * 快照绑定的标签列表。
1614
+ */
1615
+ Tags: Array<Tag>
1588
1616
  }
1589
1617
 
1590
1618
  /**
@@ -1629,12 +1629,12 @@ export interface DescribeStaffStatusMetricsResponse {
1629
1629
  */
1630
1630
  export interface DescribeTelCallInfoResponse {
1631
1631
  /**
1632
- * 电话呼出统计分钟数
1632
+ * 呼出套餐包消耗分钟数
1633
1633
  */
1634
1634
  TelCallOutCount: number
1635
1635
 
1636
1636
  /**
1637
- * 电话呼入统计分钟数
1637
+ * 呼入套餐包消耗分钟数
1638
1638
  */
1639
1639
  TelCallInCount: number
1640
1640
 
@@ -2306,23 +2306,23 @@ export interface DescribeAcListsResponse {
2306
2306
  /**
2307
2307
  * 总条数
2308
2308
  */
2309
- Total?: number
2309
+ Total: number
2310
2310
 
2311
2311
  /**
2312
2312
  * 访问控制列表数据
2313
2313
  */
2314
- Data?: Array<AcListsData>
2314
+ Data: Array<AcListsData>
2315
2315
 
2316
2316
  /**
2317
2317
  * 不算筛选条数的总条数
2318
2318
  */
2319
- AllTotal?: number
2319
+ AllTotal: number
2320
2320
 
2321
2321
  /**
2322
2322
  * 访问控制规则全部启用/全部停用
2323
2323
  注意:此字段可能返回 null,表示取不到有效值。
2324
2324
  */
2325
- Enable?: number
2325
+ Enable: number
2326
2326
 
2327
2327
  /**
2328
2328
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -3063,7 +3063,7 @@ export interface DescribeAcListsRequest {
3063
3063
  Offset?: number
3064
3064
 
3065
3065
  /**
3066
- * 出站还是入站,0:入站,1:出站
3066
+ * 出站还是入站,1:入站,0:出站
3067
3067
  */
3068
3068
  Direction?: number
3069
3069
 
@@ -3391,7 +3391,7 @@ export interface SendMessageRequest {
3391
3391
  DataHubId: string
3392
3392
 
3393
3393
  /**
3394
- * 发送消息内容
3394
+ * 发送消息内容(单次请求最多500条)
3395
3395
  */
3396
3396
  Message: Array<BatchContent>
3397
3397
  }
@@ -753,7 +753,7 @@ export interface MalWareList {
753
753
  Alias: string
754
754
 
755
755
  /**
756
- * 特性标签
756
+ * 特性标签,已废弃字段,不会再返回标签,详情中才会返回标签信息
757
757
  注意:此字段可能返回 null,表示取不到有效值。
758
758
  */
759
759
  Tags: Array<string>
@@ -784,6 +784,21 @@ export interface MalWareList {
784
784
  * 风险等级 0未知、1低、2中、3高、4严重
785
785
  */
786
786
  Level: number
787
+
788
+ /**
789
+ * '木马检测平台用,分割 1云查杀引擎、2TAV、3binaryAi、4异常行为、5威胁情报
790
+ */
791
+ CheckPlatform: string
792
+
793
+ /**
794
+ * 木马进程是否存在 0:不存在,1:存在
795
+ */
796
+ ProcessExists: number
797
+
798
+ /**
799
+ * 木马文件是否存在 0:不存在,1:存在
800
+ */
801
+ FileExists: number
787
802
  }
788
803
 
789
804
  /**
@@ -5210,7 +5225,7 @@ export interface DescribeMalWareListRequest {
5210
5225
  <li>VirusName - String - 是否必填:否 - 描述筛选</li>
5211
5226
  <li>CreateBeginTime - String - 是否必填:否 - 创建时间筛选-开始时间</li>
5212
5227
  <li>CreateEndTime - String - 是否必填:否 - 创建时间筛选-结束时间</li>
5213
- <li>Status - String - 是否必填:否 - 状态筛选 4待处理,5信任沃尔玛可哦啊吗,6已隔离,10隔离中,11恢复隔离中</li>
5228
+ <li>Status - String - 是否必填:否 - 状态筛选 4待处理,5信任,6已隔离,10隔离中,11恢复隔离中</li>
5214
5229
  */
5215
5230
  Filters?: Array<Filter>
5216
5231
 
@@ -377,7 +377,7 @@ export interface ModifyInstanceNameResponse {
377
377
  */
378
378
  export interface PauseServerlessRequest {
379
379
  /**
380
- * 集群id
380
+ * 集群ID
381
381
  */
382
382
  ClusterId: string
383
383
 
@@ -447,7 +447,7 @@ export interface SetRenewFlagRequest {
447
447
  ResourceIds: Array<string>
448
448
 
449
449
  /**
450
- * 自动续费标志位
450
+ * 自动续费标志位,续费标记 0:正常续费 1:自动续费 2:到期不续
451
451
  */
452
452
  AutoRenewFlag: number
453
453
  }
@@ -557,7 +557,7 @@ export interface ActivateInstanceRequest {
557
557
  ClusterId: string
558
558
 
559
559
  /**
560
- * 实例ID数组
560
+ * 实例 ID 列表,单个实例 ID 格式如:cynosdbmysql-ins-n7ocdslw,与TDSQL-C MySQL数据库控制台页面中显示的实例 ID 相同,可使用 查询实例列表 接口获取,其值为输出参数中字段 InstanceId 的值。
561
561
  */
562
562
  InstanceIdList: Array<string>
563
563
  }
@@ -710,7 +710,7 @@ export interface ModifyDBInstanceSecurityGroupsResponse {
710
710
  */
711
711
  export interface ModifyAccountParamsRequest {
712
712
  /**
713
- * 集群id
713
+ * 集群id,不超过32个字符
714
714
  */
715
715
  ClusterId: string
716
716
 
@@ -755,7 +755,7 @@ export interface DescribeResourcesByDealNameResponse {
755
755
  */
756
756
  export interface ResumeServerlessResponse {
757
757
  /**
758
- * 异步流程Id
758
+ * 异步流程ID
759
759
  */
760
760
  FlowId: number
761
761
 
@@ -896,7 +896,7 @@ export interface DescribeProjectSecurityGroupsResponse {
896
896
  */
897
897
  export interface PauseServerlessResponse {
898
898
  /**
899
- * 异步流程Id
899
+ * 异步流程ID
900
900
  */
901
901
  FlowId: number
902
902
 
@@ -1324,7 +1324,7 @@ export interface CreateClustersRequest {
1324
1324
 
1325
1325
  /**
1326
1326
  * 数据库版本,取值范围:
1327
- <li> MYSQL可选值:5.7 </li>
1327
+ <li> MYSQL可选值:5.7,8.0 </li>
1328
1328
  */
1329
1329
  DbVersion: string
1330
1330
 
@@ -1352,7 +1352,7 @@ export interface CreateClustersRequest {
1352
1352
  Storage?: number
1353
1353
 
1354
1354
  /**
1355
- * 集群名称
1355
+ * 集群名称,长度小于64个字符,每个字符取值范围:大/小写字母,数字,特殊符号('-','_','.')
1356
1356
  */
1357
1357
  ClusterName?: string
1358
1358
 
@@ -1422,7 +1422,7 @@ timeRollback,时间点回档
1422
1422
  TimeSpan?: number
1423
1423
 
1424
1424
  /**
1425
- * 包年包月购买时长单位
1425
+ * 包年包月购买时长单位,['s','d','m','y']
1426
1426
  */
1427
1427
  TimeUnit?: string
1428
1428
 
@@ -1610,7 +1610,7 @@ export interface ModifyDBInstanceSecurityGroupsRequest {
1610
1610
  InstanceId: string
1611
1611
 
1612
1612
  /**
1613
- * 要修改的安全组ID列表,一个或者多个安全组Id组成的数组。
1613
+ * 要修改的安全组ID列表,一个或者多个安全组ID组成的数组。
1614
1614
  */
1615
1615
  SecurityGroupIds: Array<string>
1616
1616
 
@@ -1834,7 +1834,7 @@ export interface GrantAccountPrivilegesResponse {
1834
1834
  */
1835
1835
  export interface ResumeServerlessRequest {
1836
1836
  /**
1837
- * 集群id
1837
+ * 集群ID
1838
1838
  */
1839
1839
  ClusterId: string
1840
1840
  }
@@ -2199,12 +2199,12 @@ export interface DescribeClusterParamLogsRequest {
2199
2199
  ClusterId: string
2200
2200
 
2201
2201
  /**
2202
- * 返回数量,默认为 20,最大值为 100
2202
+ * 返回数量,默认为 20,取值范围为(0,100]
2203
2203
  */
2204
2204
  Limit?: number
2205
2205
 
2206
2206
  /**
2207
- * 记录偏移量,默认值为0
2207
+ * 记录偏移量,默认值为0,取值范围为[0,INF)
2208
2208
  */
2209
2209
  Offset?: number
2210
2210
  }
@@ -2224,7 +2224,7 @@ export interface UpgradeInstanceRequest {
2224
2224
  Cpu: number
2225
2225
 
2226
2226
  /**
2227
- * 数据库内存
2227
+ * 数据库内存,单位GB
2228
2228
  */
2229
2229
  Memory: number
2230
2230
 
@@ -2416,12 +2416,12 @@ export interface AddInstancesRequest {
2416
2416
  Cpu: number
2417
2417
 
2418
2418
  /**
2419
- * 内存
2419
+ * 内存,单位为GB
2420
2420
  */
2421
2421
  Memory: number
2422
2422
 
2423
2423
  /**
2424
- * 新增只读实例数
2424
+ * 新增只读实例数,取值范围为(0,16]
2425
2425
  */
2426
2426
  ReadOnlyCount: number
2427
2427
 
@@ -2436,17 +2436,17 @@ export interface AddInstancesRequest {
2436
2436
  VpcId?: string
2437
2437
 
2438
2438
  /**
2439
- * 所属子网ID
2439
+ * 所属子网ID,如果设置了VpcId,则SubnetId必填
2440
2440
  */
2441
2441
  SubnetId?: string
2442
2442
 
2443
2443
  /**
2444
- * 新增RO组时使用的Port
2444
+ * 新增RO组时使用的Port,取值范围为[0,65535)
2445
2445
  */
2446
2446
  Port?: number
2447
2447
 
2448
2448
  /**
2449
- * 实例名称
2449
+ * 实例名称,字符串长度范围为[0,64)
2450
2450
  */
2451
2451
  InstanceName?: string
2452
2452
 
@@ -2462,7 +2462,7 @@ export interface AddInstancesRequest {
2462
2462
  DbType?: string
2463
2463
 
2464
2464
  /**
2465
- * 订单来源
2465
+ * 订单来源,字符串长度范围为[0,64)
2466
2466
  */
2467
2467
  OrderSource?: string
2468
2468
 
@@ -2899,7 +2899,7 @@ export interface DisassociateSecurityGroupsRequest {
2899
2899
  InstanceIds: Array<string>
2900
2900
 
2901
2901
  /**
2902
- * 要修改的安全组ID列表,一个或者多个安全组Id组成的数组。
2902
+ * 要修改的安全组ID列表,一个或者多个安全组ID组成的数组。
2903
2903
  */
2904
2904
  SecurityGroupIds: Array<string>
2905
2905
 
@@ -32,6 +32,7 @@ import {
32
32
  ActiveHourDCDBInstanceResponse,
33
33
  DescribeDCDBPriceResponse,
34
34
  AssociateSecurityGroupsRequest,
35
+ TerminateDedicatedDBInstanceResponse,
35
36
  FlushBinlogResponse,
36
37
  DescribeDBSecurityGroupsResponse,
37
38
  CancelDcnJobResponse,
@@ -97,6 +98,7 @@ import {
97
98
  DescribeDatabaseTableRequest,
98
99
  DescribeDCDBInstanceNodeInfoResponse,
99
100
  KillSessionRequest,
101
+ TerminateDedicatedDBInstanceRequest,
100
102
  DescribeDatabaseObjectsResponse,
101
103
  ModifyDBInstanceNameRequest,
102
104
  DescribeDcnDetailResponse,
@@ -688,6 +690,16 @@ export class Client extends AbstractClient {
688
690
  return this.request("CancelDcnJob", req, cb)
689
691
  }
690
692
 
693
+ /**
694
+ * 本接口(IsolateDedicatedDBInstance)用于销毁已隔离的独享分布式数据库实例。
695
+ */
696
+ async TerminateDedicatedDBInstance(
697
+ req: TerminateDedicatedDBInstanceRequest,
698
+ cb?: (error: string, rep: TerminateDedicatedDBInstanceResponse) => void
699
+ ): Promise<TerminateDedicatedDBInstanceResponse> {
700
+ return this.request("TerminateDedicatedDBInstance", req, cb)
701
+ }
702
+
691
703
  /**
692
704
  * 本接口(CloneAccount)用于克隆实例账户。
693
705
  */
@@ -278,6 +278,21 @@ export interface AssociateSecurityGroupsRequest {
278
278
  InstanceIds: Array<string>
279
279
  }
280
280
 
281
+ /**
282
+ * TerminateDedicatedDBInstance返回参数结构体
283
+ */
284
+ export interface TerminateDedicatedDBInstanceResponse {
285
+ /**
286
+ * 异步流程Id
287
+ */
288
+ FlowId: number
289
+
290
+ /**
291
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
292
+ */
293
+ RequestId?: string
294
+ }
295
+
281
296
  /**
282
297
  * FlushBinlog返回参数结构体
283
298
  */
@@ -2178,6 +2193,16 @@ export interface KillSessionRequest {
2178
2193
  ShardSerialId?: string
2179
2194
  }
2180
2195
 
2196
+ /**
2197
+ * TerminateDedicatedDBInstance请求参数结构体
2198
+ */
2199
+ export interface TerminateDedicatedDBInstanceRequest {
2200
+ /**
2201
+ * 实例 Id,形如:dcdbt-ow728lmc。
2202
+ */
2203
+ InstanceId: string
2204
+ }
2205
+
2181
2206
  /**
2182
2207
  * DescribeDatabaseObjects返回参数结构体
2183
2208
  */