tencentcloud-sdk-nodejs 4.0.649 → 4.0.650

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 (67) hide show
  1. package/CHANGELOG.md +261 -0
  2. package/SERVICE_CHANGELOG.md +395 -69
  3. package/package.json +1 -1
  4. package/products.md +17 -17
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/antiddos/v20200309/antiddos_client.ts +13 -1
  7. package/src/services/antiddos/v20200309/antiddos_models.ts +61 -8
  8. package/src/services/asr/v20190614/asr_models.ts +5 -3
  9. package/src/services/cdb/v20170320/cdb_models.ts +7 -7
  10. package/src/services/cls/v20201016/cls_client.ts +45 -8
  11. package/src/services/cls/v20201016/cls_models.ts +222 -17
  12. package/src/services/cme/v20191029/cme_models.ts +3 -3
  13. package/src/services/dnspod/v20210323/dnspod_client.ts +15 -3
  14. package/src/services/dnspod/v20210323/dnspod_models.ts +196 -65
  15. package/src/services/ess/v20201111/ess_client.ts +4 -2
  16. package/src/services/ess/v20201111/ess_models.ts +10 -13
  17. package/src/services/essbasic/v20210526/essbasic_models.ts +4 -4
  18. package/src/services/iotvideo/v20211125/iotvideo_client.ts +30 -5
  19. package/src/services/iotvideo/v20211125/iotvideo_models.ts +153 -45
  20. package/src/services/lcic/v20220817/lcic_models.ts +20 -0
  21. package/src/services/live/v20180801/live_models.ts +1 -0
  22. package/src/services/ms/v20180408/ms_client.ts +116 -26
  23. package/src/services/ms/v20180408/ms_models.ts +1060 -117
  24. package/src/services/ocr/v20181119/ocr_client.ts +6 -1
  25. package/src/services/ocr/v20181119/ocr_models.ts +32 -3
  26. package/src/services/pts/v20210728/pts_models.ts +1 -1
  27. package/src/services/ssa/v20180608/ssa_models.ts +10 -10
  28. package/src/services/tdmq/v20200217/tdmq_models.ts +20 -16
  29. package/src/services/vod/v20180717/vod_models.ts +4 -3
  30. package/tencentcloud/common/sdk_version.d.ts +1 -1
  31. package/tencentcloud/common/sdk_version.js +1 -1
  32. package/tencentcloud/services/antiddos/v20200309/antiddos_client.d.ts +5 -1
  33. package/tencentcloud/services/antiddos/v20200309/antiddos_client.js +6 -0
  34. package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +59 -8
  35. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +5 -3
  36. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +7 -7
  37. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +15 -3
  38. package/tencentcloud/services/cls/v20201016/cls_client.js +21 -3
  39. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +215 -17
  40. package/tencentcloud/services/cme/v20191029/cme_models.d.ts +3 -3
  41. package/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +5 -1
  42. package/tencentcloud/services/dnspod/v20210323/dnspod_client.js +6 -0
  43. package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +194 -65
  44. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +3 -1
  45. package/tencentcloud/services/ess/v20201111/ess_client.js +3 -1
  46. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +10 -13
  47. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +4 -4
  48. package/tencentcloud/services/iotvideo/v20211125/iotvideo_client.d.ts +9 -1
  49. package/tencentcloud/services/iotvideo/v20211125/iotvideo_client.js +12 -0
  50. package/tencentcloud/services/iotvideo/v20211125/iotvideo_models.d.ts +147 -44
  51. package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +20 -0
  52. package/tencentcloud/services/live/v20180801/live_models.d.ts +1 -0
  53. package/tencentcloud/services/ms/v20180408/ms_client.d.ts +37 -7
  54. package/tencentcloud/services/ms/v20180408/ms_client.js +51 -9
  55. package/tencentcloud/services/ms/v20180408/ms_models.d.ts +1013 -94
  56. package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +6 -1
  57. package/tencentcloud/services/ocr/v20181119/ocr_client.js +6 -1
  58. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +32 -3
  59. package/tencentcloud/services/pts/v20210728/pts_models.d.ts +1 -1
  60. package/tencentcloud/services/ssa/v20180608/ssa_models.d.ts +10 -10
  61. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +20 -16
  62. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +4 -3
  63. package/test/antiddos.v20200309.test.js +10 -0
  64. package/test/cls.v20201016.test.js +32 -2
  65. package/test/dnspod.v20210323.test.js +10 -0
  66. package/test/iotvideo.v20211125.test.js +20 -0
  67. package/test/ms.v20180408.test.js +66 -6
