tencentcloud-sdk-nodejs 4.0.299 → 4.0.300

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 (63) hide show
  1. package/CHANGELOG.md +368 -0
  2. package/SERVICE_CHANGELOG.md +667 -123
  3. package/package.json +1 -1
  4. package/products.md +18 -18
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/ame/v20190916/ame_client.ts +1 -1
  7. package/src/services/api/v20201106/api_client.ts +13 -0
  8. package/src/services/api/v20201106/api_models.ts +45 -0
  9. package/src/services/apigateway/v20180808/apigateway_models.ts +5 -0
  10. package/src/services/cdb/v20170320/cdb_models.ts +6 -0
  11. package/src/services/clb/v20180317/clb_client.ts +20 -8
  12. package/src/services/clb/v20180317/clb_models.ts +25 -0
  13. package/src/services/cmq/v20190304/cmq_models.ts +94 -82
  14. package/src/services/dbbrain/v20210527/dbbrain_models.ts +5 -0
  15. package/src/services/emr/v20190103/emr_client.ts +1 -0
  16. package/src/services/emr/v20190103/emr_models.ts +46 -0
  17. package/src/services/ivld/v20210903/ivld_client.ts +78 -4
  18. package/src/services/ivld/v20210903/ivld_models.ts +156 -38
  19. package/src/services/lighthouse/v20200324/lighthouse_models.ts +6 -0
  20. package/src/services/mariadb/v20170312/mariadb_models.ts +6 -7
  21. package/src/services/mongodb/v20190725/mongodb_client.ts +72 -60
  22. package/src/services/mongodb/v20190725/mongodb_models.ts +1022 -997
  23. package/src/services/monitor/v20180724/monitor_models.ts +7 -0
  24. package/src/services/oceanus/v20190422/oceanus_models.ts +84 -2
  25. package/src/services/postgres/v20170312/postgres_client.ts +85 -37
  26. package/src/services/postgres/v20170312/postgres_models.ts +258 -84
  27. package/src/services/sslpod/v20190605/sslpod_models.ts +7 -1
  28. package/src/services/tdmq/v20200217/tdmq_models.ts +41 -1
  29. package/tencentcloud/common/sdk_version.d.ts +1 -1
  30. package/tencentcloud/common/sdk_version.js +1 -1
  31. package/tencentcloud/services/ame/v20190916/ame_client.d.ts +1 -1
  32. package/tencentcloud/services/ame/v20190916/ame_client.js +1 -1
  33. package/tencentcloud/services/api/v20201106/api_client.d.ts +5 -1
  34. package/tencentcloud/services/api/v20201106/api_client.js +6 -0
  35. package/tencentcloud/services/api/v20201106/api_models.d.ts +39 -0
  36. package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +4 -0
  37. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +5 -0
  38. package/tencentcloud/services/clb/v20180317/clb_client.d.ts +8 -4
  39. package/tencentcloud/services/clb/v20180317/clb_client.js +10 -4
  40. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +22 -0
  41. package/tencentcloud/services/cmq/v20190304/cmq_models.d.ts +89 -79
  42. package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +4 -0
  43. package/tencentcloud/services/emr/v20190103/emr_models.d.ts +39 -0
  44. package/tencentcloud/services/ivld/v20210903/ivld_client.d.ts +52 -2
  45. package/tencentcloud/services/ivld/v20210903/ivld_client.js +57 -1
  46. package/tencentcloud/services/ivld/v20210903/ivld_models.d.ts +134 -34
  47. package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +5 -0
  48. package/tencentcloud/services/mariadb/v20170312/mariadb_models.d.ts +5 -6
  49. package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +5 -1
  50. package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +6 -0
  51. package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +965 -943
  52. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +6 -0
  53. package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +68 -2
  54. package/tencentcloud/services/postgres/v20170312/postgres_client.d.ts +29 -13
  55. package/tencentcloud/services/postgres/v20170312/postgres_client.js +42 -18
  56. package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +219 -71
  57. package/tencentcloud/services/sslpod/v20190605/sslpod_models.d.ts +6 -1
  58. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +34 -1
  59. package/test/api.v20201106.test.js +10 -0
  60. package/test/clb.v20180317.test.js +12 -2
  61. package/test/ivld.v20210903.test.js +30 -0
  62. package/test/mongodb.v20190725.test.js +10 -0
  63. package/test/postgres.v20170312.test.js +58 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.299",
3
+ "version": "4.0.300",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
package/products.md CHANGED
@@ -5,13 +5,13 @@
5
5
  | advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2022-02-21 08:00:44 |
