tencentcloud-sdk-nodejs 4.0.300 → 4.0.303

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 +269 -0
  2. package/SERVICE_CHANGELOG.md +286 -333
  3. package/package.json +1 -1
  4. package/products.md +16 -15
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/asr/v20190614/asr_models.ts +1 -1
  7. package/src/services/casb/index.ts +5 -0
  8. package/src/services/casb/v20200507/casb_client.ts +51 -0
  9. package/src/services/casb/v20200507/casb_models.ts +76 -0
  10. package/src/services/casb/v20200507/index.ts +6 -0
  11. package/src/services/ccc/v20200210/ccc_models.ts +12 -0
  12. package/src/services/cdn/v20180606/cdn_models.ts +18 -18
  13. package/src/services/ckafka/v20190819/ckafka_client.ts +44 -8
  14. package/src/services/ckafka/v20190819/ckafka_models.ts +123 -20
  15. package/src/services/cls/v20201016/cls_client.ts +2 -2
  16. package/src/services/cls/v20201016/cls_models.ts +36 -47
  17. package/src/services/cpdp/v20190820/cpdp_client.ts +123 -15
  18. package/src/services/cpdp/v20190820/cpdp_models.ts +1449 -493
  19. package/src/services/index.ts +1 -0
  20. package/src/services/ivld/v20210903/ivld_client.ts +2 -0
  21. package/src/services/ivld/v20210903/ivld_models.ts +48 -0
  22. package/src/services/organization/v20210331/organization_models.ts +6 -0
  23. package/src/services/ses/v20201002/ses_client.ts +15 -2
  24. package/src/services/ses/v20201002/ses_models.ts +51 -10
  25. package/src/services/tcss/v20201101/tcss_models.ts +5 -0
  26. package/src/services/tke/v20180525/tke_client.ts +25 -13
  27. package/src/services/tke/v20180525/tke_models.ts +39 -4
  28. package/src/services/tse/v20201207/tse_models.ts +15 -0
  29. package/src/services/vpc/v20170312/vpc_client.ts +1 -1
  30. package/tencentcloud/common/sdk_version.d.ts +1 -1
  31. package/tencentcloud/common/sdk_version.js +1 -1
  32. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +1 -1
  33. package/tencentcloud/services/casb/index.d.ts +6 -0
  34. package/tencentcloud/services/casb/index.js +7 -0
  35. package/tencentcloud/services/casb/v20200507/casb_client.d.ts +21 -0
  36. package/tencentcloud/services/casb/v20200507/casb_client.js +44 -0
  37. package/tencentcloud/services/casb/v20200507/casb_models.d.ts +51 -0
  38. package/tencentcloud/services/casb/v20200507/casb_models.js +18 -0
  39. package/tencentcloud/services/casb/v20200507/index.d.ts +6 -0
  40. package/tencentcloud/services/casb/v20200507/index.js +9 -0
  41. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +10 -0
  42. package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +18 -18
  43. package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +15 -3
  44. package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +21 -3
  45. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +108 -19
  46. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +2 -2
  47. package/tencentcloud/services/cls/v20201016/cls_client.js +2 -2
  48. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +36 -47
  49. package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +36 -4
  50. package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +52 -4
  51. package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +1294 -470
  52. package/tencentcloud/services/index.d.ts +1 -0
  53. package/tencentcloud/services/index.js +2 -0
  54. package/tencentcloud/services/ivld/v20210903/ivld_models.d.ts +41 -0
  55. package/tencentcloud/services/organization/v20210331/organization_models.d.ts +5 -0
  56. package/tencentcloud/services/ses/v20201002/ses_client.d.ts +5 -1
  57. package/tencentcloud/services/ses/v20201002/ses_client.js +6 -0
  58. package/tencentcloud/services/ses/v20201002/ses_models.d.ts +46 -10
  59. package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +4 -0
  60. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +9 -5
  61. package/tencentcloud/services/tke/v20180525/tke_client.js +12 -6
  62. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +34 -4
  63. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +12 -0
  64. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +1 -1
  65. package/tencentcloud/services/vpc/v20170312/vpc_client.js +1 -1
  66. package/test/casb.v20200507.test.js +31 -0
  67. package/test/ckafka.v20190819.test.js +32 -2
  68. package/test/cpdp.v20190820.test.js +82 -2
  69. package/test/ses.v20201002.test.js +10 -0
  70. package/test/tke.v20180525.test.js +14 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.300",
