tencentcloud-sdk-nodejs-dlc 4.0.1019 → 4.0.1035
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/README.md +55 -28
- package/package.json +1 -1
- package/src/services/dlc/v20210125/dlc_models.ts +57 -17
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +57 -17
- package/products.md +0 -264
package/README.md
CHANGED
@@ -1,36 +1,66 @@
|
|
1
1
|
# 简介
|
2
2
|
|
3
|
-
欢迎使用腾讯云开发者工具套件(SDK),
|
4
|
-
为方便
|
3
|
+
欢迎使用腾讯云开发者工具套件(SDK),Node.js SDK 4.0 是云 API 3.0 平台的配套工具。
|
4
|
+
为方便 Node.js 开发者调试和接入腾讯云产品 API,这里向您介绍适用于 Node.js 的腾讯云开发工具包,并提供首次使用开发工具包的简单示例。让您快速获取腾讯云 Node.js SDK 并开始调用。
|
5
5
|
|
6
6
|
# 依赖环境
|
7
7
|
|
8
|
-
1.
|
9
|
-
2.
|
10
|
-
3. 获取 SecretID、SecretKey 以及调用地址(endpoint),endpoint 一般形式为\*.tencentcloudapi.com,如 CVM 的调用地址为 cvm.tencentcloudapi.com,具体参考各产品说明。
|
8
|
+
1. Node.js 10.0.0 版本及以上。
|
9
|
+
2. 注意:部分产品需在 [腾讯云控制台](https://console.cloud.tencent.com/) 开通服务后才能使用。
|
11
10
|
|
12
11
|
# 获取安装
|
13
12
|
|
14
|
-
|
13
|
+
使用 SDK 需要 API 密钥,可前往 [腾讯云控制台 - 访问密钥](https://console.cloud.tencent.com/cam/capi) 页面申请,API 密钥包括 SecretID 和 SecretKey,密钥须严格保管,避免泄露。
|
15
14
|
|
16
|
-
## 通过
|
15
|
+
## 通过 npm 安装
|
17
16
|
|
18
|
-
通过 npm 获取安装是使用
|
17
|
+
通过 npm 获取安装是使用 Node.js SDK 的推荐方法,关于 npm 详细可参考 [NPM 官网](https://www.npmjs.com/) 。
|
19
18
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
19
|
+
### 安装指定产品 SDK(推荐)
|
20
|
+
|
21
|
+
安装 CVM SDK:
|
22
|
+
|
23
|
+
```
|
24
|
+
npm install tencentcloud-sdk-nodejs-cvm --save
|
25
|
+
```
|
26
|
+
|
27
|
+
安装 VPC SDK:
|
28
|
+
|
29
|
+
```
|
30
|
+
npm install tencentcloud-sdk-nodejs-vpc --save
|
31
|
+
```
|
32
|
+
|
33
|
+
具体产品的缩写表请参考 [products.md](./products.md) 中的包名字段。
|
34
|
+
|
35
|
+
安装指定产品 SDK 后,注意修改引入的包名:
|
36
|
+
|
37
|
+
```diff
|
38
|
+
- const tencentcloud = require("tencentcloud-sdk-nodejs")
|
39
|
+
+ const { cvm } = require("tencentcloud-sdk-nodejs-cvm")
|
40
|
+
|
41
|
+
- const CvmClient = tencentcloud.cvm.v20170312.Client
|
42
|
+
+ const CvmClient = cvm.v20170312.Client
|
43
|
+
```
|
44
|
+
|
45
|
+
### 安装全产品 SDK
|
46
|
+
|
47
|
+
```
|
48
|
+
npm install tencentcloud-sdk-nodejs --save
|
49
|
+
```
|
50
|
+
|
51
|
+
全产品 SDK 包含了所有云产品的调用代码,体积偏大,对体积敏感的场景,推荐安装指定产品 SDK。
|
24
52
|
|
25
53
|
## 通过源码包安装
|
26
54
|
|
27
|
-
1. 前往 [
|
55
|
+
1. 前往 [GitHub 仓库](https://github.com/tencentcloud/tencentcloud-sdk-nodejs) 或者 [Gitee 仓库](https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs) 下载源码压缩包。
|
28
56
|
2. 解压源码包到您项目合适的位置,例如 `sdk/tencentcloud-sdk-nodejs`。
|
29
57
|
3. 执行 `npm install ./sdk/tencentcloud-sdk-nodejs`。
|
30
|
-
4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入
|
58
|
+
4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入 SDK,具体可参考示例。
|
31
59
|
|
32
60
|
# 示例
|
33
61
|
|
62
|
+
以云服务器产品查询可用区列表接口为例。
|
63
|
+
|
34
64
|
```js
|
35
65
|
const tencentcloud = require("tencentcloud-sdk-nodejs")
|
36
66
|
|
@@ -73,7 +103,7 @@ client.DescribeZones().then(
|
|
73
103
|
)
|
74
104
|
```
|
75
105
|
|
76
|
-
在支持
|
106
|
+
在支持 TypeScript 项目中,采用如下方式调用
|
77
107
|
|
78
108
|
```js
|
79
109
|
import * as tencentcloud from "tencentcloud-sdk-nodejs"
|
@@ -83,10 +113,11 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
83
113
|
// ...
|
84
114
|
```
|
85
115
|
|
86
|
-
|
116
|
+
实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts)。
|
87
117
|
|
88
118
|
## Common Client
|
89
|
-
|
119
|
+
|
120
|
+
从 4.0.714 版本开始,腾讯云 Node.js SDK 支持使用泛用性的 API 调用方式(Common Client)进行请求。您只需要安装 tencentcloud-sdk-nodejs-common 包,即可向任何产品发起调用。
|
90
121
|
|
91
122
|
**注意,您必须明确知道您调用的接口所需参数,否则可能会调用失败。**
|
92
123
|
|
@@ -94,19 +125,19 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
94
125
|
|
95
126
|
## 更多示例
|
96
127
|
|
97
|
-
|
128
|
+
请参考 [examples](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/tree/master/examples) 目录。
|
98
129
|
|
99
130
|
# 相关配置
|
100
131
|
|
101
132
|
## 代理
|
102
133
|
|
103
|
-
如果是有代理的环境下,需要配置代理,请在创建Client时传入 [profile.httpProfile.proxy](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
|
134
|
+
如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
|
104
135
|
|
105
136
|
# 凭证管理
|
106
137
|
|
107
138
|
除显式传入凭证外,从 `v4.0.506` 起支持 [腾讯云实例角色](https://cloud.tencent.com/document/product/213/47668)
|
108
139
|
|
109
|
-
在您为实例绑定角色后,您可以在实例中访问相关元数据接口获取临时凭证。用法可参考 [js示例代码](./examples/cvm_role.js) 或 [ts示例代码](./examples/cvm_role.ts)
|
140
|
+
在您为实例绑定角色后,您可以在实例中访问相关元数据接口获取临时凭证。用法可参考 [js 示例代码](./examples/cvm_role.js) 或 [ts 示例代码](./examples/cvm_role.ts)
|
110
141
|
```javascript
|
111
142
|
// ...
|
112
143
|
const CvmRoleCredential = require("tencentcloud-sdk-nodejs/tencentcloud/common/cvm_role_credential").default
|
@@ -118,20 +149,16 @@ new XxxClient({
|
|
118
149
|
})
|
119
150
|
```
|
120
151
|
|
121
|
-
# 旧版 SDK
|
122
|
-
|
123
|
-
我们推荐使用新版 NODEJS SDK,如果一定要用旧版 SDK,请前往[github 仓库](https://github.com/CFETeam/qcloudapi-sdk)下载。
|
124
|
-
|
125
152
|
# 常见问题
|
126
|
-
- webpack打包出错/浏览器报错
|
153
|
+
- webpack 打包出错/浏览器报错
|
127
154
|
|
128
|
-
请**务必不要**将此
|
155
|
+
请**务必不要**将此 SDK 直接用于 Web 前端(包括小程序等),暴露密钥在这些环境非常不安全。
|
129
156
|
|
130
|
-
正确的做法是在自己的服务端引用此
|
157
|
+
正确的做法是在自己的服务端引用此 SDK,并保存好密钥,做好请求鉴权,前端再调用服务端执行业务流程。
|
131
158
|
|
132
159
|
- `The "original" argument must be of type Function.`
|
133
160
|
|
134
|
-
通常是因为
|
161
|
+
通常是因为 Node.js 版本低于 `v10` ,或处于非 Node.js 环境,请再次确认执行环境。
|
135
162
|
|
136
163
|
- 请求不通
|
137
164
|
|
package/package.json
CHANGED
@@ -383,6 +383,10 @@ export interface DropDMSDatabaseRequest {
|
|
383
383
|
* 是否级联删除
|
384
384
|
*/
|
385
385
|
Cascade?: boolean
|
386
|
+
/**
|
387
|
+
* 数据源连接名
|
388
|
+
*/
|
389
|
+
DatasourceConnectionName?: string
|
386
390
|
}
|
387
391
|
|
388
392
|
/**
|
@@ -542,6 +546,10 @@ export interface DescribeDMSPartitionsRequest {
|
|
542
546
|
* 表达式
|
543
547
|
*/
|
544
548
|
Expression?: string
|
549
|
+
/**
|
550
|
+
* 数据源连接名
|
551
|
+
*/
|
552
|
+
DatasourceConnectionName?: string
|
545
553
|
}
|
546
554
|
|
547
555
|
/**
|
@@ -1325,6 +1333,10 @@ export interface CreateDMSTableRequest {
|
|
1325
1333
|
* 表名称
|
1326
1334
|
*/
|
1327
1335
|
Name?: string
|
1336
|
+
/**
|
1337
|
+
* 数据源连接名
|
1338
|
+
*/
|
1339
|
+
DatasourceConnectionName?: string
|
1328
1340
|
}
|
1329
1341
|
|
1330
1342
|
/**
|
@@ -3437,12 +3449,10 @@ export interface Users {
|
|
3437
3449
|
export interface DataEngineConfigPair {
|
3438
3450
|
/**
|
3439
3451
|
* 配置项
|
3440
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3441
3452
|
*/
|
3442
3453
|
ConfigItem: string
|
3443
3454
|
/**
|
3444
3455
|
* 配置值
|
3445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3446
3456
|
*/
|
3447
3457
|
ConfigValue: string
|
3448
3458
|
}
|
@@ -3678,6 +3688,10 @@ export interface AlterDMSTableRequest {
|
|
3678
3688
|
* 当前表名
|
3679
3689
|
*/
|
3680
3690
|
Name?: string
|
3691
|
+
/**
|
3692
|
+
* 数据源连接名
|
3693
|
+
*/
|
3694
|
+
DatasourceConnectionName?: string
|
3681
3695
|
}
|
3682
3696
|
|
3683
3697
|
/**
|
@@ -4042,9 +4056,13 @@ export interface DescribeDMSDatabaseRequest {
|
|
4042
4056
|
*/
|
4043
4057
|
SchemaName?: string
|
4044
4058
|
/**
|
4045
|
-
*
|
4059
|
+
* 匹配规则,只支持填*
|
4046
4060
|
*/
|
4047
4061
|
Pattern?: string
|
4062
|
+
/**
|
4063
|
+
* 数据源连接名
|
4064
|
+
*/
|
4065
|
+
DatasourceConnectionName?: string
|
4048
4066
|
}
|
4049
4067
|
|
4050
4068
|
/**
|
@@ -4608,6 +4626,10 @@ export interface AlterDMSDatabaseRequest {
|
|
4608
4626
|
* 基础对象
|
4609
4627
|
*/
|
4610
4628
|
Asset?: Asset
|
4629
|
+
/**
|
4630
|
+
* 数据源连接名
|
4631
|
+
*/
|
4632
|
+
DatasourceConnectionName?: string
|
4611
4633
|
}
|
4612
4634
|
|
4613
4635
|
/**
|
@@ -4920,17 +4942,14 @@ export interface DeleteUserRequest {
|
|
4920
4942
|
export interface DataEngineScaleInfoDetail {
|
4921
4943
|
/**
|
4922
4944
|
* 统计开始时间,格式为:yyyy-MM-dd HH:mm:ss
|
4923
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4924
4945
|
*/
|
4925
4946
|
StartTime?: string
|
4926
4947
|
/**
|
4927
4948
|
* 统计结束时间,格式为:yyyy-MM-dd HH:mm:ss
|
4928
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4929
4949
|
*/
|
4930
4950
|
EndTime?: string
|
4931
4951
|
/**
|
4932
4952
|
* 当前统计时间段,引擎规格
|
4933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4934
4953
|
*/
|
4935
4954
|
CU?: number
|
4936
4955
|
}
|
@@ -5217,7 +5236,6 @@ export interface DataEngineBasicInfo {
|
|
5217
5236
|
UpdateTime?: number
|
5218
5237
|
/**
|
5219
5238
|
* 返回信息
|
5220
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5221
5239
|
*/
|
5222
5240
|
Message?: string
|
5223
5241
|
/**
|
@@ -5226,17 +5244,14 @@ export interface DataEngineBasicInfo {
|
|
5226
5244
|
DataEngineId?: string
|
5227
5245
|
/**
|
5228
5246
|
* 引擎类型,有效值:PrestoSQL/SparkSQL/SparkBatch
|
5229
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5230
5247
|
*/
|
5231
5248
|
DataEngineType?: string
|
5232
5249
|
/**
|
5233
5250
|
* 用户ID
|
5234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5235
5251
|
*/
|
5236
5252
|
AppId?: number
|
5237
5253
|
/**
|
5238
5254
|
* 账号ID
|
5239
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5240
5255
|
*/
|
5241
5256
|
UserUin?: string
|
5242
5257
|
}
|
@@ -5427,6 +5442,10 @@ export interface AlterDMSPartitionRequest {
|
|
5427
5442
|
* 分区
|
5428
5443
|
*/
|
5429
5444
|
Partition?: DMSPartition
|
5445
|
+
/**
|
5446
|
+
* 数据源连接名
|
5447
|
+
*/
|
5448
|
+
DatasourceConnectionName?: string
|
5430
5449
|
}
|
5431
5450
|
|
5432
5451
|
/**
|
@@ -5982,7 +6001,7 @@ export interface DescribeDMSTablesRequest {
|
|
5982
6001
|
*/
|
5983
6002
|
Name?: string
|
5984
6003
|
/**
|
5985
|
-
*
|
6004
|
+
* catalog类型
|
5986
6005
|
*/
|
5987
6006
|
Catalog?: string
|
5988
6007
|
/**
|
@@ -5990,7 +6009,7 @@ export interface DescribeDMSTablesRequest {
|
|
5990
6009
|
*/
|
5991
6010
|
Keyword?: string
|
5992
6011
|
/**
|
5993
|
-
*
|
6012
|
+
* 查询模式,只支持填*
|
5994
6013
|
*/
|
5995
6014
|
Pattern?: string
|
5996
6015
|
/**
|
@@ -6021,6 +6040,10 @@ export interface DescribeDMSTablesRequest {
|
|
6021
6040
|
* 排序字段:true:升序(默认),false:降序
|
6022
6041
|
*/
|
6023
6042
|
Asc?: boolean
|
6043
|
+
/**
|
6044
|
+
* 数据源连接名
|
6045
|
+
*/
|
6046
|
+
DatasourceConnectionName?: string
|
6024
6047
|
}
|
6025
6048
|
|
6026
6049
|
/**
|
@@ -6662,6 +6685,10 @@ export interface DMSPartition {
|
|
6662
6685
|
* 存储对象
|
6663
6686
|
*/
|
6664
6687
|
Sds?: DMSSds
|
6688
|
+
/**
|
6689
|
+
* 数据源连接名
|
6690
|
+
*/
|
6691
|
+
DatasourceConnectionName?: string
|
6665
6692
|
}
|
6666
6693
|
|
6667
6694
|
/**
|
@@ -7348,6 +7375,10 @@ export interface CreateDMSDatabaseRequest {
|
|
7348
7375
|
* 数据库名称
|
7349
7376
|
*/
|
7350
7377
|
Name?: string
|
7378
|
+
/**
|
7379
|
+
* 数据源连接名
|
7380
|
+
*/
|
7381
|
+
DatasourceConnectionName?: string
|
7351
7382
|
}
|
7352
7383
|
|
7353
7384
|
/**
|
@@ -7922,6 +7953,10 @@ export interface DropDMSPartitionsRequest {
|
|
7922
7953
|
* 是否删除分区数据
|
7923
7954
|
*/
|
7924
7955
|
DeleteData?: boolean
|
7956
|
+
/**
|
7957
|
+
* 数据源连接名
|
7958
|
+
*/
|
7959
|
+
DatasourceConnectionName?: string
|
7925
7960
|
}
|
7926
7961
|
|
7927
7962
|
/**
|
@@ -9836,17 +9871,14 @@ export interface DescribeDataEngineResponse {
|
|
9836
9871
|
export interface DataEngineScaleInfo {
|
9837
9872
|
/**
|
9838
9873
|
* 引擎ID
|
9839
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9840
9874
|
*/
|
9841
9875
|
DataEngineId?: string
|
9842
9876
|
/**
|
9843
9877
|
* 引擎名称
|
9844
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9845
9878
|
*/
|
9846
9879
|
DataEngineName?: string
|
9847
9880
|
/**
|
9848
9881
|
* 引擎规格详情
|
9849
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9850
9882
|
*/
|
9851
9883
|
ScaleDetail?: Array<DataEngineScaleInfoDetail>
|
9852
9884
|
}
|
@@ -9937,6 +9969,10 @@ export interface DropDMSTableRequest {
|
|
9937
9969
|
* 环境属性
|
9938
9970
|
*/
|
9939
9971
|
EnvProps?: KVPair
|
9972
|
+
/**
|
9973
|
+
* 数据目录信息
|
9974
|
+
*/
|
9975
|
+
DatasourceConnectionName?: string
|
9940
9976
|
}
|
9941
9977
|
|
9942
9978
|
/**
|
@@ -10050,7 +10086,7 @@ export interface DescribeDMSTableRequest {
|
|
10050
10086
|
*/
|
10051
10087
|
Name?: string
|
10052
10088
|
/**
|
10053
|
-
*
|
10089
|
+
* catalog类型
|
10054
10090
|
*/
|
10055
10091
|
Catalog?: string
|
10056
10092
|
/**
|
@@ -10058,13 +10094,17 @@ export interface DescribeDMSTableRequest {
|
|
10058
10094
|
*/
|
10059
10095
|
Keyword?: string
|
10060
10096
|
/**
|
10061
|
-
*
|
10097
|
+
* 查询模式,只支持填*
|
10062
10098
|
*/
|
10063
10099
|
Pattern?: string
|
10064
10100
|
/**
|
10065
10101
|
* 表类型
|
10066
10102
|
*/
|
10067
10103
|
Type?: string
|
10104
|
+
/**
|
10105
|
+
* 数据源连接名
|
10106
|
+
*/
|
10107
|
+
DatasourceConnectionName?: string
|
10068
10108
|
}
|
10069
10109
|
|
10070
10110
|
/**
|
@@ -354,6 +354,10 @@ export interface DropDMSDatabaseRequest {
|
|
354
354
|
* 是否级联删除
|
355
355
|
*/
|
356
356
|
Cascade?: boolean;
|
357
|
+
/**
|
358
|
+
* 数据源连接名
|
359
|
+
*/
|
360
|
+
DatasourceConnectionName?: string;
|
357
361
|
}
|
358
362
|
/**
|
359
363
|
* 按批提交Statement运行SQL任务。
|
@@ -508,6 +512,10 @@ export interface DescribeDMSPartitionsRequest {
|
|
508
512
|
* 表达式
|
509
513
|
*/
|
510
514
|
Expression?: string;
|
515
|
+
/**
|
516
|
+
* 数据源连接名
|
517
|
+
*/
|
518
|
+
DatasourceConnectionName?: string;
|
511
519
|
}
|
512
520
|
/**
|
513
521
|
* DescribeDMSTable返回参数结构体
|
@@ -1262,6 +1270,10 @@ export interface CreateDMSTableRequest {
|
|
1262
1270
|
* 表名称
|
1263
1271
|
*/
|
1264
1272
|
Name?: string;
|
1273
|
+
/**
|
1274
|
+
* 数据源连接名
|
1275
|
+
*/
|
1276
|
+
DatasourceConnectionName?: string;
|
1265
1277
|
}
|
1266
1278
|
/**
|
1267
1279
|
* DMSTable基本信息
|
@@ -3284,12 +3296,10 @@ export interface Users {
|
|
3284
3296
|
export interface DataEngineConfigPair {
|
3285
3297
|
/**
|
3286
3298
|
* 配置项
|
3287
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3288
3299
|
*/
|
3289
3300
|
ConfigItem: string;
|
3290
3301
|
/**
|
3291
3302
|
* 配置值
|
3292
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3293
3303
|
*/
|
3294
3304
|
ConfigValue: string;
|
3295
3305
|
}
|
@@ -3514,6 +3524,10 @@ export interface AlterDMSTableRequest {
|
|
3514
3524
|
* 当前表名
|
3515
3525
|
*/
|
3516
3526
|
Name?: string;
|
3527
|
+
/**
|
3528
|
+
* 数据源连接名
|
3529
|
+
*/
|
3530
|
+
DatasourceConnectionName?: string;
|
3517
3531
|
}
|
3518
3532
|
/**
|
3519
3533
|
* DescribeDMSPartitions返回参数结构体
|
@@ -3860,9 +3874,13 @@ export interface DescribeDMSDatabaseRequest {
|
|
3860
3874
|
*/
|
3861
3875
|
SchemaName?: string;
|
3862
3876
|
/**
|
3863
|
-
*
|
3877
|
+
* 匹配规则,只支持填*
|
3864
3878
|
*/
|
3865
3879
|
Pattern?: string;
|
3880
|
+
/**
|
3881
|
+
* 数据源连接名
|
3882
|
+
*/
|
3883
|
+
DatasourceConnectionName?: string;
|
3866
3884
|
}
|
3867
3885
|
/**
|
3868
3886
|
* DescribeLakeFsDirSummary请求参数结构体
|
@@ -4410,6 +4428,10 @@ export interface AlterDMSDatabaseRequest {
|
|
4410
4428
|
* 基础对象
|
4411
4429
|
*/
|
4412
4430
|
Asset?: Asset;
|
4431
|
+
/**
|
4432
|
+
* 数据源连接名
|
4433
|
+
*/
|
4434
|
+
DatasourceConnectionName?: string;
|
4413
4435
|
}
|
4414
4436
|
/**
|
4415
4437
|
* DescribeOtherCHDFSBindingList返回参数结构体
|
@@ -4708,17 +4730,14 @@ export interface DeleteUserRequest {
|
|
4708
4730
|
export interface DataEngineScaleInfoDetail {
|
4709
4731
|
/**
|
4710
4732
|
* 统计开始时间,格式为:yyyy-MM-dd HH:mm:ss
|
4711
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4712
4733
|
*/
|
4713
4734
|
StartTime?: string;
|
4714
4735
|
/**
|
4715
4736
|
* 统计结束时间,格式为:yyyy-MM-dd HH:mm:ss
|
4716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4717
4737
|
*/
|
4718
4738
|
EndTime?: string;
|
4719
4739
|
/**
|
4720
4740
|
* 当前统计时间段,引擎规格
|
4721
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4722
4741
|
*/
|
4723
4742
|
CU?: number;
|
4724
4743
|
}
|
@@ -4995,7 +5014,6 @@ export interface DataEngineBasicInfo {
|
|
4995
5014
|
UpdateTime?: number;
|
4996
5015
|
/**
|
4997
5016
|
* 返回信息
|
4998
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4999
5017
|
*/
|
5000
5018
|
Message?: string;
|
5001
5019
|
/**
|
@@ -5004,17 +5022,14 @@ export interface DataEngineBasicInfo {
|
|
5004
5022
|
DataEngineId?: string;
|
5005
5023
|
/**
|
5006
5024
|
* 引擎类型,有效值:PrestoSQL/SparkSQL/SparkBatch
|
5007
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5008
5025
|
*/
|
5009
5026
|
DataEngineType?: string;
|
5010
5027
|
/**
|
5011
5028
|
* 用户ID
|
5012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5013
5029
|
*/
|
5014
5030
|
AppId?: number;
|
5015
5031
|
/**
|
5016
5032
|
* 账号ID
|
5017
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5018
5033
|
*/
|
5019
5034
|
UserUin?: string;
|
5020
5035
|
}
|
@@ -5201,6 +5216,10 @@ export interface AlterDMSPartitionRequest {
|
|
5201
5216
|
* 分区
|
5202
5217
|
*/
|
5203
5218
|
Partition?: DMSPartition;
|
5219
|
+
/**
|
5220
|
+
* 数据源连接名
|
5221
|
+
*/
|
5222
|
+
DatasourceConnectionName?: string;
|
5204
5223
|
}
|
5205
5224
|
/**
|
5206
5225
|
* ReportHeartbeatMetaData返回参数结构体
|
@@ -5728,7 +5747,7 @@ export interface DescribeDMSTablesRequest {
|
|
5728
5747
|
*/
|
5729
5748
|
Name?: string;
|
5730
5749
|
/**
|
5731
|
-
*
|
5750
|
+
* catalog类型
|
5732
5751
|
*/
|
5733
5752
|
Catalog?: string;
|
5734
5753
|
/**
|
@@ -5736,7 +5755,7 @@ export interface DescribeDMSTablesRequest {
|
|
5736
5755
|
*/
|
5737
5756
|
Keyword?: string;
|
5738
5757
|
/**
|
5739
|
-
*
|
5758
|
+
* 查询模式,只支持填*
|
5740
5759
|
*/
|
5741
5760
|
Pattern?: string;
|
5742
5761
|
/**
|
@@ -5767,6 +5786,10 @@ export interface DescribeDMSTablesRequest {
|
|
5767
5786
|
* 排序字段:true:升序(默认),false:降序
|
5768
5787
|
*/
|
5769
5788
|
Asc?: boolean;
|
5789
|
+
/**
|
5790
|
+
* 数据源连接名
|
5791
|
+
*/
|
5792
|
+
DatasourceConnectionName?: string;
|
5770
5793
|
}
|
5771
5794
|
/**
|
5772
5795
|
* GenerateCreateMangedTableSql返回参数结构体
|
@@ -6385,6 +6408,10 @@ export interface DMSPartition {
|
|
6385
6408
|
* 存储对象
|
6386
6409
|
*/
|
6387
6410
|
Sds?: DMSSds;
|
6411
|
+
/**
|
6412
|
+
* 数据源连接名
|
6413
|
+
*/
|
6414
|
+
DatasourceConnectionName?: string;
|
6388
6415
|
}
|
6389
6416
|
/**
|
6390
6417
|
* 工作组详细信息
|
@@ -7046,6 +7073,10 @@ export interface CreateDMSDatabaseRequest {
|
|
7046
7073
|
* 数据库名称
|
7047
7074
|
*/
|
7048
7075
|
Name?: string;
|
7076
|
+
/**
|
7077
|
+
* 数据源连接名
|
7078
|
+
*/
|
7079
|
+
DatasourceConnectionName?: string;
|
7049
7080
|
}
|
7050
7081
|
/**
|
7051
7082
|
* DetachWorkGroupPolicy请求参数结构体
|
@@ -7590,6 +7621,10 @@ export interface DropDMSPartitionsRequest {
|
|
7590
7621
|
* 是否删除分区数据
|
7591
7622
|
*/
|
7592
7623
|
DeleteData?: boolean;
|
7624
|
+
/**
|
7625
|
+
* 数据源连接名
|
7626
|
+
*/
|
7627
|
+
DatasourceConnectionName?: string;
|
7593
7628
|
}
|
7594
7629
|
/**
|
7595
7630
|
* 任务公共指标
|
@@ -9433,17 +9468,14 @@ export interface DescribeDataEngineResponse {
|
|
9433
9468
|
export interface DataEngineScaleInfo {
|
9434
9469
|
/**
|
9435
9470
|
* 引擎ID
|
9436
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9437
9471
|
*/
|
9438
9472
|
DataEngineId?: string;
|
9439
9473
|
/**
|
9440
9474
|
* 引擎名称
|
9441
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9442
9475
|
*/
|
9443
9476
|
DataEngineName?: string;
|
9444
9477
|
/**
|
9445
9478
|
* 引擎规格详情
|
9446
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9447
9479
|
*/
|
9448
9480
|
ScaleDetail?: Array<DataEngineScaleInfoDetail>;
|
9449
9481
|
}
|
@@ -9530,6 +9562,10 @@ export interface DropDMSTableRequest {
|
|
9530
9562
|
* 环境属性
|
9531
9563
|
*/
|
9532
9564
|
EnvProps?: KVPair;
|
9565
|
+
/**
|
9566
|
+
* 数据目录信息
|
9567
|
+
*/
|
9568
|
+
DatasourceConnectionName?: string;
|
9533
9569
|
}
|
9534
9570
|
/**
|
9535
9571
|
* CreateInternalTable返回参数结构体
|
@@ -9637,7 +9673,7 @@ export interface DescribeDMSTableRequest {
|
|
9637
9673
|
*/
|
9638
9674
|
Name?: string;
|
9639
9675
|
/**
|
9640
|
-
*
|
9676
|
+
* catalog类型
|
9641
9677
|
*/
|
9642
9678
|
Catalog?: string;
|
9643
9679
|
/**
|
@@ -9645,13 +9681,17 @@ export interface DescribeDMSTableRequest {
|
|
9645
9681
|
*/
|
9646
9682
|
Keyword?: string;
|
9647
9683
|
/**
|
9648
|
-
*
|
9684
|
+
* 查询模式,只支持填*
|
9649
9685
|
*/
|
9650
9686
|
Pattern?: string;
|
9651
9687
|
/**
|
9652
9688
|
* 表类型
|
9653
9689
|
*/
|
9654
9690
|
Type?: string;
|
9691
|
+
/**
|
9692
|
+
* 数据源连接名
|
9693
|
+
*/
|
9694
|
+
DatasourceConnectionName?: string;
|
9655
9695
|
}
|
9656
9696
|
/**
|
9657
9697
|
* ModifyGovernEventRule请求参数结构体
|
package/products.md
DELETED
@@ -1,264 +0,0 @@
|
|
1
|
-
| 包名 | 产品中文名 | 更新时间 |
|
2
|
-
|-|-|-|
|
3
|
-
| aa | [活动防刷](https://cloud.tencent.com/document/product/1189) | 2023-05-18 01:01:13 |
|
4
|
-
| aai | [](https://cloud.tencent.com/document/product) | 2019-08-08 23:15:13 |
|
5
|
-
| aca | [AI 临床助手](https://cloud.tencent.com/document/product/1388) | 2025-01-09 01:08:36 |
|
6
|
-
| acp | [应用合规平台](https://cloud.tencent.com/document/product/1553) | 2024-11-01 01:03:06 |
|
7
|
-
| advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2025-01-16 20:27:23 |
|
8
|
-
| af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2024-11-22 11:20:38 |
|
9
|
-
| afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2024-05-31 01:07:25 |
|
10
|
-
| aiart | [大模型图像创作引擎](https://cloud.tencent.com/document/product/1668) | 2025-01-15 01:07:21 |
|
11
|
-
| ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-08-17 01:06:14 |
|
12
|
-
| ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2025-01-08 01:09:45 |
|
13
|
-
| anicloud | [动效素材服务](https://cloud.tencent.com/document/product/1641) | 2023-05-18 01:01:53 |
|
14
|
-
| antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/297) | 2024-08-22 01:03:05 |
|
15
|
-
| apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
|
16
|
-
| ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
|
17
|
-
| api | [云 API](https://cloud.tencent.com/document/product/1278) | 2023-01-05 01:02:52 |
|
18
|
-
| apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2025-01-13 01:07:53 |
|
19
|
-
| apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2025-01-17 01:08:20 |
|
20
|
-
| as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2025-01-17 01:08:27 |
|
21
|
-
| asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2025-01-23 01:08:34 |
|
22
|
-
| asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2023-05-18 01:04:02 |
|
23
|
-
| ba | [ICP备案](https://cloud.tencent.com/document/product/243) | 2024-12-19 01:10:53 |
|
24
|
-
| batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2025-01-10 01:08:10 |
|
25
|
-
| bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2024-11-14 01:10:31 |
|
26
|
-
| bh | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2025-01-09 01:09:37 |
|
27
|
-
| bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2025-01-23 01:08:59 |
|
28
|
-
| billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2025-01-08 01:10:54 |
|
29
|
-
| bizlive | [商业直播](https://cloud.tencent.com/document/product) | 2020-03-10 01:08:07 |
|
30
|
-
| bm | [黑石物理服务器CPM](https://cloud.tencent.com/document/product/386) | 2024-03-20 01:08:40 |
|
31
|
-
| bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2024-10-18 01:04:14 |
|
32
|
-
| bmeip | [黑石弹性公网IP](https://cloud.tencent.com/document/product/1028) | 2024-03-20 01:08:53 |
|
33
|
-
| bmlb | [黑石负载均衡](https://cloud.tencent.com/document/product/1027) | 2024-03-20 01:08:56 |
|
34
|
-
| bmvpc | [黑石私有网络](https://cloud.tencent.com/document/product/1024) | 2024-03-20 01:09:02 |
|
35
|
-
| bpaas | [商业流程服务](https://cloud.tencent.com/document/product/1083) | 2024-11-29 01:10:03 |
|
36
|
-
| bri | [业务风险情报](https://cloud.tencent.com/document/product/1064) | 2024-06-19 01:13:52 |
|
37
|
-
| bsca | [软件成分分析](https://cloud.tencent.com/document/product/1483) | 2024-11-27 01:09:19 |
|
38
|
-
| btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2024-11-06 15:27:32 |
|
39
|
-
| ca | [腾讯云CA](https://cloud.tencent.com/document/product/1691) | 2025-01-16 01:08:56 |
|
40
|
-
| cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2025-01-08 01:11:16 |
|
41
|
-
| captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2025-01-22 01:09:12 |
|
42
|
-
| car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2024-12-27 10:53:11 |
|
43
|
-
| cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2025-01-17 01:09:42 |
|
44
|
-
| cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2025-01-10 01:09:12 |
|
45
|
-
| ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2025-01-15 01:09:19 |
|
46
|
-
| cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2025-01-15 01:09:31 |
|
47
|
-
| cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-11-15 01:15:46 |
|
48
|
-
| cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2025-01-14 01:09:45 |
|
49
|
-
| cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2024-11-08 01:17:02 |
|
50
|
-
| cdwch | [腾讯云数据仓库TCHouse-C](https://cloud.tencent.com/document/product/1299) | 2024-12-24 01:16:40 |
|
51
|
-
| cdwdoris | [腾讯云数据仓库 TCHouse-D](https://cloud.tencent.com/document/product/1387) | 2025-01-23 01:10:45 |
|
52
|
-
| cdwpg | [云数据仓库 PostgreSQL](https://cloud.tencent.com/document/product/878) | 2024-03-28 01:10:53 |
|
53
|
-
| cdz | [专属可用区](https://cloud.tencent.com/document/product/1629) | 2024-11-14 01:17:55 |
|
54
|
-
| cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2025-01-22 01:10:37 |
|
55
|
-
| cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2025-01-20 01:10:16 |
|
56
|
-
| cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2025-01-13 01:10:41 |
|
57
|
-
| chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2024-12-27 10:55:07 |
|
58
|
-
| ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2024-10-28 01:19:38 |
|
59
|
-
| cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2023-05-18 01:12:07 |
|
60
|
-
| cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
|
61
|
-
| cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
|
62
|
-
| ckafka | [消息队列 CKafka 版](https://cloud.tencent.com/document/product/597) | 2025-01-01 01:12:29 |
|
63
|
-
| clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2025-01-17 01:11:39 |
|
64
|
-
| cloudapp | [云应用](https://cloud.tencent.com/document/product/1689) | 2025-01-09 01:12:37 |
|
65
|
-
| cloudaudit | [操作审计](https://cloud.tencent.com/document/product/629) | 2025-01-15 01:11:23 |
|
66
|
-
| cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2024-11-28 10:52:49 |
|
67
|
-
| cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2024-12-27 10:55:16 |
|
68
|
-
| cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2025-01-09 01:12:45 |
|
69
|
-
| cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2024-09-25 01:13:30 |
|
70
|
-
| cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2025-01-23 01:12:19 |
|
71
|
-
| cms | [内容安全](https://cloud.tencent.com/document/product/669) | 2024-06-20 01:24:47 |
|
72
|
-
| config | [配置审计](https://cloud.tencent.com/document/product/1579) | 2025-01-15 01:11:56 |
|
73
|
-
| controlcenter | [控制中心](https://cloud.tencent.com/document/product/1708) | 2024-10-24 01:13:25 |
|
74
|
-
| cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2023-09-21 02:09:54 |
|
75
|
-
| csip | [云安全一体化平台](https://cloud.tencent.com/document/product/664) | 2025-01-10 01:11:55 |
|
76
|
-
| csxg | [5G入云服务](https://cloud.tencent.com/document/product/1687) | 2024-03-20 01:12:25 |
|
77
|
-
| cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2025-01-21 01:07:28 |
|
78
|
-
| cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2025-01-22 01:12:36 |
|
79
|
-
| cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
|
80
|
-
| cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2025-01-09 01:14:38 |
|
81
|
-
| dasb | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2024-11-19 01:26:13 |
|
82
|
-
| dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
|
83
|
-
| dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2023-05-18 01:20:11 |
|
84
|
-
| dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2025-01-23 01:14:09 |
|
85
|
-
| dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2025-01-07 01:15:00 |
|
86
|
-
| dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2025-01-16 01:13:53 |
|
87
|
-
| dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2025-01-16 01:13:58 |
|
88
|
-
| dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2025-01-22 01:14:28 |
|
89
|
-
| dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-12-31 01:16:41 |
|
90
|
-
| domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-12-25 01:30:08 |
|
91
|
-
| drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2025-01-09 01:16:10 |
|
92
|
-
| ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2024-03-20 01:15:13 |
|
93
|
-
| dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2025-01-15 01:14:50 |
|
94
|
-
| dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
|
95
|
-
| dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2025-01-09 01:16:34 |
|
96
|
-
| eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2024-12-26 01:31:46 |
|
97
|
-
| ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2024-09-05 01:32:54 |
|
98
|
-
| ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2024-10-22 01:18:29 |
|
99
|
-
| ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2025-01-10 01:15:40 |
|
100
|
-
| eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2024-06-25 01:14:34 |
|
101
|
-
| eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
|
102
|
-
| emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2025-01-16 01:15:53 |
|
103
|
-
| es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2025-01-13 01:16:10 |
|
104
|
-
| ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2025-01-16 01:16:17 |
|
105
|
-
| essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2025-01-23 01:16:56 |
|
106
|
-
| facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2024-12-26 01:36:01 |
|
107
|
-
| faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2025-01-20 01:16:33 |
|
108
|
-
| fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2024-12-25 01:36:47 |
|
109
|
-
| ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2024-11-21 01:34:23 |
|
110
|
-
| gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2025-01-09 01:18:35 |
|
111
|
-
| gme | [游戏多媒体引擎](https://cloud.tencent.com/document/product/607) | 2025-01-09 01:18:49 |
|
112
|
-
| goosefs | [数据加速器 GooseFS](https://cloud.tencent.com/document/product/1424) | 2024-12-31 01:19:53 |
|
113
|
-
| gpm | [游戏玩家匹配](https://cloud.tencent.com/document/product/1294) | 2022-07-11 06:12:36 |
|
114
|
-
| gs | [云游戏](https://cloud.tencent.com/document/product/1162) | 2024-12-27 11:13:19 |
|
115
|
-
| gse | [游戏服务器伸缩](https://cloud.tencent.com/document/product/1165) | 2022-07-11 06:12:44 |
|
116
|
-
| gwlb | [网关负载均衡](https://cloud.tencent.com/document/product/1782) | 2025-01-09 01:18:59 |
|
117
|
-
| habo | [](https://cloud.tencent.com/document/product) | 2019-05-09 19:37:22 |
|
118
|
-
| hai | [高性能应用服务](https://cloud.tencent.com/document/product/1721) | 2025-01-10 01:17:51 |
|
119
|
-
| hasim | [高可用物联网卡](https://cloud.tencent.com/document/product/1482) | 2023-05-18 01:29:47 |
|
120
|
-
| hcm | [数学作业批改](https://cloud.tencent.com/document/product/1004) | 2024-05-09 01:16:27 |
|
121
|
-
| hunyuan | [腾讯混元大模型](https://cloud.tencent.com/document/product/1729) | 2025-01-22 01:17:53 |
|
122
|
-
| iai | [人脸识别](https://cloud.tencent.com/document/product/867) | 2024-12-27 11:13:24 |
|
123
|
-
| iap | [身份识别平台](https://cloud.tencent.com/document/product/1787) | 2024-11-21 18:27:30 |
|
124
|
-
| ic | [图片瘦身](https://cloud.tencent.com/document/product/636) | 2023-03-02 01:23:21 |
|
125
|
-
| icr | [对话机器人](https://cloud.tencent.com/document/product/1268) | 2024-04-22 01:17:48 |
|
126
|
-
| ie | [智能编辑](https://cloud.tencent.com/document/product/1186) | 2023-08-17 03:20:18 |
|
127
|
-
| iecp | [物联网边缘计算平台](https://cloud.tencent.com/document/product/1118) | 2024-09-25 01:22:07 |
|
128
|
-
| ig | [智能导诊](https://cloud.tencent.com/document/product/1273) | 2024-11-21 01:36:39 |
|
129
|
-
| iir | [智能识图](https://cloud.tencent.com/document/product/1217) | 2022-04-04 06:48:05 |
|
130
|
-
| ims | [图片内容安全](https://cloud.tencent.com/document/product/1125) | 2024-12-03 10:53:29 |
|
131
|
-
| ioa | [iOA 零信任安全管理系统](https://cloud.tencent.com/document/product/1092) | 2024-11-11 01:39:45 |
|
132
|
-
| iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2023-07-17 01:22:28 |
|
133
|
-
| iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2024-06-05 01:47:50 |
|
134
|
-
| iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2025-01-17 20:22:17 |
|
135
|
-
| iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
|
136
|
-
| iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2025-01-10 01:19:02 |
|
137
|
-
| iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2025-01-01 01:21:21 |
|
138
|
-
| irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2024-10-17 01:22:29 |
|
139
|
-
| iss | [智能视图计算平台](https://cloud.tencent.com/document/product/1344) | 2024-12-24 01:40:55 |
|
140
|
-
| ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2024-12-16 01:41:44 |
|
141
|
-
| keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2025-01-09 01:20:47 |
|
142
|
-
| kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2024-11-07 01:44:48 |
|
143
|
-
| lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2025-01-21 01:14:38 |
|
144
|
-
| lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2025-01-20 01:19:11 |
|
145
|
-
| live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2025-01-14 01:19:30 |
|
146
|
-
| lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2025-01-22 01:20:33 |
|
147
|
-
| lkeap | [知识引擎原子能力](https://cloud.tencent.com/document/product/1772) | 2025-01-16 01:20:20 |
|
148
|
-
| lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
|
149
|
-
| lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
|
150
|
-
| mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2024-03-20 01:20:11 |
|
151
|
-
| mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2025-01-16 01:20:24 |
|
152
|
-
| market | [云市场](https://cloud.tencent.com/document/product/306) | 2024-11-25 01:21:47 |
|
153
|
-
| memcached | [云数据库Memcached](https://cloud.tencent.com/document/product/241) | 2024-12-16 01:45:51 |
|
154
|
-
| mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
|
155
|
-
| mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2024-11-11 01:49:22 |
|
156
|
-
| mna | [多网聚合加速](https://cloud.tencent.com/document/product/1385) | 2025-01-17 01:21:18 |
|
157
|
-
| mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2025-01-09 01:22:22 |
|
158
|
-
| monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2025-01-17 01:21:34 |
|
159
|
-
| mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2025-01-20 01:20:52 |
|
160
|
-
| mqtt | [消息队列 MQTT 版](https://cloud.tencent.com/document/product/1778) | 2024-12-19 01:49:38 |
|
161
|
-
| mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2024-12-12 01:48:36 |
|
162
|
-
| ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2024-11-14 01:54:52 |
|
163
|
-
| msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2024-12-25 01:51:10 |
|
164
|
-
| mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
|
165
|
-
| nlp | [NLP 技术](https://cloud.tencent.com/document/product/271) | 2025-01-14 01:21:36 |
|
166
|
-
| npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
|
167
|
-
| oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2025-01-09 01:23:28 |
|
168
|
-
| ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2025-01-22 01:22:25 |
|
169
|
-
| omics | [腾讯健康组学平台](https://cloud.tencent.com/document/product/1643) | 2024-12-25 01:52:29 |
|
170
|
-
| organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2024-12-20 01:46:38 |
|
171
|
-
| partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2024-11-22 12:03:22 |
|
172
|
-
| pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2023-05-18 01:44:14 |
|
173
|
-
| postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2025-01-20 01:22:23 |
|
174
|
-
| privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2024-12-24 01:52:16 |
|
175
|
-
| pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2025-01-14 01:22:46 |
|
176
|
-
| rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-12-04 01:27:22 |
|
177
|
-
| redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2025-01-13 01:23:02 |
|
178
|
-
| region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2024-12-20 01:49:24 |
|
179
|
-
| rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2023-12-25 00:16:39 |
|
180
|
-
| rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
|
181
|
-
| rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2025-01-22 01:23:51 |
|
182
|
-
| scf | [云函数](https://cloud.tencent.com/document/product/583) | 2025-01-22 01:24:07 |
|
183
|
-
| ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2024-10-22 01:28:58 |
|
184
|
-
| smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2024-12-17 01:50:10 |
|
185
|
-
| smop | [腾讯安心用户运营平台](https://cloud.tencent.com/document/product/1310) | 2024-10-31 02:02:47 |
|
186
|
-
| smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2024-07-09 01:21:06 |
|
187
|
-
| sms | [短信](https://cloud.tencent.com/document/product/382) | 2025-01-10 01:24:22 |
|
188
|
-
| soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2024-11-13 02:01:41 |
|
189
|
-
| solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
|
190
|
-
| sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2025-01-07 01:25:35 |
|
191
|
-
| ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-11-15 02:18:28 |
|
192
|
-
| ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2025-01-23 01:24:00 |
|
193
|
-
| sslpod | [证书监控 SSLPod](https://cloud.tencent.com/document/product/1084) | 2024-03-20 01:24:03 |
|
194
|
-
| ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2024-11-08 02:01:05 |
|
195
|
-
| sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2024-12-11 01:57:49 |
|
196
|
-
| svp | [节省计划](https://cloud.tencent.com/document/product/1761) | 2024-11-27 01:26:33 |
|
197
|
-
| taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2024-11-04 02:00:37 |
|
198
|
-
| tag | [标签](https://cloud.tencent.com/document/product/651) | 2024-12-25 01:59:10 |
|
199
|
-
| tan | [碳引擎](https://cloud.tencent.com/document/product/1498) | 2024-03-20 01:24:15 |
|
200
|
-
| tat | [自动化助手](https://cloud.tencent.com/document/product/1340) | 2025-01-20 01:24:18 |
|
201
|
-
| tav | [文件检测](https://cloud.tencent.com/document/product) | 2019-11-28 22:10:04 |
|
202
|
-
| tbaas | [腾讯云区块链服务平台 TBaaS](https://cloud.tencent.com/document/product/663) | 2025-01-14 01:24:30 |
|
203
|
-
| tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 |
|
204
|
-
| tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2024-03-20 01:24:24 |
|
205
|
-
| tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2024-08-05 02:05:20 |
|
206
|
-
| tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2025-01-13 01:24:44 |
|
207
|
-
| tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2025-01-08 01:27:40 |
|
208
|
-
| tccatalog | [统一Catalog服务](https://cloud.tencent.com/document/product/1784) | 2025-01-22 16:42:16 |
|
209
|
-
| tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
|
210
|
-
| tchd | [腾讯云健康看板](https://cloud.tencent.com/document/product/1688) | 2025-01-16 01:25:03 |
|
211
|
-
| tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
|
212
|
-
| tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2025-01-06 01:25:44 |
|
213
|
-
| tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2025-01-10 01:25:47 |
|
214
|
-
| tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-11-04 02:03:35 |
|
215
|
-
| tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2024-07-10 01:25:35 |
|
216
|
-
| tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-12-19 02:00:31 |
|
217
|
-
| tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2025-01-22 01:26:02 |
|
218
|
-
| tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2024-11-14 02:08:25 |
|
219
|
-
| tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2024-12-31 01:29:59 |
|
220
|
-
| teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2025-01-21 20:17:17 |
|
221
|
-
| thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2025-01-01 01:30:04 |
|
222
|
-
| tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
|
223
|
-
| tic | [资源编排 TIC](https://cloud.tencent.com/document/product/1213) | 2023-08-17 05:26:08 |
|
224
|
-
| ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 |
|
225
|
-
| tics | [威胁情报云查服务](https://cloud.tencent.com/document/product/1013) | 2024-03-20 01:27:08 |
|
226
|
-
| tiems | [腾讯云 TI 平台 TI-EMS ](https://cloud.tencent.com/document/product/1120) | 2022-07-19 06:19:39 |
|
227
|
-
| tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2024-12-23 11:03:45 |
|
228
|
-
| tione | [TI-ONE 训练平台](https://cloud.tencent.com/document/product/851) | 2025-01-09 01:28:15 |
|
229
|
-
| tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2025-01-16 01:26:31 |
|
230
|
-
| tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2025-01-13 01:27:05 |
|
231
|
-
| tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
|
232
|
-
| tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2024-10-30 02:12:39 |
|
233
|
-
| tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2024-12-05 01:26:59 |
|
234
|
-
| tourism | [文旅客情大数据](https://cloud.tencent.com/document/product/1684) | 2024-03-20 01:28:59 |
|
235
|
-
| trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2023-05-18 02:01:19 |
|
236
|
-
| trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2025-01-06 01:28:18 |
|
237
|
-
| trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2024-11-08 02:10:59 |
|
238
|
-
| trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2025-01-21 01:22:38 |
|
239
|
-
| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2025-01-21 01:22:42 |
|
240
|
-
| tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2025-01-21 01:22:52 |
|
241
|
-
| tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-12-30 02:06:44 |
|
242
|
-
| tsi | [腾讯同传系统](https://cloud.tencent.com/document/product/1399) | 2024-10-23 01:36:51 |
|
243
|
-
| tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2024-03-20 01:30:06 |
|
244
|
-
| tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2024-12-27 11:25:13 |
|
245
|
-
| ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2024-03-20 01:30:08 |
|
246
|
-
| vcg | [视频生成](https://cloud.tencent.com/document/product/1770) | 2024-11-22 12:20:45 |
|
247
|
-
| vclm | [大模型视频创作引擎](https://cloud.tencent.com/document/product/1616) | 2025-01-06 01:29:32 |
|
248
|
-
| vcube | [音视频终端引擎](https://cloud.tencent.com/document/product/1449) | 2024-12-05 01:28:35 |
|
249
|
-
| vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2025-01-08 01:31:23 |
|
250
|
-
| vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-07-26 02:26:34 |
|
251
|
-
| vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
|
252
|
-
| vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-11-18 02:09:13 |
|
253
|
-
| vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2025-01-21 01:24:21 |
|
254
|
-
| vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-12-19 02:13:39 |
|
255
|
-
| vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-10-16 01:32:39 |
|
256
|
-
| waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2025-01-06 01:30:59 |
|
257
|
-
| wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2024-11-20 02:21:21 |
|
258
|
-
| wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2025-01-17 01:30:18 |
|
259
|
-
| weilingwith | [微瓴同业开放平台](https://cloud.tencent.com/document/product/1693) | 2024-11-07 02:23:06 |
|
260
|
-
| wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
|
261
|
-
| yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2024-06-05 02:38:46 |
|
262
|
-
| youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
|
263
|
-
| yunjing | [主机安全](https://cloud.tencent.com/document/product) | 2020-09-15 08:08:47 |
|
264
|
-
| yunsou | [腾讯云搜TCS](https://cloud.tencent.com/document/product/270) | 2024-03-20 01:33:14 |
|