tencentcloud-sdk-nodejs-cdwch 4.0.490
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.
- package/CHANGELOG.md +105134 -0
- package/LICENSE +201 -0
- package/README.md +151 -0
- package/SERVICE_CHANGELOG.md +100306 -0
- package/index.d.ts +2 -0
- package/index.js +6 -0
- package/package.json +47 -0
- package/prettier.config.js +38 -0
- package/products.md +222 -0
- package/src/index.ts +1 -0
- package/src/services/cdwch/index.ts +5 -0
- package/src/services/cdwch/v20200915/cdwch_client.ts +117 -0
- package/src/services/cdwch/v20200915/cdwch_models.ts +314 -0
- package/src/services/cdwch/v20200915/index.ts +6 -0
- package/src/services/index.ts +1 -0
- package/tencentcloud/index.d.ts +1 -0
- package/tencentcloud/index.js +4 -0
- package/tencentcloud/services/cdwch/index.d.ts +6 -0
- package/tencentcloud/services/cdwch/index.js +7 -0
- package/tencentcloud/services/cdwch/v20200915/cdwch_client.d.ts +37 -0
- package/tencentcloud/services/cdwch/v20200915/cdwch_client.js +73 -0
- package/tencentcloud/services/cdwch/v20200915/cdwch_models.d.ts +255 -0
- package/tencentcloud/services/cdwch/v20200915/cdwch_models.js +18 -0
- package/tencentcloud/services/cdwch/v20200915/index.d.ts +6 -0
- package/tencentcloud/services/cdwch/v20200915/index.js +9 -0
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +4 -0
- package/tsconfig.json +33 -0
- package/typings/index.d.ts +2 -0
package/index.d.ts
ADDED
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tencentcloud-sdk-nodejs-cdwch",
|
|
3
|
+
"version": "4.0.490",
|
|
4
|
+
"description": "Tencent Cloud API NODEJS SDK",
|
|
5
|
+
"main": "tencentcloud/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "mocha -t 10000",
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'"
|
|
10
|
+
},
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=10"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"tencentcloudapi",
|
|
16
|
+
"tencentcloud",
|
|
17
|
+
"qcloud",
|
|
18
|
+
"sdk",
|
|
19
|
+
"js",
|
|
20
|
+
"nodejs"
|
|
21
|
+
],
|
|
22
|
+
"author": "tencentcloudapi",
|
|
23
|
+
"license": "Apache-2.0",
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"tencentcloud-sdk-nodejs-common": "^4.0.214"
|
|
26
|
+
},
|
|
27
|
+
"directories": {
|
|
28
|
+
"example": "examples",
|
|
29
|
+
"lib": "lib"
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/tencentcloud/tencentcloud-sdk-nodejs"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/form-data": "^2.5.0",
|
|
37
|
+
"@types/node": "^14.0.26",
|
|
38
|
+
"@types/node-fetch": "^2.5.7",
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
40
|
+
"@typescript-eslint/parser": "^2.34.0",
|
|
41
|
+
"chai": "^4.2.0",
|
|
42
|
+
"eslint": "^6.8.0",
|
|
43
|
+
"mocha": "^8.1.1",
|
|
44
|
+
"ts-node": "^8.10.2",
|
|
45
|
+
"typescript": "^3.9.7"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// prettier.config.js
|
|
2
|
+
module.exports = {
|
|
3
|
+
// 一行最多 100 字符
|
|
4
|
+
printWidth: 100,
|
|
5
|
+
// 使用 4 个空格缩进
|
|
6
|
+
tabWidth: 2,
|
|
7
|
+
// 不使用缩进符,而使用空格
|
|
8
|
+
useTabs: false,
|
|
9
|
+
// 行尾需要有分号
|
|
10
|
+
semi: false,
|
|
11
|
+
// 使用单引号
|
|
12
|
+
singleQuote: false,
|
|
13
|
+
// 对象的 key 仅在必要时用引号
|
|
14
|
+
quoteProps: "as-needed",
|
|
15
|
+
// jsx 不使用单引号,而使用双引号
|
|
16
|
+
jsxSingleQuote: false,
|
|
17
|
+
// 末尾不需要逗号
|
|
18
|
+
trailingComma: "es5",
|
|
19
|
+
// 大括号内的首尾需要空格
|
|
20
|
+
bracketSpacing: true,
|
|
21
|
+
// jsx 标签的反尖括号需要换行
|
|
22
|
+
jsxBracketSameLine: false,
|
|
23
|
+
// 箭头函数,只有一个参数的时候,也需要括号
|
|
24
|
+
arrowParens: "always",
|
|
25
|
+
// 每个文件格式化的范围是文件的全部内容
|
|
26
|
+
rangeStart: 0,
|
|
27
|
+
rangeEnd: Infinity,
|
|
28
|
+
// 不需要写文件开头的 @prettier
|
|
29
|
+
requirePragma: false,
|
|
30
|
+
// 不需要自动在文件开头插入 @prettier
|
|
31
|
+
insertPragma: false,
|
|
32
|
+
// 使用默认的折行标准
|
|
33
|
+
proseWrap: "preserve",
|
|
34
|
+
// 根据显示样式决定 html 要不要折行
|
|
35
|
+
htmlWhitespaceSensitivity: "css",
|
|
36
|
+
// 换行符使用 lf
|
|
37
|
+
endOfLine: "lf",
|
|
38
|
+
}
|
package/products.md
ADDED
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
| 包名 | 产品中文名 | 更新时间 |
|
|
2
|
+
|-|-|-|
|
|
3
|
+
| aa | [活动防刷](https://cloud.tencent.com/document/product/1189) | 2022-08-08 06:02:45 |
|
|
4
|
+
| aai | [](https://cloud.tencent.com/document/product) | 2019-08-08 23:15:13 |
|
|
5
|
+
| acp | [应用合规平台](https://cloud.tencent.com/document/product/1553) | 2022-09-19 11:21:50 |
|
|
6
|
+
| advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2022-11-23 06:03:08 |
|
|
7
|
+
| af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2022-05-23 06:01:54 |
|
|
8
|
+
| afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2022-11-14 06:09:18 |
|
|
9
|
+
| ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2022-04-15 06:01:25 |
|
|
10
|
+
| ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2022-11-16 06:07:01 |
|
|
11
|
+
| antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/1021) | 2022-11-23 06:03:44 |
|
|
12
|
+
| apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
|
|
13
|
+
| ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
|
|
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-11-09 06:09:16 |
|
|
16
|
+
| apm | [应用性能观测](https://cloud.tencent.com/document/product/1463) | 2022-08-22 06:08:36 |
|
|
17
|
+
| as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2022-11-18 06:08:39 |
|
|
18
|
+
| asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2022-11-28 06:10:45 |
|
|
19
|
+
| asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2022-04-04 06:08:40 |
|
|
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-11-01 06:09:07 |
|
|
22
|
+
| bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2022-09-06 06:10:38 |
|
|
23
|
+
| bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2022-08-09 10:42:14 |
|
|
24
|
+
| billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2022-10-31 06:10:22 |
|
|
25
|
+
| bizlive | [商业直播](https://cloud.tencent.com/document/product) | 2020-03-10 01:08:07 |
|
|
26
|
+
| bm | [黑石物理服务器1.0](https://cloud.tencent.com/document/product/386) | 2022-08-09 11:50:03 |
|
|
27
|
+
| bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2022-11-04 06:09:26 |
|
|
28
|
+
| bmeip | [黑石弹性公网IP](https://cloud.tencent.com/document/product/1028) | 2022-04-19 06:04:56 |
|
|
29
|
+
| bmlb | [黑石负载均衡](https://cloud.tencent.com/document/product/1027) | 2022-04-04 06:09:37 |
|
|
30
|
+
| bmvpc | [黑石私有网络](https://cloud.tencent.com/document/product/1024) | 2022-04-15 06:02:36 |
|
|
31
|
+
| bpaas | [商业流程服务](https://cloud.tencent.com/document/product/1083) | 2022-09-30 06:12:23 |
|
|
32
|
+
| bri | [业务风险情报](https://cloud.tencent.com/document/product/1064) | 2021-01-07 08:02:40 |
|
|
33
|
+
| bsca | [二进制软件成分分析](https://cloud.tencent.com/document/product/1483) | 2022-09-29 06:12:03 |
|
|
34
|
+
| btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2022-04-04 06:10:17 |
|
|
35
|
+
| cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2022-11-08 06:11:07 |
|
|
36
|
+
| captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2022-11-22 06:12:35 |
|
|
37
|
+
| car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2022-11-18 06:12:01 |
|
|
38
|
+
| casb | [云访问安全代理](https://cloud.tencent.com/document/product/1303) | 2022-10-31 06:12:52 |
|
|
39
|
+
| cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2022-11-09 06:14:16 |
|
|
40
|
+
| cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2022-10-27 06:14:10 |
|
|
41
|
+
| ccc | [云呼叫中心](https://cloud.tencent.com/document/product/679) | 2022-11-21 06:12:39 |
|
|
42
|
+
| cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2022-11-25 06:13:56 |
|
|
43
|
+
| cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2022-07-30 15:07:54 |
|
|
44
|
+
| cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2022-10-31 06:15:07 |
|
|
45
|
+
| cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2022-10-31 06:15:53 |
|
|
46
|
+
| cdwch | [云数据仓库 ClickHouse](https://cloud.tencent.com/document/product/1299) | 2022-11-25 17:33:17 |
|
|
47
|
+
| cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2022-09-26 06:16:02 |
|
|
48
|
+
| cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2022-11-21 06:14:58 |
|
|
49
|
+
| cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2022-11-28 06:18:58 |
|
|
50
|
+
| chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2022-07-04 06:04:36 |
|
|
51
|
+
| ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2022-09-27 06:14:52 |
|
|
52
|
+
| cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2022-06-27 06:06:02 |
|
|
53
|
+
| cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
|
|
54
|
+
| cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
|
|
55
|
+
| ckafka | [消息队列 CKafka](https://cloud.tencent.com/document/product/597) | 2022-11-03 06:14:10 |
|
|
56
|
+
| clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2022-11-01 06:15:44 |
|
|
57
|
+
| cloudaudit | [云审计](https://cloud.tencent.com/document/product/629) | 2022-11-24 06:19:10 |
|
|
58
|
+
| cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2022-11-02 06:13:26 |
|
|
59
|
+
| cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2022-10-31 06:18:55 |
|
|
60
|
+
| cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2022-11-07 06:12:05 |
|
|
61
|
+
| cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2022-08-24 06:19:05 |
|
|
62
|
+
| cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2022-11-16 06:15:44 |
|
|
63
|
+
| cms | [内容安全](https://cloud.tencent.com/document/product) | 2020-10-29 08:03:08 |
|
|
64
|
+
| cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2022-11-25 06:20:42 |
|
|
65
|
+
| cr | [金融联络机器人](https://cloud.tencent.com/document/product/656) | 2021-02-24 08:03:24 |
|
|
66
|
+
| cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2022-11-23 06:18:34 |
|
|
67
|
+
| cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2022-11-17 06:19:07 |
|
|
68
|
+
| cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
|
|
69
|
+
| cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2022-11-23 06:21:08 |
|
|
70
|
+
| dasb | [T-Sec-堡垒机(BH)](https://cloud.tencent.com/document/product/1025) | 2022-11-04 06:19:07 |
|
|
71
|
+
| dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
|
|
72
|
+
| dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2022-07-29 06:07:15 |
|
|
73
|
+
| dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2022-09-29 06:25:38 |
|
|
74
|
+
| dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2022-11-23 06:23:05 |
|
|
75
|
+
| dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2022-10-26 06:29:47 |
|
|
76
|
+
| dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2022-11-23 06:23:24 |
|
|
77
|
+
| dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2022-11-24 06:27:21 |
|
|
78
|
+
| dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2022-11-25 06:28:38 |
|
|
79
|
+
| domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2022-05-24 06:11:36 |
|
|
80
|
+
| drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2022-04-04 06:38:48 |
|
|
81
|
+
| ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2022-10-31 06:27:09 |
|
|
82
|
+
| dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
|
|
83
|
+
| dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2022-11-24 06:29:08 |
|
|
84
|
+
| eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2022-08-23 06:27:55 |
|
|
85
|
+
| ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2022-04-04 06:39:27 |
|
|
86
|
+
| ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2022-04-08 06:06:57 |
|
|
87
|
+
| ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2022-09-09 06:24:10 |
|
|
88
|
+
| eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2022-05-13 06:11:29 |
|
|
89
|
+
| eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2022-11-16 06:22:42 |
|
|
90
|
+
| emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2022-11-24 06:31:27 |
|
|
91
|
+
| es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2022-11-17 06:25:50 |
|
|
92
|
+
| ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2022-11-25 18:17:09 |
|
|
93
|
+
| essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-11-25 18:17:38 |
|
|
94
|
+
| facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2022-06-15 06:09:10 |
|
|
95
|
+
| faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2022-11-16 06:23:45 |
|
|
96
|
+
| fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2022-04-04 06:43:06 |
|
|
97
|
+
| ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2022-04-04 06:43:12 |
|
|
98
|
+
| gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2022-11-23 06:29:46 |
|
|
99
|
+
| gme | [游戏多媒体引擎](https://cloud.tencent.com/document/product/607) | 2022-11-24 06:34:16 |
|
|
100
|
+
| gpm | [游戏玩家匹配](https://cloud.tencent.com/document/product/1294) | 2022-07-11 06:12:36 |
|
|
101
|
+
| gs | [云游戏](https://cloud.tencent.com/document/product/1162) | 2022-11-18 06:29:55 |
|
|
102
|
+
| gse | [游戏服务器伸缩](https://cloud.tencent.com/document/product/1165) | 2022-07-11 06:12:44 |
|
|
103
|
+
| habo | [](https://cloud.tencent.com/document/product) | 2019-05-09 19:37:22 |
|
|
104
|
+
| hcm | [数学作业批改](https://cloud.tencent.com/document/product/1004) | 2022-04-04 06:45:58 |
|
|
105
|
+
| iai | [人脸识别](https://cloud.tencent.com/document/product/867) | 2022-11-21 06:30:35 |
|
|
106
|
+
| ic | [物联网卡](https://cloud.tencent.com/document/product/636) | 2022-11-18 06:30:40 |
|
|
107
|
+
| icr | [对话机器人](https://cloud.tencent.com/document/product/1268) | 2022-04-13 06:46:31 |
|
|
108
|
+
| ie | [智能编辑](https://cloud.tencent.com/document/product/1186) | 2022-10-25 06:37:05 |
|
|
109
|
+
| iecp | [物联网边缘计算平台](https://cloud.tencent.com/document/product/1118) | 2022-04-12 06:15:04 |
|
|
110
|
+
| iir | [智能识图](https://cloud.tencent.com/document/product/1217) | 2022-04-04 06:48:05 |
|
|
111
|
+
| ims | [图片内容安全](https://cloud.tencent.com/document/product/1125) | 2022-09-29 06:34:25 |
|
|
112
|
+
| iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2022-04-04 06:48:08 |
|
|
113
|
+
| iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2022-08-16 06:27:22 |
|
|
114
|
+
| iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2022-11-21 06:32:42 |
|
|
115
|
+
| iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2022-04-04 06:49:46 |
|
|
116
|
+
| iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2022-11-03 06:28:16 |
|
|
117
|
+
| iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2022-11-17 06:31:48 |
|
|
118
|
+
| irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2022-08-19 06:27:03 |
|
|
119
|
+
| ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2022-10-28 11:32:11 |
|
|
120
|
+
| kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2022-11-01 06:32:51 |
|
|
121
|
+
| lcic | [低代码互动课堂](https://cloud.tencent.com/document/product/1639) | 2022-10-19 06:31:50 |
|
|
122
|
+
| lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2022-11-28 06:47:35 |
|
|
123
|
+
| live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2022-11-18 06:36:08 |
|
|
124
|
+
| lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
|
|
125
|
+
| lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
|
|
126
|
+
| mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2022-11-23 06:38:36 |
|
|
127
|
+
| market | [云市场](https://cloud.tencent.com/document/product/306) | 2022-04-04 06:57:43 |
|
|
128
|
+
| memcached | [云数据库Memcached](https://cloud.tencent.com/document/product/241) | 2022-10-31 06:39:12 |
|
|
129
|
+
| mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
|
|
130
|
+
| mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2022-08-25 06:38:57 |
|
|
131
|
+
| mna | [移动网络加速](https://cloud.tencent.com/document/product/1385) | 2022-11-17 11:16:37 |
|
|
132
|
+
| mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2022-11-28 06:50:22 |
|
|
133
|
+
| monitor | [云监控](https://cloud.tencent.com/document/product/248) | 2022-11-18 06:38:09 |
|
|
134
|
+
| mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2022-11-23 06:41:18 |
|
|
135
|
+
| mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2022-06-28 06:14:04 |
|
|
136
|
+
| ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2022-11-09 06:43:15 |
|
|
137
|
+
| msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2022-04-04 07:00:13 |
|
|
138
|
+
| mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
|
|
139
|
+
| nlp | [自然语言处理](https://cloud.tencent.com/document/product/271) | 2022-04-13 07:00:13 |
|
|
140
|
+
| npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
|
|
141
|
+
| oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2022-11-24 06:45:29 |
|
|
142
|
+
| ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2022-11-24 06:45:42 |
|
|
143
|
+
| organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2022-11-18 06:41:15 |
|
|
144
|
+
| partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2022-11-17 06:38:25 |
|
|
145
|
+
| pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2022-04-04 07:02:02 |
|
|
146
|
+
| postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2022-11-24 06:46:55 |
|
|
147
|
+
| privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2022-10-26 06:52:45 |
|
|
148
|
+
| pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2022-11-18 06:42:29 |
|
|
149
|
+
| rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2022-09-23 06:43:17 |
|
|
150
|
+
| redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2022-11-28 06:57:10 |
|
|
151
|
+
| region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2022-07-27 21:10:02 |
|
|
152
|
+
| rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2022-04-04 07:04:04 |
|
|
153
|
+
| rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
|
|
154
|
+
| rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2022-11-24 06:48:50 |
|
|
155
|
+
| scf | [云函数](https://cloud.tencent.com/document/product/583) | 2022-11-24 06:49:18 |
|
|
156
|
+
| ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2022-11-03 06:36:44 |
|
|
157
|
+
| smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2022-11-23 06:47:21 |
|
|
158
|
+
| smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2022-04-04 07:05:41 |
|
|
159
|
+
| sms | [短信](https://cloud.tencent.com/document/product/382) | 2022-11-15 06:36:50 |
|
|
160
|
+
| soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2022-11-07 06:33:46 |
|
|
161
|
+
| solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
|
|
162
|
+
| sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2022-11-16 06:36:12 |
|
|
163
|
+
| ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2022-08-16 06:39:20 |
|
|
164
|
+
| ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2022-11-21 06:46:02 |
|
|
165
|
+
| sslpod | [SSL证书监控SSLPod](https://cloud.tencent.com/document/product/1084) | 2022-10-31 06:47:43 |
|
|
166
|
+
| ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2022-10-20 06:38:33 |
|
|
167
|
+
| sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2022-07-07 06:15:25 |
|
|
168
|
+
| taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2022-09-12 06:39:19 |
|
|
169
|
+
| tag | [标签](https://cloud.tencent.com/document/product/651) | 2022-11-04 06:36:49 |
|
|
170
|
+
| tan | [碳引擎](https://cloud.tencent.com/document/product/1498) | 2022-07-19 06:17:34 |
|
|
171
|
+
| tat | [自动化助手](https://cloud.tencent.com/document/product/1340) | 2022-10-31 06:48:20 |
|
|
172
|
+
| tav | [文件检测](https://cloud.tencent.com/document/product) | 2019-11-28 22:10:04 |
|
|
173
|
+
| tbaas | [腾讯云区块链服务平台 TBaaS](https://cloud.tencent.com/document/product/663) | 2022-11-24 06:52:49 |
|
|
174
|
+
| tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 |
|
|
175
|
+
| tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2022-04-04 07:09:07 |
|
|
176
|
+
| tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2022-08-23 06:49:36 |
|
|
177
|
+
| tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2022-11-04 06:37:38 |
|
|
178
|
+
| tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2022-08-23 06:50:39 |
|
|
179
|
+
| tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
|
|
180
|
+
| tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
|
|
181
|
+
| tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2022-11-24 06:54:17 |
|
|
182
|
+
| tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2022-11-08 06:41:24 |
|
|
183
|
+
| tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2022-11-25 06:59:05 |
|
|
184
|
+
| tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2022-10-21 06:47:14 |
|
|
185
|
+
| tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2022-11-17 06:47:13 |
|
|
186
|
+
| tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2022-11-25 07:03:54 |
|
|
187
|
+
| tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2022-10-10 06:42:56 |
|
|
188
|
+
| tem | [弹性微服务 TEM](https://cloud.tencent.com/document/product/1371) | 2022-11-17 06:48:59 |
|
|
189
|
+
| teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2022-11-28 07:11:19 |
|
|
190
|
+
| thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2022-11-16 06:42:38 |
|
|
191
|
+
| tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
|
|
192
|
+
| tic | [资源编排 TIC](https://cloud.tencent.com/document/product/1213) | 2022-10-31 06:55:14 |
|
|
193
|
+
| ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 |
|
|
194
|
+
| tics | [威胁情报云查服务](https://cloud.tencent.com/document/product/1013) | 2022-04-04 07:16:59 |
|
|
195
|
+
| tiems | [腾讯云 TI 平台 TI-EMS ](https://cloud.tencent.com/document/product/1120) | 2022-07-19 06:19:39 |
|
|
196
|
+
| tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2022-11-22 07:01:36 |
|
|
197
|
+
| tione | [腾讯云 TI 平台 TI-ONE](https://cloud.tencent.com/document/product/851) | 2022-11-24 07:02:07 |
|
|
198
|
+
| tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2022-11-24 07:03:21 |
|
|
199
|
+
| tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2022-11-22 07:03:00 |
|
|
200
|
+
| tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
|
|
201
|
+
| tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2022-11-18 06:55:59 |
|
|
202
|
+
| tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2022-11-02 06:48:15 |
|
|
203
|
+
| trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2022-11-22 07:04:58 |
|
|
204
|
+
| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2022-11-21 06:56:52 |
|
|
205
|
+
| tse | [微服务引擎 TSE](https://cloud.tencent.com/document/product/1364) | 2022-10-31 06:58:14 |
|
|
206
|
+
| tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2022-10-31 06:58:25 |
|
|
207
|
+
| tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2022-10-31 06:59:44 |
|
|
208
|
+
| tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2022-11-24 07:07:34 |
|
|
209
|
+
| ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2022-04-04 07:22:44 |
|
|
210
|
+
| vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2022-11-16 06:46:30 |
|
|
211
|
+
| vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2022-04-04 07:22:54 |
|
|
212
|
+
| vod | [云点播](https://cloud.tencent.com/document/product/266) | 2022-11-28 07:19:44 |
|
|
213
|
+
| vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2022-11-22 07:10:00 |
|
|
214
|
+
| waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2022-11-16 06:48:54 |
|
|
215
|
+
| wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2022-10-12 07:10:28 |
|
|
216
|
+
| wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2022-11-23 07:08:01 |
|
|
217
|
+
| wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
|
|
218
|
+
| yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2022-10-28 07:02:46 |
|
|
219
|
+
| youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
|
|
220
|
+
| yunjing | [主机安全](https://cloud.tencent.com/document/product) | 2020-09-15 08:08:47 |
|
|
221
|
+
| yunsou | [腾讯云搜TCS](https://cloud.tencent.com/document/product/270) | 2022-10-31 07:04:25 |
|
|
222
|
+
| zj | [珠玑](https://cloud.tencent.com/document/product) | 2020-11-17 08:10:59 |
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./services"
|
|
@@ -0,0 +1,117 @@
|
|
|
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 * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common"
|
|
19
|
+
import {
|
|
20
|
+
DescribeInstanceShardsRequest,
|
|
21
|
+
ModifyUserNewPrivilegeRequest,
|
|
22
|
+
CreateBackUpScheduleRequest,
|
|
23
|
+
DescribeInstanceShardsResponse,
|
|
24
|
+
OpenBackUpRequest,
|
|
25
|
+
ModifyClusterConfigsResponse,
|
|
26
|
+
BackupTableContent,
|
|
27
|
+
OpenBackUpResponse,
|
|
28
|
+
ConfigSubmitContext,
|
|
29
|
+
ActionAlterCkUserResponse,
|
|
30
|
+
DescribeCkSqlApisRequest,
|
|
31
|
+
ActionAlterCkUserRequest,
|
|
32
|
+
CkUserAlterInfo,
|
|
33
|
+
CreateBackUpScheduleResponse,
|
|
34
|
+
ModifyClusterConfigsRequest,
|
|
35
|
+
DescribeCkSqlApisResponse,
|
|
36
|
+
ModifyUserNewPrivilegeResponse,
|
|
37
|
+
} from "./cdwch_models"
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* cdwch client
|
|
41
|
+
* @class
|
|
42
|
+
*/
|
|
43
|
+
export class Client extends TencentCloudCommon.AbstractClient {
|
|
44
|
+
constructor(clientConfig: TencentCloudCommon.ClientConfig) {
|
|
45
|
+
super("cdwch.tencentcloudapi.com", "2020-09-15", clientConfig)
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* 创建或者修改备份策略
|
|
50
|
+
*/
|
|
51
|
+
async CreateBackUpSchedule(
|
|
52
|
+
req: CreateBackUpScheduleRequest,
|
|
53
|
+
cb?: (error: string, rep: CreateBackUpScheduleResponse) => void
|
|
54
|
+
): Promise<CreateBackUpScheduleResponse> {
|
|
55
|
+
return this.request("CreateBackUpSchedule", req, cb)
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* 针对驱动sql命令查询ck集群接口
|
|
60
|
+
*/
|
|
61
|
+
async DescribeCkSqlApis(
|
|
62
|
+
req: DescribeCkSqlApisRequest,
|
|
63
|
+
cb?: (error: string, rep: DescribeCkSqlApisResponse) => void
|
|
64
|
+
): Promise<DescribeCkSqlApisResponse> {
|
|
65
|
+
return this.request("DescribeCkSqlApis", req, cb)
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* 新增和修改用户接口
|
|
70
|
+
*/
|
|
71
|
+
async ActionAlterCkUser(
|
|
72
|
+
req: ActionAlterCkUserRequest,
|
|
73
|
+
cb?: (error: string, rep: ActionAlterCkUserResponse) => void
|
|
74
|
+
): Promise<ActionAlterCkUserResponse> {
|
|
75
|
+
return this.request("ActionAlterCkUser", req, cb)
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* 开启或者关闭策略
|
|
80
|
+
*/
|
|
81
|
+
async OpenBackUp(
|
|
82
|
+
req: OpenBackUpRequest,
|
|
83
|
+
cb?: (error: string, rep: OpenBackUpResponse) => void
|
|
84
|
+
): Promise<OpenBackUpResponse> {
|
|
85
|
+
return this.request("OpenBackUp", req, cb)
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* 在集群配置页面修改集群配置文件接口,xml模式
|
|
90
|
+
*/
|
|
91
|
+
async ModifyClusterConfigs(
|
|
92
|
+
req: ModifyClusterConfigsRequest,
|
|
93
|
+
cb?: (error: string, rep: ModifyClusterConfigsResponse) => void
|
|
94
|
+
): Promise<ModifyClusterConfigsResponse> {
|
|
95
|
+
return this.request("ModifyClusterConfigs", req, cb)
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* 针对ck账号的权限做管控(新版)
|
|
100
|
+
*/
|
|
101
|
+
async ModifyUserNewPrivilege(
|
|
102
|
+
req?: ModifyUserNewPrivilegeRequest,
|
|
103
|
+
cb?: (error: string, rep: ModifyUserNewPrivilegeResponse) => void
|
|
104
|
+
): Promise<ModifyUserNewPrivilegeResponse> {
|
|
105
|
+
return this.request("ModifyUserNewPrivilege", req, cb)
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* 获取实例shard信息列表
|
|
110
|
+
*/
|
|
111
|
+
async DescribeInstanceShards(
|
|
112
|
+
req: DescribeInstanceShardsRequest,
|
|
113
|
+
cb?: (error: string, rep: DescribeInstanceShardsResponse) => void
|
|
114
|
+
): Promise<DescribeInstanceShardsResponse> {
|
|
115
|
+
return this.request("DescribeInstanceShards", req, cb)
|
|
116
|
+
}
|
|
117
|
+
}
|