tencentcloud-sdk-nodejs 4.0.422 → 4.0.425

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 (70) hide show
  1. package/CHANGELOG.md +627 -0
  2. package/SERVICE_CHANGELOG.md +455 -440
  3. package/package.json +1 -1
  4. package/products.md +19 -19
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/acp/v20220105/acp_models.ts +18 -7
  7. package/src/services/apigateway/v20180808/apigateway_client.ts +13 -0
  8. package/src/services/apigateway/v20180808/apigateway_models.ts +55 -0
  9. package/src/services/batch/v20170312/batch_models.ts +10 -0
  10. package/src/services/cdb/v20170320/cdb_models.ts +6 -6
  11. package/src/services/cls/v20201016/cls_models.ts +11 -1
  12. package/src/services/cme/v20191029/cme_client.ts +13 -4
  13. package/src/services/cme/v20191029/cme_models.ts +283 -68
  14. package/src/services/cynosdb/v20190107/cynosdb_client.ts +84 -22
  15. package/src/services/cynosdb/v20190107/cynosdb_models.ts +303 -57
  16. package/src/services/dcdb/v20180411/dcdb_models.ts +10 -0
  17. package/src/services/gaap/v20180529/gaap_client.ts +160 -37
  18. package/src/services/gaap/v20180529/gaap_models.ts +610 -179
  19. package/src/services/mmps/v20200710/mmps_models.ts +6 -0
  20. package/src/services/monitor/v20180724/monitor_models.ts +15 -15
  21. package/src/services/oceanus/v20190422/oceanus_client.ts +12 -0
  22. package/src/services/oceanus/v20190422/oceanus_models.ts +20 -0
  23. package/src/services/tcr/v20190924/tcr_client.ts +246 -50
  24. package/src/services/tcr/v20190924/tcr_models.ts +946 -298
  25. package/src/services/tse/v20201207/tse_client.ts +1 -0
  26. package/src/services/tse/v20201207/tse_models.ts +41 -0
  27. package/src/services/vod/v20180717/vod_client.ts +55 -22
  28. package/src/services/vod/v20180717/vod_models.ts +374 -86
  29. package/src/services/yinsuda/v20220527/yinsuda_client.ts +62 -2
  30. package/src/services/yinsuda/v20220527/yinsuda_models.ts +464 -13
  31. package/tencentcloud/common/sdk_version.d.ts +1 -1
  32. package/tencentcloud/common/sdk_version.js +1 -1
  33. package/tencentcloud/services/acp/v20220105/acp_models.d.ts +16 -7
  34. package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +5 -1
  35. package/tencentcloud/services/apigateway/v20180808/apigateway_client.js +6 -0
  36. package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +47 -0
  37. package/tencentcloud/services/batch/v20170312/batch_models.d.ts +8 -0
  38. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +6 -6
  39. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +9 -1
  40. package/tencentcloud/services/cme/v20191029/cme_client.d.ts +1 -1
  41. package/tencentcloud/services/cme/v20191029/cme_models.d.ts +245 -61
  42. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +27 -7
  43. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +39 -9
  44. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +260 -51
  45. package/tencentcloud/services/dcdb/v20180411/dcdb_models.d.ts +8 -0
  46. package/tencentcloud/services/gaap/v20180529/gaap_client.d.ts +51 -11
  47. package/tencentcloud/services/gaap/v20180529/gaap_client.js +75 -15
  48. package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +544 -174
  49. package/tencentcloud/services/mmps/v20200710/mmps_models.d.ts +5 -0
  50. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +15 -15
  51. package/tencentcloud/services/oceanus/v20190422/oceanus_client.d.ts +5 -1
  52. package/tencentcloud/services/oceanus/v20190422/oceanus_client.js +6 -0
  53. package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +18 -0
  54. package/tencentcloud/services/tcr/v20190924/tcr_client.d.ts +73 -9
  55. package/tencentcloud/services/tcr/v20190924/tcr_client.js +108 -12
  56. package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +817 -264
  57. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +35 -0
  58. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +23 -13
  59. package/tencentcloud/services/vod/v20180717/vod_client.js +27 -13
  60. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +325 -77
  61. package/tencentcloud/services/yinsuda/v20220527/yinsuda_client.d.ts +17 -1
  62. package/tencentcloud/services/yinsuda/v20220527/yinsuda_client.js +24 -0
  63. package/tencentcloud/services/yinsuda/v20220527/yinsuda_models.d.ts +402 -13
  64. package/test/apigateway.v20180808.test.js +10 -0
  65. package/test/cynosdb.v20190107.test.js +56 -6
  66. package/test/gaap.v20180529.test.js +116 -16
  67. package/test/oceanus.v20190422.test.js +10 -0
  68. package/test/tcr.v20190924.test.js +168 -8
  69. package/test/vod.v20180717.test.js +22 -2
  70. package/test/yinsuda.v20220527.test.js +40 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.422",