package/products.md CHANGED
@@ -10,14 +10,14 @@
10
10
  | ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-05-26 01:01:42 |
11
11
  | ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2023-05-18 01:01:48 |
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) | 2023-07-24 01:06:33 |
13
+ | antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/297) | 2023-07-26 01:01:23 |
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 |
17
17
  | apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2023-07-20 01:09:29 |
18
18
  | apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2023-07-18 01:07:24 |
19
19
  | as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2023-07-19 01:07:14 |
20
- | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2023-07-25 10:38:43 |
20
+ | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2023-07-26 01:04:04 |
21
21
  | asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2023-05-18 01:04:02 |
22
22
  | ba | [网站备案](https://cloud.tencent.com/document/product/243) | 2023-05-18 01:04:06 |
23
23
  | batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2023-07-19 01:07:48 |
@@ -41,7 +41,7 @@
41
41
  | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2023-05-18 01:07:39 |
42
42
  | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2023-07-24 01:12:51 |
43
43
  | ccc | [云呼叫中心](https://cloud.tencent.com/document/product/679) | 2023-06-30 01:11:07 |
44
- | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2023-07-24 01:13:25 |
44
+ | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2023-07-26 01:07:06 |
45
45
  | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2023-06-08 01:10:03 |
46
46
  | cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2023-07-21 01:11:26 |
47
47
  | cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2023-05-18 01:10:41 |
@@ -59,8 +59,8 @@
59
59
  | cloudaudit | [云审计](https://cloud.tencent.com/document/product/629) | 2023-05-18 01:13:28 |
60
60
  | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2023-05-18 01:13:36 |
61
61
  | cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2023-07-24 01:17:40 |
62
- | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2023-07-20 01:17:22 |
63
- | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2023-07-21 01:14:51 |
62
+ | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2023-07-26 01:10:44 |
63
+ | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2023-07-26 01:11:19 |
64
64
  | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2023-05-18 01:14:51 |
65
65
  | cms | [内容安全](https://cloud.tencent.com/document/product/669) | 2023-07-11 01:11:56 |
66
66
  | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2023-07-10 01:16:33 |
@@ -79,7 +79,7 @@
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
81
  | dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2023-07-21 01:20:29 |
82
- | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2023-07-10 01:22:33 |
82
+ | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2023-07-26 01:17:12 |
83
83
  | domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2023-07-24 01:25:15 |
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 |
@@ -93,8 +93,8 @@
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-25 10:56:12 |
95
95
  | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2023-07-12 01:24:00 |
96
- | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2023-07-25 10:56:49 |
97
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2023-07-25 10:58:46 |
96
+ | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2023-07-26 01:19:51 |
97
+ | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2023-07-26 01:20:16 |
98
98
  | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2023-07-11 01:24:18 |
99
99
  | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2023-07-25 10:59:09 |
100
100
  | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2023-07-14 14:55:45 |
@@ -119,15 +119,15 @@
119
119
  | iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2023-06-14 01:27:08 |
120
120
  | iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2023-07-19 01:27:32 |
121
121
  | iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
122
- | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2023-07-21 01:27:55 |
122
+ | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2023-07-26 01:24:02 |
123
123
  | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2023-05-18 01:34:37 |
124
124
  | irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2023-06-13 01:25:28 |
125
125
  | ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2023-05-18 01:35:21 |
126
126
  | keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2023-07-19 01:29:34 |
127
127
  | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2023-05-18 01:35:58 |
128
- | lcic | [低代码互动课堂](https://cloud.tencent.com/document/product/1639) | 2023-07-21 01:29:56 |
128
+ | lcic | [低代码互动课堂](https://cloud.tencent.com/document/product/1639) | 2023-07-26 01:25:48 |
129
129
  | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2023-07-25 11:04:43 |
130
- | live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2023-07-19 01:30:48 |
130
+ | live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2023-07-26 01:26:36 |
131
131
  | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
132
132
  | lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
133
133
  | mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2023-07-17 10:16:02 |
@@ -141,20 +141,20 @@
141
141
  | monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2023-07-19 01:32:20 |
142
142
  | mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2023-07-20 01:35:35 |
143
143
  | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2023-05-18 01:42:01 |
144
- | ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2023-06-15 01:29:09 |
144
+ | ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2023-07-26 01:29:37 |
145
145
  | msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2023-05-18 01:42:21 |
146
146
  | mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
147
147
  | nlp | [NLP 服务](https://cloud.tencent.com/document/product/271) | 2023-07-18 01:40:17 |
148
148
  | npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
149
149
  | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2023-07-17 01:29:44 |
150
- | ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2023-07-24 01:39:33 |
150
+ | ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2023-07-26 01:30:16 |
151
151
  | omics | [腾讯健康组学平台](https://cloud.tencent.com/document/product/1643) | 2023-07-20 01:37:20 |
152
152
  | organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2023-06-30 01:38:16 |
153
153
  | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2023-07-20 18:40:49 |
154
154
  | pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2023-05-18 01:44:14 |
155
155
  | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2023-07-21 01:35:07 |
156
156
  | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2023-07-06 01:39:21 |
157
- | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2023-07-21 01:35:57 |
157
+ | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2023-07-26 01:31:49 |
158
158
  | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2023-05-18 01:45:58 |
159
159
  | redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2023-07-18 01:42:27 |
160
160
  | region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2023-07-07 01:46:17 |
@@ -170,7 +170,7 @@
170
170
  | soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2023-07-10 01:39:48 |
171
171
  | solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
172
172
  | sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2023-07-17 01:33:25 |
173
- | ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-06-14 01:38:59 |
173
+ | ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-07-26 01:34:12 |
174
174
  | ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2023-07-19 01:38:38 |
175
175
  | sslpod | [证书监控 SSLPod](https://cloud.tencent.com/document/product/1084) | 2023-05-18 01:49:36 |
176
176
  | ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2023-05-18 01:49:41 |
@@ -194,7 +194,7 @@
194
194
  | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2023-07-06 01:44:39 |
195
195
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2023-06-21 01:36:25 |
196
196
  | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2023-07-24 01:49:20 |
197
- | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2023-07-17 01:38:17 |
197
+ | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2023-07-26 01:38:18 |
198
198
  | tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2023-05-18 01:55:50 |
199
199
  | tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2023-05-22 02:01:01 |
200
200
  | teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2023-07-24 01:50:27 |
@@ -223,7 +223,7 @@
223
223
  | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2023-05-18 02:04:06 |
224
224
  | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2023-05-18 02:04:19 |
225
225
  | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2023-05-18 02:04:23 |
226
- | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2023-07-25 11:24:22 |
226
+ | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2023-07-26 01:43:57 |
227
227
  | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2023-07-21 01:49:21 |
228
228
  | vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2023-07-18 01:58:58 |
229
229
  | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2023-07-25 11:27:24 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.649"
1
+ export const sdkVersion = "4.0.650"
@@ -60,6 +60,7 @@ import {
60
60
  CreateNewL7RulesResponse,
61
61
  CreateDDoSAIRequest,
62
62
  DescribeListProtectThresholdConfigRequest,
63
+ DescribeListWaterPrintConfigResponse,
63
64
  ModifyNewDomainRulesResponse,
64
65
  CcBlackWhiteIpPolicy,
65
66
  DescribeDDoSConnectLimitListResponse,
@@ -243,6 +244,7 @@ import {
243
244
  DeleteCCRequestLimitPolicyResponse,
244
245
  CreateCcBlackWhiteIpListRequest,
245
246
  BGPInstance,
247
+ DescribeBizMonitorTrendResponse,
246
248
  DescribeListPortAclListResponse,
247
249
  CCPrecisionPlyRecord,
248
250
  DescribeCCPrecisionPlyListResponse,
@@ -250,7 +252,7 @@ import {
250
252
  DescribeListPortAclListRequest,
251
253
  OverviewDDoSEvent,
252
254
  DescribeCCLevelPolicyResponse,
253
- DescribeListWaterPrintConfigResponse,
255
+ DescribeBizMonitorTrendRequest,
254
256
  DescribeOverviewDDoSTrendResponse,
255
257
  BGPInstanceUsages,
256
258
  DeleteDDoSSpeedLimitConfigResponse,
@@ -865,6 +867,16 @@ export class Client extends AbstractClient {
865
867
  return this.request("ModifyCcBlackWhiteIpList", req, cb)
866
868
  }
867
869
 
870
+ /**
871
+ * 获取高防IP业务监控流量曲线
872
+ */
873
+ async DescribeBizMonitorTrend(
874
+ req: DescribeBizMonitorTrendRequest,
875
+ cb?: (error: string, rep: DescribeBizMonitorTrendResponse) => void
876
+ ): Promise<DescribeBizMonitorTrendResponse> {
877
+ return this.request("DescribeBizMonitorTrend", req, cb)
878
+ }
879
+
868
880
  /**
869
881
  * 绑定IP到高防包实例,支持独享包、共享包;需要注意的是此接口绑定或解绑IP是异步接口,当处于绑定或解绑中时,则不允许再进行绑定或解绑,需要等待当前绑定或解绑完成。
870
882
  */
@@ -922,6 +922,24 @@ export interface DescribeListProtectThresholdConfigRequest {
922
922
  FilterProtocol?: string
923
923
  }
924
924
 
925
+ /**
926
+ * DescribeListWaterPrintConfig返回参数结构体
927
+ */
928
+ export interface DescribeListWaterPrintConfigResponse {
929
+ /**
930
+ * 总数
931
+ */
932
+ Total: number
933
+ /**
934
+ * 水印配置列表
935
+ */
936
+ ConfigList: Array<WaterPrintRelation>
937
+ /**
938
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
939
+ */
940
+ RequestId?: string
941
+ }
942
+
925
943
  /**
926
944
  * ModifyNewDomainRules返回参数结构体
927
945
  */
@@ -5159,6 +5177,29 @@ export interface BGPInstance {
5159
5177
  BasicPlusFlag?: number
5160
5178
  }
5161
5179
 
5180
+ /**
5181
+ * DescribeBizMonitorTrend返回参数结构体
5182
+ */
5183
+ export interface DescribeBizMonitorTrendResponse {
5184
+ /**
5185
+ * 曲线图各个时间点的值
5186
+ */
5187
+ DataList?: Array<number>
5188
+ /**
5189
+ * 统计纬度
5190
+ */
5191
+ MetricName?: string
5192
+ /**
5193
+ * 返回DataList中的最大值
5194
+ 注意:此字段可能返回 null,表示取不到有效值。
5195
+ */
5196
+ MaxData?: number
5197
+ /**
5198
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5199
+ */
5200
+ RequestId?: string
5201
+ }
5202
+
5162
5203
  /**
5163
5204
  * DescribeListPortAclList返回参数结构体
5164
5205
  */
@@ -5352,21 +5393,33 @@ export interface DescribeCCLevelPolicyResponse {
5352
5393
  }
5353
5394
 
5354
5395
  /**
5355
- * DescribeListWaterPrintConfig返回参数结构体
5396
+ * DescribeBizMonitorTrend请求参数结构体
5356
5397
  */
5357
- export interface DescribeListWaterPrintConfigResponse {
5398
+ export interface DescribeBizMonitorTrendRequest {
5358
5399
  /**
5359
- * 总数
5400
+ * 大禹子产品代号(bgpip表示高防IP)
5360
5401
  */
5361
- Total: number
5402
+ Business: string
5362
5403
  /**
5363
- * 水印配置列表
5404
+ * 统计开始时间。 例:“2020-09-22 00:00:00”
5364
5405
  */
5365
- ConfigList: Array<WaterPrintRelation>
5406
+ StartTime: string
5366
5407
  /**
5367
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5408
+ * 统计结束时间。 例:“2020-09-22 00:00:00”
5368
5409
  */
5369
- RequestId?: string
5410
+ EndTime: string
5411
+ /**
5412
+ * 资源实例ID
5413
+ */
5414
+ Id: string
5415
+ /**
5416
+ * 统计纬度,可取值intraffic outtraffic inpkg outpkg
5417
+ */
5418
+ MetricName: string
5419
+ /**
5420
+ * 时间粒度 60 300 3600 21600 86400
5421
+ */
5422
+ Period: number
5370
5423
  }
5371
5424
 
5372
5425
  /**
@@ -216,10 +216,12 @@ export interface CreateAsyncRecognitionTaskRequest {
216
216
  export interface HotWord {
217
217
  /**
218
218
  * 热词
219
+ 注意:此字段可能返回 null,表示取不到有效值。
219
220
  */
220
221
  Word: string
221
222
  /**
222
223
  * 权重
224
+ 注意:此字段可能返回 null,表示取不到有效值。
223
225
  */
224
226
  Weight: number
225
227
  }
@@ -567,7 +569,7 @@ export interface DownloadCustomizationResponse {
567
569
  /**
568
570
  * 下载地址
569
571
  */
570
- DownloadUrl: string
572
+ DownloadUrl?: string
571
573
  /**
572
574
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
573
575
  */
@@ -946,7 +948,7 @@ export interface UpdateAsrVocabResponse {
946
948
  /**
947
949
  * 热词表ID
948
950
  */
949
- VocabId: string
951
+ VocabId?: string
950
952
  /**
951
953
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
952
954
  */
@@ -1211,7 +1213,7 @@ export interface ModifyCustomizationStateResponse {
1211
1213
  /**
1212
1214
  * 自学习模型ID
1213
1215
  */
1214
- ModelId: string
1216
+ ModelId?: string
1215
1217
  /**
1216
1218
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1217
1219
  */
@@ -3360,34 +3360,34 @@ export interface DescribeBackupOverviewResponse {
3360
3360
  /**
3361
3361
  * 用户在当前地域备份的总个数(包含数据备份和日志备份)。
3362
3362
  */
3363
- BackupCount: number
3363
+ BackupCount?: number
3364
3364
  /**
3365
3365
  * 用户在当前地域备份的总容量
3366
3366
  */
3367
- BackupVolume: number
3367
+ BackupVolume?: number
3368
3368
  /**
3369
3369
  * 用户在当前地域备份的计费容量,即超出赠送容量的部分。
3370
3370
  */
3371
- BillingVolume: number
3371
+ BillingVolume?: number
3372
3372
  /**
3373
3373
  * 用户在当前地域获得的赠送备份容量。
3374
3374
  */
3375
- FreeVolume: number
3375
+ FreeVolume?: number
3376
3376
  /**
3377
3377
  * 用户在当前地域的异地备份总容量。
3378
3378
  注意:此字段可能返回 null,表示取不到有效值。
3379
3379
  */
3380
- RemoteBackupVolume: number
3380
+ RemoteBackupVolume?: number
3381
3381
  /**
3382
3382
  * 归档备份容量,包含数据备份以及日志备份。
3383
3383
  注意:此字段可能返回 null,表示取不到有效值。
3384
3384
  */
3385
- BackupArchiveVolume: number
3385
+ BackupArchiveVolume?: number
3386
3386
  /**
3387
3387
  * 标准存储备份容量,包含数据备份以及日志备份。
3388
3388
  注意:此字段可能返回 null,表示取不到有效值。
3389
3389
  */
3390
- BackupStandbyVolume: number
3390
+ BackupStandbyVolume?: number
3391
3391
  /**
3392
3392
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3393
3393
  */
@@ -26,7 +26,7 @@ import {
26
26
  DescribeLogHistogramRequest,
27
27
  DescribeLogContextRequest,
28
28
  DeleteShipperRequest,
29
- ScheduledSqlResouceInfo,
29
+ DeleteScheduledSqlRequest,
30
30
  DynamicIndex,
31
31
  DeleteLogsetResponse,
32
32
  ParquetKeyInfo,
@@ -57,15 +57,19 @@ import {
57
57
  ContainerWorkLoadInfo,
58
58
  DescribeConfigExtrasResponse,
59
59
  ModifyDataTransformRequest,
60
+ DescribeScheduledSqlInfoResponse,
60
61
  CallBackInfo,
61
62
  OpenKafkaConsumerResponse,
62
63
  AlarmTargetInfo,
64
+ ScheduledSqlResouceInfo,
63
65
  DescribeIndexRequest,
66
+ ModifyScheduledSqlResponse,
64
67
  DescribeConfigsResponse,
65
68
  DeleteMachineGroupInfoRequest,
66
69
  CreateLogsetResponse,
67
70
  DeleteMachineGroupResponse,
68
71
  KafkaProtocolInfo,
72
+ ScheduledSqlTaskInfo,
69
73
  DescribeCosRechargesRequest,
70
74
  MetaTagInfo,
71
75
  CreateCosRechargeRequest,
@@ -91,6 +95,7 @@ import {
91
95
  CreateAlarmRequest,
92
96
  DeleteExportResponse,
93
97
  PartitionInfo,
98
+ DeleteScheduledSqlResponse,
94
99
  AlertHistoryRecord,
95
100
  ExcludePathInfo,
96
101
  FilterRuleInfo,
@@ -112,7 +117,7 @@ import {
112
117
  DescribeExportsRequest,
113
118
  AlarmTarget,
114
119
  CreateKafkaRechargeResponse,
115
- OpenKafkaConsumerRequest,
120
+ ModifyScheduledSqlRequest,
116
121
  DeleteConfigResponse,
117
122
  ModifyIndexResponse,
118
123
  DeleteConsumerRequest,
@@ -177,6 +182,7 @@ import {
177
182
  MultiTopicSearchInformation,
178
183
  AlarmNotice,
179
184
  ModifyConfigResponse,
185
+ OpenKafkaConsumerRequest,
180
186
  ModifyKafkaRechargeResponse,
181
187
  ModifyAlarmNoticeResponse,
182
188
  DataTransformTaskInfo,
@@ -202,6 +208,7 @@ import {
202
208
  Ckafka,
203
209
  DescribeMachinesRequest,
204
210
  DeleteAlarmNoticeRequest,
211
+ DescribeScheduledSqlInfoRequest,
205
212
  DeleteLogsetRequest,
206
213
  MachineInfo,
207
214
  ModifyLogsetResponse,
@@ -554,6 +561,16 @@ cls.pb.cc cls.pb.h cls.proto
554
561
  return this.request("CreateIndex", req, cb)
555
562
  }
556
563
 
564
+ /**
565
+ * 本接口用于获取ScheduledSql任务列表
566
+ */
567
+ async DescribeScheduledSqlInfo(
568
+ req: DescribeScheduledSqlInfoRequest,
569
+ cb?: (error: string, rep: DescribeScheduledSqlInfoResponse) => void
570
+ ): Promise<DescribeScheduledSqlInfoResponse> {
571
+ return this.request("DescribeScheduledSqlInfo", req, cb)
572
+ }
573
+
557
574
  /**
558
575
  * 删除采集规则配置
559
576
  */
@@ -855,13 +872,13 @@ cls.pb.cc cls.pb.h cls.proto
855
872
  }
856
873
 
857
874
  /**
858
- * 该接口用于修改通知渠道组
875
+ * 本接口用于删除ScheduledSql任务
859
876
  */
860
- async ModifyAlarmNotice(
861
- req: ModifyAlarmNoticeRequest,
862
- cb?: (error: string, rep: ModifyAlarmNoticeResponse) => void
863
- ): Promise<ModifyAlarmNoticeResponse> {
864
- return this.request("ModifyAlarmNotice", req, cb)
877
+ async DeleteScheduledSql(
878
+ req: DeleteScheduledSqlRequest,
879
+ cb?: (error: string, rep: DeleteScheduledSqlResponse) => void
880
+ ): Promise<DeleteScheduledSqlResponse> {
881
+ return this.request("DeleteScheduledSql", req, cb)
865
882
  }
866
883
 
867
884
  /**
@@ -1024,6 +1041,16 @@ cls.pb.cc cls.pb.h cls.proto
1024
1041
  return this.request("DescribeConsumer", req, cb)
1025
1042
  }
1026
1043
 
1044
+ /**
1045
+ * 该接口用于修改通知渠道组
1046
+ */
1047
+ async ModifyAlarmNotice(
1048
+ req: ModifyAlarmNoticeRequest,
1049
+ cb?: (error: string, rep: ModifyAlarmNoticeResponse) => void
1050
+ ): Promise<ModifyAlarmNoticeResponse> {
1051
+ return this.request("ModifyAlarmNotice", req, cb)
1052
+ }
1053
+
1027
1054
  /**
1028
1055
  * 获取采集规则配置
1029
1056
  */
@@ -1154,6 +1181,16 @@ cls.pb.cc cls.pb.h cls.proto
1154
1181
  return this.request("CreateExport", req, cb)
1155
1182
  }
1156
1183
 
1184
+ /**
1185
+ * 本接口用于修改ScheduledSql任务
1186
+ */
1187
+ async ModifyScheduledSql(
1188
+ req: ModifyScheduledSqlRequest,
1189
+ cb?: (error: string, rep: ModifyScheduledSqlResponse) => void
1190
+ ): Promise<ModifyScheduledSqlResponse> {
1191
+ return this.request("ModifyScheduledSql", req, cb)
1192
+ }
1193
+
1157
1194
  /**
1158
1195
  * 关闭Kafka协议消费
1159
1196
  */