3
+ "version": "4.0.303",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
package/products.md CHANGED
@@ -14,7 +14,7 @@
14
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
- | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2022-02-24 08:02:49 |
17
+ | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2022-03-08 08:06:26 |
18
18
  | asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2022-02-21 08:01:30 |
19
19
  | ba | [网站备案](https://cloud.tencent.com/document/product/243) | 2022-02-21 08:01:32 |
20
20
  | batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2022-02-21 08:01:33 |
@@ -29,11 +29,12 @@
29
29
  | btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2022-02-21 08:02:02 |
30
30
  | cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2022-03-01 08:01:53 |
31
31
  | captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2022-02-21 08:02:12 |
32
+ | casb | [云数据加密代理网关](https://cloud.tencent.com/document/product/1303) | 2022-03-04 10:56:53 |
32
33
  | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2022-02-21 08:02:15 |
33
34
  | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2022-02-21 08:02:20 |
34
- | ccc | [云呼叫中心](https://cloud.tencent.com/document/product/679) | 2022-02-21 08:02:25 |
35
+ | ccc | [云呼叫中心](https://cloud.tencent.com/document/product/679) | 2022-03-04 08:05:02 |
35
36
  | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2022-03-03 08:02:04 |
36
- | cdn | [内容分发网络](https://cloud.tencent.com/document/product/228) | 2022-02-24 08:04:07 |
37
+ | cdn | [内容分发网络](https://cloud.tencent.com/document/product/228) | 2022-03-08 08:07:56 |
37
38
  | cds | [数据安全审计](https://cloud.tencent.com/document/product/856) | 2022-02-21 08:02:59 |
38
39
  | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2022-02-21 08:03:00 |
39
40
  | cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2022-02-21 08:03:03 |
@@ -41,15 +42,15 @@
41
42
  | cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2022-02-18 16:00:08 |
42
43
  | cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
43
44
  | cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
44
- | ckafka | [消息队列 Ckafka](https://cloud.tencent.com/document/product/597) | 2022-03-01 08:03:20 |
45
+ | ckafka | [消息队列 Ckafka](https://cloud.tencent.com/document/product/597) | 2022-03-04 08:05:57 |
45
46
  | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2022-03-03 08:03:01 |
46
47
  | cloudaudit | [云审计](https://cloud.tencent.com/document/product/629) | 2022-02-28 08:08:23 |
47
48
  | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2022-02-21 08:03:43 |
48
- | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2022-03-01 08:03:44 |
49
+ | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2022-03-08 08:09:26 |
49
50
  | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2022-02-21 08:03:52 |
50
51
  | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2022-03-03 08:03:36 |
51
52
  | cms | [内容安全](https://cloud.tencent.com/document/product) | 2020-10-29 08:03:08 |
52
- | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2022-02-25 08:06:26 |
53
+ | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2022-03-08 08:09:49 |
53
54
  | cr | [金融联络机器人](https://cloud.tencent.com/document/product/656) | 2021-02-24 08:03:24 |
54
55
  | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2022-02-25 08:06:49 |
55
56
  | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2022-02-21 08:04:51 |
@@ -74,7 +75,7 @@
74
75
  | eis | [企业集成服务](https://cloud.tencent.com/document/product/1270) | 2022-02-21 08:06:46 |
75
76
  | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2022-03-03 08:06:04 |
76
77
  | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2022-02-21 08:06:51 |
77
- | ess | [电子签服务](https://cloud.tencent.com/document/product/1323) | 2022-02-25 16:43:22 |
78
+ | ess | [电子签服务](https://cloud.tencent.com/document/product/1323) | 2022-03-07 19:22:12 |
78
79
  | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-02-21 08:06:54 |
79
80
  | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2022-02-25 08:09:04 |
80
81
  | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2022-02-25 08:09:07 |
@@ -99,7 +100,7 @@
99
100
  | iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2022-02-21 08:08:24 |
100
101
  | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2022-02-21 08:08:26 |
101
102
  | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2022-02-21 08:08:35 |
102
- | ivld | [视频智能标签](https://cloud.tencent.com/document/product/1509) | 2022-03-02 12:16:47 |
103
+ | ivld | [视频智能标签](https://cloud.tencent.com/document/product/1509) | 2022-03-07 10:30:32 |
103
104
  | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2022-02-21 08:08:51 |
104
105
  | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2022-03-03 08:08:18 |
105
106
  | live | [云直播](https://cloud.tencent.com/document/product/267) | 2022-02-24 08:10:24 |
@@ -121,7 +122,7 @@
121
122
  | npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
122
123
  | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2022-03-03 08:09:36 |
123
124
  | ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2022-02-21 08:10:18 |
124
- | organization | [企业组织](https://cloud.tencent.com/document/product/850) | 2022-02-21 08:10:28 |
125
+ | organization | [企业组织](https://cloud.tencent.com/document/product/850) | 2022-03-08 08:16:27 |
125
126
  | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2022-02-21 08:10:29 |
126
127
  | pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2022-02-21 08:10:32 |
127
128
  | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2022-03-03 08:10:01 |
@@ -131,8 +132,8 @@
131
132
  | rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2022-02-21 08:10:55 |
132
133
  | rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-02-21 08:10:56 |
133
134
  | rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2022-03-01 08:11:06 |
134
- | scf | [云函数](https://cloud.tencent.com/document/product/583) | 2022-03-02 08:14:31 |
135
- | ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2022-02-22 08:11:38 |
135
+ | scf | [云函数](https://cloud.tencent.com/document/product/583) | 2022-03-07 08:11:53 |
136
+ | ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2022-03-08 08:17:15 |
136
137
  | smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2022-02-21 08:11:14 |
137
138
  | smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2022-02-21 08:11:16 |
138
139
  | sms | [短信](https://cloud.tencent.com/document/product/382) | 2022-02-23 08:11:58 |
@@ -157,7 +158,7 @@
157
158
  | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
158
159
  | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2022-02-25 08:14:28 |
159
160
  | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2022-02-21 08:12:20 |
160
- | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2022-03-02 08:15:58 |
161
+ | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2022-03-08 08:18:39 |
161
162
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2022-03-01 10:49:12 |
162
163
  | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2022-03-01 15:05:45 |
163
164
  | tdmq | [分布式消息队列](https://cloud.tencent.com/document/product/1179) | 2022-03-03 08:12:23 |
@@ -171,12 +172,12 @@
171
172
  | tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2022-02-21 08:13:16 |
172
173
  | tione | [腾讯云 TI 平台 TI-ONE](https://cloud.tencent.com/document/product/851) | 2022-02-21 08:13:19 |
173
174
  | tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2022-02-21 08:13:23 |
174
- | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2022-02-21 08:13:27 |
175
+ | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2022-03-07 08:14:19 |
175
176
  | tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
176
177
  | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2022-02-21 08:13:40 |
177
178
  | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2022-02-21 08:13:41 |
178
179
  | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2022-02-21 08:13:42 |
179
- | tse | [腾讯云微服务引擎](https://cloud.tencent.com/document/product/1364) | 2022-03-03 08:13:19 |
180
+ | tse | [腾讯云微服务引擎](https://cloud.tencent.com/document/product/1364) | 2022-03-08 08:20:05 |
180
181
  | tsf | [腾讯微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2022-03-01 08:14:14 |
181
182
  | tsw | [腾讯微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2022-02-21 08:14:10 |
182
183
  | tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2022-02-21 08:14:11 |
@@ -184,7 +185,7 @@
184
185
  | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2022-02-21 08:14:15 |
185
186
  | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2022-02-21 08:14:16 |
186
187
  | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2022-02-21 08:14:18 |
187
- | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2022-02-28 08:19:45 |
188
+ | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2022-03-08 08:21:02 |
188
189
  | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2022-02-21 08:15:09 |
189
190
  | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2022-02-21 08:15:12 |
190
191
  | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.300"
1
+ export const sdkVersion = "4.0.303"
@@ -469,7 +469,7 @@ export interface CreateRecTaskRequest {
469
469
  EngineModelType: string
470
470
 
471
471
  /**
472
- * 识别声道数。1:单声道;2:双声道(仅支持 8k_zh 引擎模)。注意:录音识别会自动将音频转码为填写的识别声道数
472
+ * 识别声道数。1:单声道(非电话场景,直接选择单声道即可,忽略音频声道数);2:双声道(仅支持8k_zh电话场景,双声道应分别对应通话双方)。注意:双声道的电话音频已物理分离说话人,无需再开启说话人分离功能。
473
473
  */
474
474
  ChannelNum: number
475
475
 
@@ -0,0 +1,5 @@
1
+ import { v20200507 } from "./v20200507"
2
+
3
+ export const casb = {
4
+ v20200507: v20200507,
5
+ }
@@ -0,0 +1,51 @@
1
+ /* eslint-disable @typescript-eslint/no-unused-vars */
2
+ /*
3
+ * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing,
12
+ * software distributed under the License is distributed on an
13
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ * KIND, either express or implied. See the License for the
15
+ * specific language governing permissions and limitations
16
+ * under the License.
17
+ */
18
+ import { AbstractClient } from "../../../common/abstract_client"
19
+ import { ClientConfig } from "../../../common/interface"
20
+ import {
21
+ CopyCryptoColumnPolicyRequest,
22
+ CryptoCopyColumnPolicyTableFilter,
23
+ CopyCryptoColumnPolicyResponse,
24
+ } from "./casb_models"
25
+
26
+ /**
27
+ * casb client
28
+ * @class
29
+ */
30
+ export class Client extends AbstractClient {
31
+ constructor(clientConfig: ClientConfig) {
32
+ super("casb.tencentcloudapi.com", "2020-05-07", clientConfig)
33
+ }
34
+
35
+ /**
36
+ * 同region下 根据用户输入的CasbId,MetaDataId 复制策略到DstCasbId,MetaDataId中。
37
+ 场景1:
38
+ 相同CasbId,不同MetadataId 下策略复制
39
+ 场景2:
40
+ 不同Casbid,不同MetaDataId 下策略复制
41
+ 场景3:
42
+ 相同CasbId,相同MetaDataId 且 DatabaseName不同 策略复制
43
+
44
+ */
45
+ async CopyCryptoColumnPolicy(
46
+ req: CopyCryptoColumnPolicyRequest,
47
+ cb?: (error: string, rep: CopyCryptoColumnPolicyResponse) => void
48
+ ): Promise<CopyCryptoColumnPolicyResponse> {
49
+ return this.request("CopyCryptoColumnPolicy", req, cb)
50
+ }
51
+ }
@@ -0,0 +1,76 @@
1
+ /*
2
+ * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing,
11
+ * software distributed under the License is distributed on an
12
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13
+ * KIND, either express or implied. See the License for the
14
+ * specific language governing permissions and limitations
15
+ * under the License.
16
+ */
17
+
18
+ /**
19
+ * CopyCryptoColumnPolicy请求参数结构体
20
+ */
21
+ export interface CopyCryptoColumnPolicyRequest {
22
+ /**
23
+ * 实例Id
24
+ */
25
+ CasbId: string
26
+
27
+ /**
28
+ * 元数据id
29
+ */
30
+ MetaDataId: string
31
+
32
+ /**
33
+ * 目标实例Id 如果和实例Id相同则为同CasbId下的策略复制
34
+ */
35
+ DstCasbId: string
36
+
37
+ /**
38
+ * 目标实例Id 如果和[元数据id]相同则为同元数据下的策略复制
39
+ */
40
+ DstMetaDataId: string
41
+
42
+ /**
43
+ * 筛选来源数据库的表
44
+ */
45
+ SrcTableFilter?: Array<CryptoCopyColumnPolicyTableFilter>
46
+
47
+ /**
48
+ * 复制同元数据下的策略,需要填写目标数据库名
49
+ */
50
+ DstDatabaseName?: string
51
+ }
52
+
53
+ /**
54
+ * 策略迁移表信息筛选
55
+ */
56
+ export interface CryptoCopyColumnPolicyTableFilter {
57
+ /**
58
+ * 数据库名称
59
+ */
60
+ DatabaseName: string
61
+
62
+ /**
63
+ * 表名称
64
+ */
65
+ TableNameSet?: Array<string>
66
+ }
67
+
68
+ /**
69
+ * CopyCryptoColumnPolicy返回参数结构体
70
+ */
71
+ export interface CopyCryptoColumnPolicyResponse {
72
+ /**
73
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
74
+ */
75
+ RequestId?: string
76
+ }
@@ -0,0 +1,6 @@
1
+ import * as Models from "./casb_models"
2
+ import { Client } from "./casb_client"
3
+ export const v20200507 = {
4
+ Client: Client,
5
+ Models: Models,
6
+ }
@@ -459,6 +459,12 @@ notInService 不在服务区
459
459
  注意:此字段可能返回 null,表示取不到有效值。
460
460
  */
461
461
  AsrUrl: string
462
+
463
+ /**
464
+ * 录音转存第三方COS地址
465
+ 注意:此字段可能返回 null,表示取不到有效值。
466
+ */
467
+ CustomRecordURL: string
462
468
  }
463
469
 
464
470
  /**
@@ -1549,6 +1555,12 @@ export interface ServeParticipant {
1549
1555
  注意:此字段可能返回 null,表示取不到有效值。
1550
1556
  */
1551
1557
  SkillGroupName: string
1558
+
1559
+ /**
1560
+ * 录音转存第三方COS地址
1561
+ 注意:此字段可能返回 null,表示取不到有效值。
1562
+ */
1563
+ CustomRecordURL: string
1552
1564
  }
1553
1565
 
1554
1566
  /**
@@ -800,7 +800,7 @@ export interface CreateClsLogTopicResponse {
800
800
  * 主题ID
801
801
  注意:此字段可能返回 null,表示取不到有效值。
802
802
  */
803
- TopicId?: string
803
+ TopicId: string
804
804
 
805
805
  /**
806
806
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -923,7 +923,7 @@ export interface DomainFilter {
923
923
  - domain:域名。
924
924
  - resourceId:域名id。
925
925
  - status:域名状态,online,offline或processing。
926
- - serviceType:业务类型,web,download或media
926
+ - serviceType:业务类型,web,download,media,hybriddynamic
927
927
  - projectId:项目ID。
928
928
  - domainType:主源站类型,cname表示自有源,cos表示cos接入,third_party表示第三方对象存储。
929
929
  - fullUrlCache:全路径缓存,on或off。
@@ -1863,7 +1863,7 @@ export interface ListClsTopicDomainsRequest {
1863
1863
  TopicId: string
1864
1864
 
1865
1865
  /**
1866
- * 接入渠道,默认值为cdn
1866
+ * 接入渠道,cdn或者ecdn,默认值为cdn
1867
1867
  */
1868
1868
  Channel?: string
1869
1869
  }
@@ -2568,7 +2568,7 @@ export interface DeleteClsLogTopicRequest {
2568
2568
  LogsetId: string
2569
2569
 
2570
2570
  /**
2571
- * 接入渠道,默认值为cdn
2571
+ * 接入渠道,cdn或者ecdn,默认值为cdn
2572
2572
  */
2573
2573
  Channel?: string
2574
2574
  }
@@ -3130,7 +3130,7 @@ export interface DisableClsLogTopicRequest {
3130
3130
  TopicId: string
3131
3131
 
3132
3132
  /**
3133
- * 接入渠道,默认值为cdn
3133
+ * 接入渠道,cdn或者ecdn,默认值为cdn
3134
3134
  */
3135
3135
  Channel?: string
3136
3136
  }
@@ -3165,38 +3165,38 @@ export interface ListClsTopicDomainsResponse {
3165
3165
  /**
3166
3166
  * 开发者ID
3167
3167
  */
3168
- AppId?: number
3168
+ AppId: number
3169
3169
 
3170
3170
  /**
3171
3171
  * 渠道
3172
3172
  */
3173
- Channel?: string
3173
+ Channel: string
3174
3174
 
3175
3175
  /**
3176
3176
  * 日志集ID
3177
3177
  */
3178
- LogsetId?: string
3178
+ LogsetId: string
3179
3179
 
3180
3180
  /**
3181
3181
  * 日志主题ID
3182
3182
  */
3183
- TopicId?: string
3183
+ TopicId: string
3184
3184
 
3185
3185
  /**
3186
3186
  * 域名区域配置,其中可能含有已删除的域名,如果要再传回ManageClsTopicDomains接口,需要结合ListCdnDomains接口排除掉已删除的域名
3187
3187
  */
3188
- DomainAreaConfigs?: Array<DomainAreaConfig>
3188
+ DomainAreaConfigs: Array<DomainAreaConfig>
3189
3189
 
3190
3190
  /**
3191
3191
  * 日志主题名称
3192
3192
  */
3193
- TopicName?: string
3193
+ TopicName: string
3194
3194
 
3195
3195
  /**
3196
3196
  * 日志主题最近更新时间
3197
3197
  注意:此字段可能返回 null,表示取不到有效值。
3198
3198
  */
3199
- UpdateTime?: string
3199
+ UpdateTime: string
3200
3200
 
3201
3201
  /**
3202
3202
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -6072,7 +6072,7 @@ export interface ManageClsTopicDomainsRequest {
6072
6072
  TopicId: string
6073
6073
 
6074
6074
  /**
6075
- * 接入渠道,默认值为cdn
6075
+ * 接入渠道,cdn或者ecdn,默认值为cdn
6076
6076
  */
6077
6077
  Channel?: string
6078
6078
 
@@ -7000,7 +7000,7 @@ export interface EnableClsLogTopicRequest {
7000
7000
  TopicId: string
7001
7001
 
7002
7002
  /**
7003
- * 接入渠道,默认值为cdn
7003
+ * 接入渠道,cdn或者ecdn,默认值为cdn
7004
7004
  */
7005
7005
  Channel?: string
7006
7006
  }
@@ -7035,7 +7035,7 @@ export interface CreateClsLogTopicRequest {
7035
7035
  LogsetId: string
7036
7036
 
7037
7037
  /**
7038
- * 接入渠道,默认值为cdn
7038
+ * 接入渠道,cdn或者ecdn,默认值为cdn
7039
7039
  */
7040
7040
  Channel?: string
7041
7041
 
@@ -7181,7 +7181,7 @@ export interface ListTopClsLogDataRequest {
7181
7181
  Url: string
7182
7182
 
7183
7183
  /**
7184
- * 接入渠道,默认值为cdn
7184
+ * 接入渠道,cdn或者ecdn,默认值为cdn
7185
7185
  */
7186
7186
  Channel?: string
7187
7187
 
@@ -8561,7 +8561,7 @@ export interface DeleteScdnDomainResponse {
8561
8561
  */
8562
8562
  export interface ListClsLogTopicsRequest {
8563
8563
  /**
8564
- * 接入渠道,默认值为cdn
8564
+ * 接入渠道,cdn或者ecdn,默认值为cdn
8565
8565
  */
8566
8566
  Channel?: string
8567
8567
  }
@@ -9505,7 +9505,7 @@ export interface SearchClsLogRequest {
9505
9505
  Limit: number
9506
9506
 
9507
9507
  /**
9508
- * 接入渠道,默认值为cdn
9508
+ * 接入渠道,cdn或者ecdn,默认值为cdn
9509
9509
  */
9510
9510
  Channel?: string
9511
9511
 
@@ -30,7 +30,9 @@ import {
30
30
  DescribeInstanceAttributesRequest,
31
31
  ConsumerGroup,
32
32
  Assignment,
33
+ AuthorizeTokenResponse,
33
34
  DescribeConsumerGroupResponse,
35
+ CancelAuthorizationTokenResponse,
34
36
  CreateRouteRequest,
35
37
  DeleteTopicRequest,
36
38
  DescribeInstancesResponse,
@@ -40,6 +42,7 @@ import {
40
42
  GroupInfoTopics,
41
43
  TopicResult,
42
44
  Region,
45
+ CreateTokenResponse,
43
46
  DescribeInstancesDetailResponse,
44
47
  CreateInstancePreData,
45
48
  AclRule,
@@ -54,12 +57,13 @@ import {
54
57
  Tag,
55
58
  BatchModifyGroupOffsetsResponse,
56
59
  GroupResponse,
57
- DescribeTopicAttributesResponse,
60
+ CreateTokenRequest,
61
+ DeleteAclRuleRequest,
58
62
  CreateConsumerResponse,
59
63
  RouteResponse,
60
64
  DescribeGroupResponse,
61
- DeleteAclRuleRequest,
62
65
  ModifyInstanceAttributesConfig,
66
+ AuthorizeTokenRequest,
63
67
  OperateResponseData,
64
68
  CreateUserResponse,
65
69
  ModifyInstanceAttributesResponse,
@@ -118,6 +122,8 @@ import {
118
122
  ConsumerGroupTopic,
119
123
  User,
120
124
  GroupOffsetPartition,
125
+ DescribeTopicAttributesResponse,
126
+ CancelAuthorizationTokenRequest,
121
127
  DeleteTopicResponse,
122
128
  DeleteRouteTriggerTimeRequest,
123
129
  DescribeInstancesRequest,
@@ -340,13 +346,13 @@ export class Client extends AbstractClient {
340
346
  }
341
347
 
342
348
  /**
343
- * 获取主题列表详情(仅控制台调用)
349
+ * 取消授权token
344
350
  */
345
- async DescribeTopicDetail(
346
- req: DescribeTopicDetailRequest,
347
- cb?: (error: string, rep: DescribeTopicDetailResponse) => void
348
- ): Promise<DescribeTopicDetailResponse> {
349
- return this.request("DescribeTopicDetail", req, cb)
351
+ async CancelAuthorizationToken(
352
+ req: CancelAuthorizationTokenRequest,
353
+ cb?: (error: string, rep: CancelAuthorizationTokenResponse) => void
354
+ ): Promise<CancelAuthorizationTokenResponse> {
355
+ return this.request("CancelAuthorizationToken", req, cb)
350
356
  }
351
357
 
352
358
  /**
@@ -429,6 +435,26 @@ export class Client extends AbstractClient {
429
435
  return this.request("DeleteUser", req, cb)
430
436
  }
431
437
 
438
+ /**
439
+ * 创建最高权限的token
440
+ */
441
+ async CreateToken(
442
+ req: CreateTokenRequest,
443
+ cb?: (error: string, rep: CreateTokenResponse) => void
444
+ ): Promise<CreateTokenResponse> {
445
+ return this.request("CreateToken", req, cb)
446
+ }
447
+
448
+ /**
449
+ * 获取主题列表详情(仅控制台调用)
450
+ */
451
+ async DescribeTopicDetail(
452
+ req: DescribeTopicDetailRequest,
453
+ cb?: (error: string, rep: DescribeTopicDetailResponse) => void
454
+ ): Promise<DescribeTopicDetailResponse> {
455
+ return this.request("DescribeTopicDetail", req, cb)
456
+ }
457
+
432
458
  /**
433
459
  * 删除ACL
434
460
  */
@@ -550,6 +576,16 @@ export class Client extends AbstractClient {
550
576
  return this.request("DescribeGroupOffsets", req, cb)
551
577
  }
552
578
 
579
+ /**
580
+ * 给实例授权token
581
+ */
582
+ async AuthorizeToken(
583
+ req: AuthorizeTokenRequest,
584
+ cb?: (error: string, rep: AuthorizeTokenResponse) => void
585
+ ): Promise<AuthorizeTokenResponse> {
586
+ return this.request("AuthorizeToken", req, cb)
587
+ }
588
+
553
589
  /**
554
590
  * 接口请求域名:https://ckafka.tencentcloudapi.com
555
591
  本接口(DescribeTopic)用于在用户获取消息队列 CKafka 实例的主题列表