3
+ "version": "4.0.425",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
package/products.md CHANGED
@@ -2,7 +2,7 @@
2
2
  |-|-|-|
3
3
  | aa | [活动防刷](https://cloud.tencent.com/document/product/1189) | 2022-08-08 06:02:45 |
4
4
  | aai | [](https://cloud.tencent.com/document/product) | 2019-08-08 23:15:13 |
5
- | acp | [应用合规平台](https://cloud.tencent.com/document/product/1553) | 2022-07-29 06:01:57 |
5
+ | acp | [应用合规平台](https://cloud.tencent.com/document/product/1553) | 2022-08-24 06:06:48 |
6
6
  | advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2022-06-08 06:03:05 |
7
7
  | af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2022-05-23 06:01:54 |
8
8
  | afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2022-05-23 06:01:56 |
@@ -12,13 +12,13 @@
12
12
  | apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
13
13
  | ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
14
14
  | api | [云 API](https://cloud.tencent.com/document/product/1278) | 2022-06-07 06:00:45 |
15
- | apigateway | [API网关](https://cloud.tencent.com/document/product/628) | 2022-06-14 06:05:10 |
15
+ | apigateway | [API网关](https://cloud.tencent.com/document/product/628) | 2022-08-24 06:08:44 |
16
16
  | apm | [应用性能观测](https://cloud.tencent.com/document/product/1463) | 2022-08-22 06:08:36 |
17
17
  | as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2022-08-11 06:10:05 |
18
18
  | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2022-08-19 06:08:16 |
19
19
  | asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2022-04-04 06:08:40 |
20
20
  | ba | [网站备案](https://cloud.tencent.com/document/product/243) | 2022-04-04 06:08:45 |
21
- | batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2022-08-08 06:04:56 |
21
+ | batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2022-08-25 06:10:07 |
22
22
  | bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2022-08-04 06:09:29 |
23
23
  | bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2022-08-09 10:42:14 |
24
24
  | billing | [计费相关](https://cloud.tencent.com/document/product/555) | 2022-08-15 06:09:23 |
@@ -38,7 +38,7 @@
38
38
  | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2022-08-15 06:11:03 |
39
39
  | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2022-08-15 06:11:13 |
40
40
  | ccc | [云呼叫中心](https://cloud.tencent.com/document/product/679) | 2022-08-17 06:11:23 |
41
- | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2022-08-04 06:13:03 |
41
+ | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2022-08-25 06:13:36 |
42
42
  | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2022-07-30 15:07:54 |
43
43
  | cdn | [内容分发网络](https://cloud.tencent.com/document/product/228) | 2022-08-23 06:15:46 |
44
44
  | cds | [数据安全审计](https://cloud.tencent.com/document/product/856) | 2022-04-04 06:17:07 |
@@ -54,8 +54,8 @@
54
54
  | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2022-08-17 06:14:30 |
55
55
  | cloudaudit | [云审计](https://cloud.tencent.com/document/product/629) | 2022-07-08 06:05:30 |
56
56
  | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2022-06-22 06:04:38 |
57
- | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2022-08-18 06:14:59 |
58
- | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2022-06-24 06:09:00 |
57
+ | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2022-08-24 06:18:24 |
58
+ | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2022-08-24 06:19:05 |
59
59
  | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2022-04-04 06:23:04 |
60
60
  | cms | [内容安全](https://cloud.tencent.com/document/product) | 2020-10-29 08:03:08 |
61
61
  | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2022-08-15 06:16:16 |
@@ -63,14 +63,14 @@
63
63
  | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2022-08-22 06:20:03 |
64
64
  | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2022-08-19 06:16:28 |
65
65
  | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
66
- | cynosdb | [云原生数据库 TDSQL-C](https://cloud.tencent.com/document/product/1003) | 2022-08-16 06:18:39 |
66
+ | cynosdb | [云原生数据库 TDSQL-C](https://cloud.tencent.com/document/product/1003) | 2022-08-25 06:22:53 |
67
67
  | dasb | [堡垒机](https://cloud.tencent.com/document/product/1025) | 2022-08-16 06:19:02 |
68
68
  | dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
69
69
  | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2022-07-29 06:07:15 |
70
70
  | dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2022-06-22 06:06:28 |
71
71
  | dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2022-07-27 06:08:38 |
72
72
  | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2022-04-13 06:36:47 |
73
- | dcdb | [分布式数据库 TDSQL](https://cloud.tencent.com/document/product/557) | 2022-07-22 06:06:56 |
73
+ | dcdb | [分布式数据库 TDSQL](https://cloud.tencent.com/document/product/557) | 2022-08-25 06:25:03 |
74
74
  | dlc | [数据湖计算](https://cloud.tencent.com/document/product/1342) | 2022-07-28 06:10:28 |
75
75
  | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2022-08-04 06:26:58 |
76
76
  | domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2022-05-24 06:11:36 |
@@ -86,13 +86,13 @@
86
86
  | eis | [企业集成服务](https://cloud.tencent.com/document/product/1270) | 2022-08-16 06:23:41 |
87
87
  | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2022-07-28 06:11:30 |
88
88
  | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2022-08-16 06:24:00 |
89
- | ess | [电子签服务](https://cloud.tencent.com/document/product/1323) | 2022-08-18 06:23:19 |
90
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-08-11 15:03:00 |
89
+ | ess | [电子签服务](https://cloud.tencent.com/document/product/1323) | 2022-08-23 17:11:30 |
90
+ | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-08-23 16:56:24 |
91
91
  | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2022-06-15 06:09:10 |
92
92
  | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2022-08-11 06:31:43 |
93
93
  | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2022-04-04 06:43:06 |
94
94
  | ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2022-04-04 06:43:12 |
95
- | gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2022-08-05 06:21:50 |
95
+ | gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2022-08-25 06:30:05 |
96
96
  | gme | [游戏多媒体引擎](https://cloud.tencent.com/document/product/607) | 2022-08-17 06:24:51 |
97
97
  | gpm | [游戏玩家匹配](https://cloud.tencent.com/document/product/1294) | 2022-07-11 06:12:36 |
98
98
  | gs | [云游戏解决方案](https://cloud.tencent.com/document/product/1162) | 2022-08-19 06:23:23 |
@@ -116,17 +116,17 @@
116
116
  | ivld | [视频智能标签](https://cloud.tencent.com/document/product/1509) | 2022-06-10 17:14:46 |
117
117
  | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2022-08-05 06:26:44 |
118
118
  | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2022-08-15 06:29:48 |
119
- | live | [云直播](https://cloud.tencent.com/document/product/267) | 2022-08-23 06:38:29 |
119
+ | live | [云直播](https://cloud.tencent.com/document/product/267) | 2022-08-24 06:36:51 |
120
120
  | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
121
121
  | lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
122
122
  | mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2022-07-27 06:13:02 |
123
123
  | market | [云市场](https://cloud.tencent.com/document/product/306) | 2022-04-04 06:57:43 |
124
124
  | memcached | [云数据库 Memcached](https://cloud.tencent.com/document/product/241) | 2022-04-04 06:57:44 |
125
125
  | mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
126
- | mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2022-07-29 06:12:05 |
126
+ | mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2022-08-25 06:38:57 |
127
127
  | mna | [移动网络加速](https://cloud.tencent.com/document/product/1385) | 2022-04-04 06:57:51 |
128
128
  | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2022-08-15 06:31:24 |
129
- | monitor | [云监控](https://cloud.tencent.com/document/product/248) | 2022-08-22 06:38:10 |
129
+ | monitor | [云监控](https://cloud.tencent.com/document/product/248) | 2022-08-25 06:39:26 |
130
130
  | mps | [视频处理](https://cloud.tencent.com/document/product/862) | 2022-07-30 15:15:41 |
131
131
  | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2022-06-28 06:14:04 |
132
132
  | ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2022-07-07 06:13:41 |
@@ -134,7 +134,7 @@
134
134
  | mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
135
135
  | nlp | [自然语言处理](https://cloud.tencent.com/document/product/271) | 2022-04-13 07:00:13 |
136
136
  | npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
137
- | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2022-07-26 06:19:20 |
137
+ | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2022-08-25 06:41:36 |
138
138
  | ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2022-08-16 06:34:58 |
139
139
  | organization | [企业组织](https://cloud.tencent.com/document/product/850) | 2022-07-21 06:14:50 |
140
140
  | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2022-08-18 06:35:33 |
@@ -175,7 +175,7 @@
175
175
  | tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
176
176
  | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
177
177
  | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2022-07-18 06:16:41 |
178
- | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2022-08-15 06:39:36 |
178
+ | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2022-08-25 06:49:32 |
179
179
  | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2022-08-23 06:51:30 |
180
180
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2022-07-05 06:21:49 |
181
181
  | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2022-04-04 07:15:50 |
@@ -197,20 +197,20 @@
197
197
  | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2022-05-19 06:19:37 |
198
198
  | trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2022-07-27 06:17:54 |
199
199
  | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2022-08-15 06:44:54 |
200
- | tse | [腾讯云微服务引擎](https://cloud.tencent.com/document/product/1364) | 2022-08-10 06:55:45 |
200
+ | tse | [腾讯云微服务引擎](https://cloud.tencent.com/document/product/1364) | 2022-08-24 06:56:05 |
201
201
  | tsf | [腾讯微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2022-07-27 06:18:08 |
202
202
  | tsw | [腾讯微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2022-04-04 07:22:40 |
203
203
  | tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2022-08-15 06:46:14 |
204
204
  | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2022-04-04 07:22:44 |
205
205
  | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2022-08-16 06:49:06 |
206
206
  | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2022-04-04 07:22:54 |
207
- | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2022-08-22 06:57:10 |
207
+ | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2022-08-25 06:58:49 |
208
208
  | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2022-08-10 06:57:28 |
209
209
  | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2022-07-29 06:18:30 |
210
210
  | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2022-04-04 07:39:05 |
211
211
  | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2022-08-12 15:11:35 |
212
212
  | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
213
- | yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2022-08-22 07:01:10 |
213
+ | yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2022-08-24 07:02:00 |
214
214
  | youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
215
215
  | yunjing | [主机安全](https://cloud.tencent.com/document/product) | 2020-09-15 08:08:47 |
216
216
  | yunsou | [腾讯云搜](https://cloud.tencent.com/document/product/270) | 2022-04-04 07:39:18 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.422"
1
+ export const sdkVersion = "4.0.425"
@@ -20,7 +20,7 @@
20
20
  */
21
21
  export interface CreateAppScanTaskRepeatRequest {
22
22
  /**
23
- * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
23
+ * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
24
24
  */
25
25
  Source: number
26
26
 
@@ -196,7 +196,7 @@ export interface DescribeResourceUsageInfoResponse {
196
196
  */
197
197
  export interface DescribeScanTaskListRequest {
198
198
  /**
199
- * 任务来源, -1:所有, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
199
+ * 任务来源, -1:所有, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
200
200
  */
201
201
  Source: number
202
202
 
@@ -310,7 +310,7 @@ export interface CreateAppScanTaskRequest {
310
310
  TaskType: number
311
311
 
312
312
  /**
313
- * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
313
+ * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
314
314
  */
315
315
  Source: number
316
316
 
@@ -459,7 +459,7 @@ export interface DescribeFileTicketResponse {
459
459
  */
460
460
  export interface DescribeScanTaskReportUrlRequest {
461
461
  /**
462
- * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
462
+ * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
463
463
  */
464
464
  Source: number
465
465
 
@@ -541,7 +541,7 @@ export interface AppTaskData {
541
541
  */
542
542
  export interface DescribeScanTaskStatusRequest {
543
543
  /**
544
- * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
544
+ * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
545
545
  */
546
546
  Source: number
547
547
 
@@ -566,7 +566,7 @@ export interface DescribeScanTaskStatusRequest {
566
566
  */
567
567
  export interface DescribeFileTicketRequest {
568
568
  /**
569
- * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
569
+ * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
570
570
  */
571
571
  Source: number
572
572
 
@@ -602,7 +602,7 @@ export interface CreateAppScanTaskResponse {
602
602
  */
603
603
  export interface DescribeResourceUsageInfoRequest {
604
604
  /**
605
- * 资源计费项名称(为空时,则根据TaskType和Platform进行查询)
605
+ * 资源计费项名称(为空时,则根据Source,TaskType和Platform进行查询)
606
606
  */
607
607
  PriceName?: string
608
608
 
@@ -615,6 +615,11 @@ export interface DescribeResourceUsageInfoRequest {
615
615
  * 应用平台, 0:android
616
616
  */
617
617
  Platform?: number
618
+
619
+ /**
620
+ * 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
621
+ */
622
+ Source?: number
618
623
  }
619
624
 
620
625
  /**
@@ -638,6 +643,12 @@ export interface DescribeScanTaskReportUrlResponse {
638
643
  */
639
644
  ReportTitle: string
640
645
 
646
+ /**
647
+ * 诊断json结果内容
648
+ 注意:此字段可能返回 null,表示取不到有效值。
649
+ */
650
+ ReportResult: string
651
+
641
652
  /**
642
653
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
643
654
  */
@@ -28,6 +28,7 @@ import {
28
28
  AttachedApiSummary,
29
29
  DescribeUsagePlanRequest,
30
30
  DeleteUsagePlanResponse,
31
+ ImportOpenApiResponse,
31
32
  DisableApiKeyResponse,
32
33
  DescribeApiResponse,
33
34
  UnReleaseServiceRequest,
@@ -39,6 +40,7 @@ import {
39
40
  DescribeApiAppBindApisStatusRequest,
40
41
  ModifyApiResponse,
41
42
  ServiceEnvironmentStrategy,
43
+ CreateApiRspSet,
42
44
  ApiInfo,
43
45
  TargetServicesReq,
44
46
  DescribeUsagePlansStatusRequest,
@@ -259,6 +261,7 @@ import {
259
261
  EnvironmentStrategy,
260
262
  InstanceParameterInput,
261
263
  DescribeUsagePlanEnvironmentsRequest,
264
+ ImportOpenApiRequest,
262
265
  DescribeServiceReleaseVersionResponse,
263
266
  UpstreamNode,
264
267
  ApiAppApiInfos,
@@ -1065,6 +1068,16 @@ API 网关的服务创建后,需要发布到某个环境方生效后,使用
1065
1068
  return this.request("DescribeUpstreamBindApis", req, cb)
1066
1069
  }
1067
1070
 
1071
+ /**
1072
+ * 本接口(ImportOpenApi)用于将OpenAPI规范定义的API导入到API网关。
1073
+ */
1074
+ async ImportOpenApi(
1075
+ req: ImportOpenApiRequest,
1076
+ cb?: (error: string, rep: ImportOpenApiResponse) => void
1077
+ ): Promise<ImportOpenApiResponse> {
1078
+ return this.request("ImportOpenApi", req, cb)
1079
+ }
1080
+
1068
1081
  /**
1069
1082
  * 本接口(ModifyService)用于修改服务的相关信息。当服务创建后,服务的名称、描述和服务类型均可被修改。
1070
1083
  */
@@ -257,6 +257,21 @@ export interface DeleteUsagePlanResponse {
257
257
  RequestId?: string
258
258
  }
259
259
 
260
+ /**
261
+ * ImportOpenApi返回参数结构体
262
+ */
263
+ export interface ImportOpenApiResponse {
264
+ /**
265
+ * 导入OpenApi返回参数。
266
+ */
267
+ Result: CreateApiRspSet
268
+
269
+ /**
270
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
271
+ */
272
+ RequestId?: string
273
+ }
274
+
260
275
  /**
261
276
  * DisableApiKey返回参数结构体
262
277
  */
@@ -496,6 +511,21 @@ export interface ServiceEnvironmentStrategy {
496
511
  MaxStrategy: number
497
512
  }
498
513
 
514
+ /**
515
+ * CreateApiRsp 返回加TotalCount
516
+ */
517
+ export interface CreateApiRspSet {
518
+ /**
519
+ * 个数
520
+ */
521
+ TotalCount: number
522
+
523
+ /**
524
+ * 返回的数组
525
+ */
526
+ ApiSet: Array<CreateApiRsp>
527
+ }
528
+
499
529
  /**
500
530
  * 展示api信息
501
531
  */
@@ -6650,6 +6680,31 @@ export interface DescribeUsagePlanEnvironmentsRequest {
6650
6680
  Offset?: number
6651
6681
  }
6652
6682
 
6683
+ /**
6684
+ * ImportOpenApi请求参数结构体
6685
+ */
6686
+ export interface ImportOpenApiRequest {
6687
+ /**
6688
+ * API所在的服务唯一ID。
6689
+ */
6690
+ ServiceId: string
6691
+
6692
+ /**
6693
+ * openAPI正文内容。
6694
+ */
6695
+ Content: string
6696
+
6697
+ /**
6698
+ * Content格式,只能是YAML或者JSON,默认是YAML。
6699
+ */
6700
+ EncodeType?: string
6701
+
6702
+ /**
6703
+ * Content版本,默认是openAPI,目前只支持openAPI。
6704
+ */
6705
+ ContentVersion?: string
6706
+ }
6707
+
6653
6708
  /**
6654
6709
  * DescribeServiceReleaseVersion返回参数结构体
6655
6710
  */
@@ -2327,6 +2327,16 @@ export interface Docker {
2327
2327
  * Docker Hub 可以不填,但确保具有公网访问能力。或者是 Tencent Registry 服务地址“ccr.ccs.tencentyun.com”
2328
2328
  */
2329
2329
  Server?: string
2330
+
2331
+ /**
2332
+ * 拉取Docker镜像重试次数。默认值:0。
2333
+ */
2334
+ MaxRetryCount?: number
2335
+
2336
+ /**
2337
+ * 拉取Docker镜像失败时延迟时间。单位:秒。
2338
+ */
2339
+ DelayOnRetry?: number
2330
2340
  }
2331
2341
 
2332
2342
  /**
@@ -2623,7 +2623,7 @@ export interface ModifyAccountPasswordResponse {
2623
2623
  /**
2624
2624
  * 异步任务的请求 ID,可使用此 ID 查询异步任务的执行结果。
2625
2625
  */
2626
- AsyncRequestId?: string
2626
+ AsyncRequestId: string
2627
2627
 
2628
2628
  /**
2629
2629
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -4337,7 +4337,7 @@ export interface CreateDBInstanceRequest {
4337
4337
  AutoRenewFlag?: number
4338
4338
 
4339
4339
  /**
4340
- * 主实例地域信息,购买灾备实例时,该字段必填。
4340
+ * 主实例地域信息,购买灾备、RO实例时,该字段必填。
4341
4341
  */
4342
4342
  MasterRegion?: string
4343
4343
 
@@ -4382,7 +4382,7 @@ export interface CreateDBInstanceRequest {
4382
4382
  ParamTemplateId?: number
4383
4383
 
4384
4384
  /**
4385
- * 告警策略id数组。
4385
+ * 告警策略id数组。云监控DescribeAlarmPolicy接口返回的OriginId。
4386
4386
  */
4387
4387
  AlarmPolicyList?: Array<number>
4388
4388
 
@@ -5081,7 +5081,7 @@ export interface VerifyRootAccountResponse {
5081
5081
  /**
5082
5082
  * 异步任务的请求 ID,可使用此 ID 查询异步任务的执行结果
5083
5083
  */
5084
- AsyncRequestId?: string
5084
+ AsyncRequestId: string
5085
5085
 
5086
5086
  /**
5087
5087
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -7723,7 +7723,7 @@ export interface CreateDBInstanceHourRequest {
7723
7723
  InstanceRole?: string
7724
7724
 
7725
7725
  /**
7726
- * 主实例的可用区信息,购买灾备实例时必填。
7726
+ * 主实例的可用区信息,购买灾备、RO实例时必填。
7727
7727
  */
7728
7728
  MasterRegion?: string
7729
7729
 
@@ -7808,7 +7808,7 @@ export interface CreateDBInstanceHourRequest {
7808
7808
  ParamTemplateId?: number
7809
7809
 
7810
7810
  /**
7811
- * 告警策略id数组。
7811
+ * 告警策略id数组。云监控DescribeAlarmPolicy接口返回的OriginId。
7812
7812
  */
7813
7813
  AlarmPolicyList?: Array<number>
7814
7814
 
@@ -2605,7 +2605,7 @@ export interface JsonInfo {
2605
2605
  EnableTag: boolean
2606
2606
 
2607
2607
  /**
2608
- * 元数据信息列表, 可选值为 __SOURCE__、__FILENAME__、__TIMESTAMP__。
2608
+ * 元数据信息列表, 可选值为 __SOURCE__、__FILENAME__、__TIMESTAMP__、__HOSTNAME__
2609
2609
  注意:此字段可能返回 null,表示取不到有效值。
2610
2610
  */
2611
2611
  MetaFields: Array<string>
@@ -2664,6 +2664,11 @@ export interface CreateShipperRequest {
2664
2664
  * 投递日志的内容格式配置
2665
2665
  */
2666
2666
  Content?: ContentInfo
2667
+
2668
+ /**
2669
+ * 投递文件命名配置,0:随机数命名,1:投递时间命名,默认0(随机数命名)
2670
+ */
2671
+ FilenameMode?: number
2667
2672
  }
2668
2673
 
2669
2674
  /**
@@ -3251,6 +3256,11 @@ export interface ModifyShipperRequest {
3251
3256
  * 投递日志的内容格式配置
3252
3257
  */
3253
3258
  Content?: ContentInfo
3259
+
3260
+ /**
3261
+ * 投递文件命名配置,0:随机数命名,1:投递时间命名,默认0(随机数命名)
3262
+ */
3263
+ FilenameMode?: number
3254
3264
  }
3255
3265
 
3256
3266
  /**
@@ -33,14 +33,16 @@ import {
33
33
  DescribeTaskDetailResponse,
34
34
  ExportVideoEditProjectRequest,
35
35
  StreamConnectInputInterruptInfo,
36
+ TeamInfo,
36
37
  ClassInfo,
37
- ModifyProjectResponse,
38
+ MediaCastDestinationInterruptInfo,
38
39
  AudioTrackItem,
39
40
  StreamConnectProjectInfo,
40
41
  VideoEncodingPresetAudioSettingForUpdate,
41
42
  VideoEncodingPresetAudioSetting,
42
43
  IntegerRange,
43
44
  SearchMaterialRequest,
45
+ StorageNewFileCreatedEvent,
44
46
  DeleteTeamResponse,
45
47
  StreamConnectOutput,
46
48
  CopyProjectRequest,
@@ -60,7 +62,7 @@ import {
60
62
  AudioMaterial,
61
63
  AddMemberInfo,
62
64
  Entity,
63
- TeamInfo,
65
+ MediaCastVideoSetting,
64
66
  ExportVideoByEditorTrackDataRequest,
65
67
  MaterialTagInfo,
66
68
  VideoEditProjectOutput,
@@ -69,13 +71,14 @@ import {
69
71
  Authorizer,
70
72
  DescribePlatformsResponse,
71
73
  DescribeTasksRequest,
74
+ ProjectMediaCastStatusChangedEvent,
72
75
  MediaTrackItem,
73
- StorageNewFileCreatedEvent,
76
+ MediaCastDestinationInfo,
74
77
  DescribeLoginStatusRequest,
75
78
  MediaTrack,
76
79
  DeleteLoginStatusResponse,
77
80
  WeiboPublishInfo,
78
- Resource,
81
+ MediaCastSourceInfo,
79
82
  CreateLinkResponse,
80
83
  ExportVideoByTemplateResponse,
81
84
  StreamInputInfo,
@@ -89,8 +92,10 @@ import {
89
92
  MaterialImportedEvent,
90
93
  ModifyVideoEncodingPresetResponse,
91
94
  DescribeJoinTeamsRequest,
95
+ MediaCastSourceInterruptInfo,
92
96
  VideoSegmentationProjectInput,
93
97
  DeleteMaterialRequest,
98
+ ModifyProjectResponse,
94
99
  CreateProjectResponse,
95
100
  VideoEditProjectInput,
96
101
  DeleteProjectResponse,
@@ -104,6 +109,7 @@ import {
104
109
  VideoEncodingPresetVideoSettingForUpdate,
105
110
  GrantResourceAuthorizationResponse,
106
111
  SwitcherPgmOutputConfig,
112
+ Resource,
107
113
  CMEExportInfo,
108
114
  MoveResourceRequest,
109
115
  LivePullInputInfo,
@@ -156,6 +162,7 @@ import {
156
162
  MaterialModifiedEvent,
157
163
  HandleStreamConnectProjectResponse,
158
164
  DeleteTeamMembersRequest,
165
+ MediaCastProjectInfo,
159
166
  ExportVideoByTemplateRequest,
160
167
  DescribePlatformsRequest,
161
168
  OtherMaterial,
@@ -167,6 +174,7 @@ import {
167
174
  AccountInfo,
168
175
  DescribeProjectsRequest,
169
176
  DescribeLoginStatusResponse,
177
+ MediaCastPlaySetting,
170
178
  MaterialAddedEvent,
171
179
  CreateVideoEncodingPresetRequest,
172
180
  ProjectStreamConnectStatusChangedEvent,
@@ -203,6 +211,7 @@ import {
203
211
  ExternalMediaInfo,
204
212
  LinkMaterialInfo,
205
213
  ExportVideoByEditorTrackDataResponse,
214
+ MediaCastOutputMediaSetting,
206
215
  ClassCreatedEvent,
207
216
  VideoEncodingPreset,
208
217
  ImportMaterialRequest,