6
6
  | af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2022-02-21 08:00:45 |
7
7
  | afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2022-02-21 08:00:46 |
8
- | ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2022-02-28 08:05:12 |
8
+ | ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2022-03-03 08:00:14 |
9
9
  | ams | [音频内容检测](https://cloud.tencent.com/document/product/1219) | 2022-02-21 08:00:52 |
10
10
  | antiddos | [DDoS 防护](https://cloud.tencent.com/document/product/1021) | 2022-03-02 08:04:36 |
11
11
  | apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-02-21 08:01:03 |
12
12
  | ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-02-21 08:01:04 |
13
- | api | [云 API](https://cloud.tencent.com/document/product/1278) | 2022-02-21 08:01:06 |
14
- | apigateway | [API网关](https://cloud.tencent.com/document/product/628) | 2022-03-01 08:00:39 |
13
+ | api | [云 API](https://cloud.tencent.com/document/product/1278) | 2022-03-03 08:00:37 |
14
+ | apigateway | [API网关](https://cloud.tencent.com/document/product/628) | 2022-03-03 08:00:40 |
15
15
  | apm | [应用性能观测](https://cloud.tencent.com/document/product/1463) | 2022-02-21 08:01:18 |
16
16
  | as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2022-03-01 08:01:06 |
17
17
  | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2022-02-24 08:02:49 |
@@ -32,7 +32,7 @@
32
32
  | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2022-02-21 08:02:15 |
33
33
  | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2022-02-21 08:02:20 |
34
34
  | ccc | [云呼叫中心](https://cloud.tencent.com/document/product/679) | 2022-02-21 08:02:25 |
35
- | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2022-03-01 08:02:21 |
35
+ | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2022-03-03 08:02:04 |
36
36
  | cdn | [内容分发网络](https://cloud.tencent.com/document/product/228) | 2022-02-24 08:04:07 |
37
37
  | cds | [数据安全审计](https://cloud.tencent.com/document/product/856) | 2022-02-21 08:02:59 |
38
38
  | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2022-02-21 08:03:00 |
@@ -42,12 +42,12 @@
42
42
  | cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
43
43
  | cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
44
44
  | ckafka | [消息队列 Ckafka](https://cloud.tencent.com/document/product/597) | 2022-03-01 08:03:20 |
45
- | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2022-03-02 08:07:18 |
45
+ | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2022-03-03 08:03:01 |
46
46
  | cloudaudit | [云审计](https://cloud.tencent.com/document/product/629) | 2022-02-28 08:08:23 |
47
47
  | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2022-02-21 08:03:43 |
48
48
  | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2022-03-01 08:03:44 |
49
49
  | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2022-02-21 08:03:52 |
50
- | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2022-02-21 08:04:00 |
50
+ | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2022-03-03 08:03:36 |
51
51
  | cms | [内容安全](https://cloud.tencent.com/document/product) | 2020-10-29 08:03:08 |
52
52
  | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2022-02-25 08:06:26 |
53
53
  | cr | [金融联络机器人](https://cloud.tencent.com/document/product/656) | 2021-02-24 08:03:24 |
@@ -56,7 +56,7 @@
56
56
  | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
57
57
  | cynosdb | [云原生数据库 TDSQL-C](https://cloud.tencent.com/document/product/1003) | 2022-02-21 08:05:19 |
58
58
  | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2022-02-21 08:05:24 |
59
- | dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2022-02-21 08:05:37 |
59
+ | dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2022-03-03 08:04:55 |
60
60
  | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2022-02-21 08:05:42 |
61
61
  | dcdb | [分布式数据库 TDSQL](https://cloud.tencent.com/document/product/557) | 2022-03-01 08:05:34 |
62
62
  | dlc | [数据湖计算](https://cloud.tencent.com/document/product/1342) | 2022-03-01 08:05:44 |
@@ -72,7 +72,7 @@
72
72
  | ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2022-02-21 08:06:24 |
73
73
  | eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2022-02-24 08:07:37 |
74
74
  | eis | [企业集成服务](https://cloud.tencent.com/document/product/1270) | 2022-02-21 08:06:46 |
75
- | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2022-02-21 08:06:47 |
75
+ | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2022-03-03 08:06:04 |
76
76
  | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2022-02-21 08:06:51 |
77
77
  | ess | [电子签服务](https://cloud.tencent.com/document/product/1323) | 2022-02-25 16:43:22 |
78
78
  | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-02-21 08:06:54 |
@@ -99,19 +99,19 @@
99
99
  | iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2022-02-21 08:08:24 |
100
100
  | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2022-02-21 08:08:26 |
101
101
  | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2022-02-21 08:08:35 |
102
- | ivld | [视频智能标签](https://cloud.tencent.com/document/product/1509) | 2022-02-21 08:08:48 |
102
+ | ivld | [视频智能标签](https://cloud.tencent.com/document/product/1509) | 2022-03-02 12:16:47 |
103
103
  | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2022-02-21 08:08:51 |
104
- | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2022-02-23 08:09:41 |
104
+ | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2022-03-03 08:08:18 |
105
105
  | live | [云直播](https://cloud.tencent.com/document/product/267) | 2022-02-24 08:10:24 |
106
106
  | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-02-21 08:09:21 |
107
107
  | lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-02-21 08:09:21 |
108
- | mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2022-03-01 08:09:32 |
108
+ | mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2022-03-03 08:08:44 |
109
109
  | market | [云市场](https://cloud.tencent.com/document/product/306) | 2022-02-21 08:09:30 |
110
110
  | memcached | [云数据库 Memcached](https://cloud.tencent.com/document/product) | 2020-08-24 08:07:49 |
111
111
  | mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-02-21 08:09:31 |
112
112
  | mna | [移动网络加速](https://cloud.tencent.com/document/product/1385) | 2022-02-21 08:09:33 |
113
- | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2022-02-25 08:11:43 |
114
- | monitor | [云监控](https://cloud.tencent.com/document/product/248) | 2022-03-02 08:13:10 |
113
+ | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2022-03-03 08:08:57 |
114
+ | monitor | [云监控](https://cloud.tencent.com/document/product/248) | 2022-03-03 08:09:04 |
115
115
  | mps | [视频处理](https://cloud.tencent.com/document/product/862) | 2022-02-21 08:09:56 |
116
116
  | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2022-02-21 08:10:08 |
117
117
  | ms | [移动应用安全](https://cloud.tencent.com/document/product) | 2020-06-05 08:13:52 |
@@ -119,12 +119,12 @@
119
119
  | mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
120
120
  | nlp | [自然语言处理](https://cloud.tencent.com/document/product/271) | 2022-02-21 08:10:11 |
121
121
  | npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
122
- | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2022-02-24 08:11:34 |
122
+ | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2022-03-03 08:09:36 |
123
123
  | ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2022-02-21 08:10:18 |
124
124
  | organization | [企业组织](https://cloud.tencent.com/document/product/850) | 2022-02-21 08:10:28 |
125
125
  | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2022-02-21 08:10:29 |
126
126
  | pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2022-02-21 08:10:32 |
127
- | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2022-02-21 08:10:33 |
127
+ | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2022-03-03 08:10:01 |
128
128
  | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2022-02-21 08:10:41 |
129
129
  | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2022-02-21 08:10:44 |
130
130
  | redis | [云数据库 Redis](https://cloud.tencent.com/document/product/239) | 2022-02-21 08:10:46 |
@@ -141,7 +141,7 @@
141
141
  | sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2022-02-21 08:11:22 |
142
142
  | ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2022-02-21 08:11:34 |
143
143
  | ssl | [证书](https://cloud.tencent.com/document/product/400) | 2022-02-21 08:11:37 |
144
- | sslpod | [SSL 证书监控](https://cloud.tencent.com/document/product/1084) | 2022-02-21 08:11:41 |
144
+ | sslpod | [SSL 证书监控](https://cloud.tencent.com/document/product/1084) | 2022-03-03 08:11:12 |
145
145
  | ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2022-02-21 08:11:43 |
146
146
  | sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2022-02-21 08:11:46 |
147
147
  | taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2022-02-21 08:11:47 |
@@ -160,7 +160,7 @@
160
160
  | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2022-03-02 08:15:58 |
161
161
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2022-03-01 10:49:12 |
162
162
  | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2022-03-01 15:05:45 |
163
- | tdmq | [分布式消息队列](https://cloud.tencent.com/document/product/1179) | 2022-02-21 08:12:52 |
163
+ | tdmq | [分布式消息队列](https://cloud.tencent.com/document/product/1179) | 2022-03-03 08:12:23 |
164
164
  | tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2022-03-01 08:13:25 |
165
165
  | thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2022-02-21 08:13:08 |
166
166
  | tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
@@ -176,7 +176,7 @@
176
176
  | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2022-02-21 08:13:40 |
177
177
  | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2022-02-21 08:13:41 |
178
178
  | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2022-02-21 08:13:42 |
179
- | tse | [腾讯云微服务引擎](https://cloud.tencent.com/document/product/1364) | 2022-02-21 08:13:46 |
179
+ | tse | [腾讯云微服务引擎](https://cloud.tencent.com/document/product/1364) | 2022-03-03 08:13:19 |
180
180
  | tsf | [腾讯微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2022-03-01 08:14:14 |
181
181
  | tsw | [腾讯微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2022-02-21 08:14:10 |
182
182
  | tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2022-02-21 08:14:11 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.299"
1
+ export const sdkVersion = "4.0.300"
@@ -399,7 +399,7 @@ export class Client extends AbstractClient {
399
399
  }
400
400
 
401
401
  /**
402
- * 查询机器人列表,支持 Id、状态等过滤条件。
402
+ * 获取机器人列表,支持 Id、状态等过滤条件。
403
403
  */
404
404
  async DescribeKTVRobots(
405
405
  req: DescribeKTVRobotsRequest,
@@ -18,6 +18,9 @@
18
18
  import { AbstractClient } from "../../../common/abstract_client"
19
19
  import { ClientConfig } from "../../../common/interface"
20
20
  import {
21
+ RegionProduct,
22
+ DescribeProductsRequest,
23
+ DescribeProductsResponse,
21
24
  ZoneInfo,
22
25
  DescribeZonesRequest,
23
26
  DescribeZonesResponse,
@@ -35,6 +38,16 @@ export class Client extends AbstractClient {
35
38
  super("api.tencentcloudapi.com", "2020-11-06", clientConfig)
36
39
  }
37
40
 
41
+ /**
42
+ * 本接口(DescribeProducts)用于查询各个支持地域列表查询的产品信息。
43
+ */
44
+ async DescribeProducts(
45
+ req: DescribeProductsRequest,
46
+ cb?: (error: string, rep: DescribeProductsResponse) => void
47
+ ): Promise<DescribeProductsResponse> {
48
+ return this.request("DescribeProducts", req, cb)
49
+ }
50
+
38
51
  /**
39
52
  * 本接口(DescribeRegions)用于查询各个产品支持地域信息。
40
53
  */
@@ -15,6 +15,51 @@
15
15
  * under the License.
16
16
  */
17
17
 
18
+ /**
19
+ * 地域管理系统支持的产品信息
20
+ */
21
+ export interface RegionProduct {
22
+ /**
23
+ * 产品名称,如cvm
24
+ */
25
+ Name: string
26
+ }
27
+
28
+ /**
29
+ * DescribeProducts请求参数结构体
30
+ */
31
+ export interface DescribeProductsRequest {
32
+ /**
33
+ * 返回数量,默认为 20,最大值为 100。
34
+ */
35
+ Limit?: number
36
+
37
+ /**
38
+ * 偏移量,默认为 0。
39
+ */
40
+ Offset?: number
41
+ }
42
+
43
+ /**
44
+ * DescribeProducts返回参数结构体
45
+ */
46
+ export interface DescribeProductsResponse {
47
+ /**
48
+ * 产品详细信息列表。
49
+ */
50
+ Products: Array<RegionProduct>
51
+
52
+ /**
53
+ * 产品总数量。
54
+ */
55
+ TotalCount: number
56
+
57
+ /**
58
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
59
+ */
60
+ RequestId?: string
61
+ }
62
+
18
63
  /**
19
64
  * 可用区信息
20
65
  */
@@ -2951,6 +2951,11 @@ export interface CreateServiceRequest {
2951
2951
  * 独享实例id
2952
2952
  */
2953
2953
  InstanceId?: string
2954
+
2955
+ /**
2956
+ * vpc属性
2957
+ */
2958
+ UniqVpcId?: string
2954
2959
  }
2955
2960
 
2956
2961
  /**
@@ -1233,6 +1233,12 @@ export interface AuditPolicy {
1233
1233
  注意:此字段可能返回 null,表示取不到有效值。
1234
1234
  */
1235
1235
  RuleName: string
1236
+
1237
+ /**
1238
+ * 数据库实例名称
1239
+ 注意:此字段可能返回 null,表示取不到有效值。
1240
+ */
1241
+ InstanceName: string
1236
1242
  }
1237
1243
 
1238
1244
  /**
@@ -179,6 +179,7 @@ import {
179
179
  ModifyTargetGroupAttributeRequest,
180
180
  ExclusiveCluster,
181
181
  DeregisterTargetsRequest,
182
+ ModifyLoadBalancerMixIpTargetResponse,
182
183
  InternetAccessible,
183
184
  CreateLoadBalancerSnatIpsRequest,
184
185
  ModifyTargetGroupInstancesWeightRequest,
@@ -190,6 +191,7 @@ import {
190
191
  RuleInput,
191
192
  TagInfo,
192
193
  SnatIp,
194
+ ModifyLoadBalancerMixIpTargetRequest,
193
195
  DescribeBlockIPTaskResponse,
194
196
  DescribeResourcesRequest,
195
197
  DescribeClassicalLBListenersResponse,
@@ -351,14 +353,13 @@ export class Client extends AbstractClient {
351
353
  }
352
354
 
353
355
  /**
354
- * 注册服务器到目标组。
355
- 本接口为异步接口,本接口返回成功后需以返回的 RequestID 为入参,调用 DescribeTaskStatus 接口查询本次任务是否成功。
356
- */
357
- async RegisterTargetGroupInstances(
358
- req: RegisterTargetGroupInstancesRequest,
359
- cb?: (error: string, rep: RegisterTargetGroupInstancesResponse) => void
360
- ): Promise<RegisterTargetGroupInstancesResponse> {
361
- return this.request("RegisterTargetGroupInstances", req, cb)
356
+ * 修改IPv6FullChain负载均衡7层监听器支持混绑IPv4/IPv6目标特性。
357
+ */
358
+ async ModifyLoadBalancerMixIpTarget(
359
+ req: ModifyLoadBalancerMixIpTargetRequest,
360
+ cb?: (error: string, rep: ModifyLoadBalancerMixIpTargetResponse) => void
361
+ ): Promise<ModifyLoadBalancerMixIpTargetResponse> {
362
+ return this.request("ModifyLoadBalancerMixIpTarget", req, cb)
362
363
  }
363
364
 
364
365
  /**
@@ -479,6 +480,17 @@ export class Client extends AbstractClient {
479
480
  return this.request("ModifyBlockIPList", req, cb)
480
481
  }
481
482
 
483
+ /**
484
+ * 注册服务器到目标组。
485
+ 本接口为异步接口,本接口返回成功后需以返回的 RequestID 为入参,调用 DescribeTaskStatus 接口查询本次任务是否成功。
486
+ */
487
+ async RegisterTargetGroupInstances(
488
+ req: RegisterTargetGroupInstancesRequest,
489
+ cb?: (error: string, rep: RegisterTargetGroupInstancesResponse) => void
490
+ ): Promise<RegisterTargetGroupInstancesResponse> {
491
+ return this.request("RegisterTargetGroupInstances", req, cb)
492
+ }
493
+
482
494
  /**
483
495
  * DeregisterTargetsFromClassicalLB 接口用于解绑负载均衡后端服务。本接口为异步接口,接口返回成功后,需以返回的 RequestId 为入参,调用 DescribeTaskStatus 接口查询本次任务是否成功。
484
496
  */
@@ -4341,6 +4341,16 @@ export interface DeregisterTargetsRequest {
4341
4341
  Url?: string
4342
4342
  }
4343
4343
 
4344
+ /**
4345
+ * ModifyLoadBalancerMixIpTarget返回参数结构体
4346
+ */
4347
+ export interface ModifyLoadBalancerMixIpTargetResponse {
4348
+ /**
4349
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4350
+ */
4351
+ RequestId?: string
4352
+ }
4353
+
4344
4354
  /**
4345
4355
  * 网络计费模式,最大出带宽
4346
4356
  */
@@ -4599,6 +4609,21 @@ export interface SnatIp {
4599
4609
  Ip?: string
4600
4610
  }
4601
4611
 
4612
+ /**
4613
+ * ModifyLoadBalancerMixIpTarget请求参数结构体
4614
+ */
4615
+ export interface ModifyLoadBalancerMixIpTargetRequest {
4616
+ /**
4617
+ * 负载均衡实例ID数组。
4618
+ */
4619
+ LoadBalancerIds: Array<string>
4620
+
4621
+ /**
4622
+ * 开启/关闭IPv6FullChain负载均衡7层监听器支持混绑IPv4/IPv6目标特性。
4623
+ */
4624
+ MixIpTarget: boolean
4625
+ }
4626
+
4602
4627
  /**
4603
4628
  * DescribeBlockIPTask返回参数结构体
4604
4629
  */