tencentcloud-sdk-nodejs-rce 4.0.986 → 4.0.1038
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/rce/v20201103/rce_models.ts +15 -65
- package/tencentcloud/services/rce/v20201103/rce_models.d.ts +15 -65
- package/products.md +0 -261
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
|
@@ -28,11 +28,11 @@ export interface DataContentInfo {
|
|
|
28
28
|
*/
|
|
29
29
|
DataRemark?: string
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* 名单数据开始时间
|
|
32
32
|
*/
|
|
33
33
|
StartTime?: string
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* 名单数据结束时间
|
|
36
36
|
*/
|
|
37
37
|
EndTime?: string
|
|
38
38
|
}
|
|
@@ -47,12 +47,10 @@ export interface OutputDescribeNameListFrontFix {
|
|
|
47
47
|
NameListId?: number
|
|
48
48
|
/**
|
|
49
49
|
* 名单名称
|
|
50
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
51
50
|
*/
|
|
52
51
|
ListName?: string
|
|
53
52
|
/**
|
|
54
53
|
* 名单类型 [1 黑名单 2 白名单]
|
|
55
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
56
54
|
*/
|
|
57
55
|
ListType?: number
|
|
58
56
|
/**
|
|
@@ -65,15 +63,14 @@ export interface OutputDescribeNameListFrontFix {
|
|
|
65
63
|
Status?: number
|
|
66
64
|
/**
|
|
67
65
|
* 描述
|
|
68
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
69
66
|
*/
|
|
70
67
|
Remark?: string
|
|
71
68
|
/**
|
|
72
|
-
*
|
|
69
|
+
* 创建时间
|
|
73
70
|
*/
|
|
74
71
|
CreateTime?: string
|
|
75
72
|
/**
|
|
76
|
-
*
|
|
73
|
+
* 更新时间
|
|
77
74
|
*/
|
|
78
75
|
UpdateTime?: string
|
|
79
76
|
/**
|
|
@@ -82,12 +79,10 @@ export interface OutputDescribeNameListFrontFix {
|
|
|
82
79
|
EffectCount?: string
|
|
83
80
|
/**
|
|
84
81
|
* 加密类型[0 无需加密 1 MD5加密 2 SHA256加密]
|
|
85
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
86
82
|
*/
|
|
87
83
|
EncryptionType?: number
|
|
88
84
|
/**
|
|
89
85
|
* 场景Code,all_scene代表全部场景
|
|
90
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
91
86
|
*/
|
|
92
87
|
SceneCode?: string
|
|
93
88
|
}
|
|
@@ -127,13 +122,11 @@ export interface OutputDescribeDataListFront {
|
|
|
127
122
|
*/
|
|
128
123
|
DataSource?: number
|
|
129
124
|
/**
|
|
130
|
-
*
|
|
131
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
125
|
+
* 名单数据开始时间
|
|
132
126
|
*/
|
|
133
127
|
StartTime?: string
|
|
134
128
|
/**
|
|
135
|
-
*
|
|
136
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
129
|
+
* 名单数据结束时间
|
|
137
130
|
*/
|
|
138
131
|
EndTime?: string
|
|
139
132
|
/**
|
|
@@ -142,20 +135,18 @@ export interface OutputDescribeDataListFront {
|
|
|
142
135
|
Status?: number
|
|
143
136
|
/**
|
|
144
137
|
* 名单数据描述
|
|
145
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
146
138
|
*/
|
|
147
139
|
Remark?: string
|
|
148
140
|
/**
|
|
149
|
-
*
|
|
141
|
+
* 名单数据创建时间
|
|
150
142
|
*/
|
|
151
143
|
CreateTime?: string
|
|
152
144
|
/**
|
|
153
|
-
*
|
|
145
|
+
* 名单数据更新时间
|
|
154
146
|
*/
|
|
155
147
|
UpdateTime?: string
|
|
156
148
|
/**
|
|
157
149
|
* 加密名单数据内容
|
|
158
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
159
150
|
*/
|
|
160
151
|
EncryptDataContent?: string
|
|
161
152
|
}
|
|
@@ -325,7 +316,6 @@ export interface ModifyNameListDataRequest {
|
|
|
325
316
|
export interface OuntputDescribeDataListInfo {
|
|
326
317
|
/**
|
|
327
318
|
* 数量
|
|
328
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
329
319
|
*/
|
|
330
320
|
Count?: number
|
|
331
321
|
/**
|
|
@@ -475,37 +465,30 @@ export interface DeleteNameListRequest {
|
|
|
475
465
|
export interface OutputDescribeUserUsageCnt {
|
|
476
466
|
/**
|
|
477
467
|
* 当前付费模式,0 后付费 1 预付费
|
|
478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
479
468
|
*/
|
|
480
469
|
PayMode?: number
|
|
481
470
|
/**
|
|
482
471
|
* 后付费本月使用量
|
|
483
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
484
472
|
*/
|
|
485
473
|
AfterPayModeThisMonthUsedCnt?: number
|
|
486
474
|
/**
|
|
487
475
|
* 创建时间
|
|
488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
489
476
|
*/
|
|
490
477
|
CreateTime?: string
|
|
491
478
|
/**
|
|
492
479
|
* 超出时间
|
|
493
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
494
480
|
*/
|
|
495
481
|
ExpireTime?: string
|
|
496
482
|
/**
|
|
497
483
|
* 后付费上月使用量
|
|
498
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
499
484
|
*/
|
|
500
485
|
AfterPayModeLastMonthUsedCnt?: number
|
|
501
486
|
/**
|
|
502
487
|
* 预付费总量
|
|
503
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
504
488
|
*/
|
|
505
489
|
BeforePayModeTotalUsedCnt?: number
|
|
506
490
|
/**
|
|
507
491
|
* 预付费剩余用量
|
|
508
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
509
492
|
*/
|
|
510
493
|
BeforePayModeRemainUsedCnt?: number
|
|
511
494
|
}
|
|
@@ -530,7 +513,6 @@ export interface DescribeNameListDetailResponse {
|
|
|
530
513
|
export interface OutputDescribeNameListInfo {
|
|
531
514
|
/**
|
|
532
515
|
* 总数
|
|
533
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
534
516
|
*/
|
|
535
517
|
Count?: number
|
|
536
518
|
/**
|
|
@@ -561,17 +543,14 @@ export interface OutputDescribeNameListFrontFixListData {
|
|
|
561
543
|
/**
|
|
562
544
|
* 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
|
563
545
|
|
|
564
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
565
546
|
*/
|
|
566
547
|
Code?: number
|
|
567
548
|
/**
|
|
568
549
|
* 错误信息
|
|
569
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
570
550
|
*/
|
|
571
551
|
Message?: string
|
|
572
552
|
/**
|
|
573
553
|
* 黑白名单列表信息
|
|
574
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
575
554
|
*/
|
|
576
555
|
Value?: OutputDescribeNameListInfo
|
|
577
556
|
}
|
|
@@ -582,12 +561,10 @@ export interface OutputDescribeNameListFrontFixListData {
|
|
|
582
561
|
export interface OutputDeleteNameListData {
|
|
583
562
|
/**
|
|
584
563
|
* 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
|
585
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
586
564
|
*/
|
|
587
565
|
Code?: number
|
|
588
566
|
/**
|
|
589
567
|
* 错误信息
|
|
590
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
591
568
|
*/
|
|
592
569
|
Message?: string
|
|
593
570
|
/**
|
|
@@ -706,11 +683,11 @@ export interface InputModifyNameListDataFront {
|
|
|
706
683
|
*/
|
|
707
684
|
DataContent?: string
|
|
708
685
|
/**
|
|
709
|
-
*
|
|
686
|
+
* 名单数据开始时间
|
|
710
687
|
*/
|
|
711
688
|
StartTime?: string
|
|
712
689
|
/**
|
|
713
|
-
*
|
|
690
|
+
* 名单数据结束时间
|
|
714
691
|
*/
|
|
715
692
|
EndTime?: string
|
|
716
693
|
/**
|
|
@@ -952,17 +929,14 @@ SHA256手机号加密方式,使用中国大陆11位手机号进行SHA256加密
|
|
|
952
929
|
export interface OutputDescribeDataListFrontData {
|
|
953
930
|
/**
|
|
954
931
|
* 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
|
955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
956
932
|
*/
|
|
957
933
|
Code?: number
|
|
958
934
|
/**
|
|
959
935
|
* 错误信息
|
|
960
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
961
936
|
*/
|
|
962
937
|
Message?: string
|
|
963
938
|
/**
|
|
964
939
|
* 黑白名单数据信息
|
|
965
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
966
940
|
*/
|
|
967
941
|
Value?: OuntputDescribeDataListInfo
|
|
968
942
|
}
|
|
@@ -973,12 +947,10 @@ export interface OutputDescribeDataListFrontData {
|
|
|
973
947
|
export interface OutputDescribeNameListDetailFront {
|
|
974
948
|
/**
|
|
975
949
|
* 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
|
976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
977
950
|
*/
|
|
978
951
|
Code?: number
|
|
979
952
|
/**
|
|
980
953
|
* 错误信息
|
|
981
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
982
954
|
*/
|
|
983
955
|
Message?: string
|
|
984
956
|
/**
|
|
@@ -994,52 +966,42 @@ export interface OutputDescribeNameListDetailFront {
|
|
|
994
966
|
export interface OutputDescribeNameListDetail {
|
|
995
967
|
/**
|
|
996
968
|
* 名单ID
|
|
997
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
998
969
|
*/
|
|
999
970
|
NameListId?: number
|
|
1000
971
|
/**
|
|
1001
972
|
* 名单名称
|
|
1002
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1003
973
|
*/
|
|
1004
974
|
ListName?: string
|
|
1005
975
|
/**
|
|
1006
976
|
* 名单类型 [1 黑名单 2 白名单]
|
|
1007
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1008
977
|
*/
|
|
1009
978
|
ListType?: number
|
|
1010
979
|
/**
|
|
1011
980
|
* 数据类型[1 手机号 2 qqOpenId 3 2echatOpenId 4 ip 6 idfa 7 imei]
|
|
1012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1013
981
|
*/
|
|
1014
982
|
DataType?: number
|
|
1015
983
|
/**
|
|
1016
984
|
* 场景Code
|
|
1017
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1018
985
|
*/
|
|
1019
986
|
SceneCode?: string
|
|
1020
987
|
/**
|
|
1021
988
|
* 名单列表状态 [1 启用 2 停用]
|
|
1022
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1023
989
|
*/
|
|
1024
990
|
Status?: number
|
|
1025
991
|
/**
|
|
1026
992
|
* 描述
|
|
1027
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1028
993
|
*/
|
|
1029
994
|
Remark?: string
|
|
1030
995
|
/**
|
|
1031
|
-
*
|
|
1032
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
996
|
+
* 创建时间
|
|
1033
997
|
*/
|
|
1034
998
|
CreateTime?: string
|
|
1035
999
|
/**
|
|
1036
|
-
*
|
|
1037
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1000
|
+
* 更新时间
|
|
1038
1001
|
*/
|
|
1039
1002
|
UpdateTime?: string
|
|
1040
1003
|
/**
|
|
1041
1004
|
* 加密类型 [0 无需加密,1 MD5加密,2 SHA256加密]
|
|
1042
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1043
1005
|
*/
|
|
1044
1006
|
EncryptionType?: number
|
|
1045
1007
|
}
|
|
@@ -1065,7 +1027,9 @@ export interface OnlineScamInfo {
|
|
|
1065
1027
|
*/
|
|
1066
1028
|
ContentType?: number
|
|
1067
1029
|
/**
|
|
1068
|
-
*
|
|
1030
|
+
* 账号类型
|
|
1031
|
+
1:手机号
|
|
1032
|
+
2:uin账号
|
|
1069
1033
|
*/
|
|
1070
1034
|
FraudType?: number
|
|
1071
1035
|
/**
|
|
@@ -1326,16 +1290,12 @@ export interface ImportNameListDataRequest {
|
|
|
1326
1290
|
export interface DataAuthorizationInfo {
|
|
1327
1291
|
/**
|
|
1328
1292
|
* 数据委托方、需求方:客户主体名称。
|
|
1329
|
-
|
|
1330
|
-
示例值:某某有限公司。
|
|
1331
1293
|
*/
|
|
1332
1294
|
DataProviderName: string
|
|
1333
1295
|
/**
|
|
1334
1296
|
* 数据受托方、提供方:腾讯云主体名称。
|
|
1335
1297
|
|
|
1336
1298
|
固定填:腾讯云计算(北京)有限责任公司
|
|
1337
|
-
|
|
1338
|
-
示例值:腾讯云计算(北京)有限责任公司
|
|
1339
1299
|
*/
|
|
1340
1300
|
DataRecipientName: string
|
|
1341
1301
|
/**
|
|
@@ -1350,43 +1310,33 @@ export interface DataAuthorizationInfo {
|
|
|
1350
1310
|
4-IP地址;
|
|
1351
1311
|
|
|
1352
1312
|
999-其它;
|
|
1353
|
-
|
|
1354
|
-
示例值:[1, 4]
|
|
1355
1313
|
*/
|
|
1356
1314
|
UserDataType: Array<number | bigint>
|
|
1357
1315
|
/**
|
|
1358
1316
|
* 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意客户委托腾讯云处理入参信息
|
|
1359
1317
|
1-已授权;其它值为未授权。
|
|
1360
|
-
示例值:1
|
|
1361
1318
|
*/
|
|
1362
1319
|
IsAuthorize: number
|
|
1363
1320
|
/**
|
|
1364
1321
|
* 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意腾讯云结合客户提供的信息,对已合法收集的用户数据进行必要处理得出服务结果,并返回给客户。
|
|
1365
1322
|
1-已授权;其它值为未授权。
|
|
1366
|
-
示例值:1
|
|
1367
1323
|
*/
|
|
1368
1324
|
IsOrderHandling?: number
|
|
1369
1325
|
/**
|
|
1370
1326
|
* 客户获得的用户授权期限时间戳(单位秒)。
|
|
1371
1327
|
|
|
1372
1328
|
不填默认无固定期限。
|
|
1373
|
-
|
|
1374
|
-
示例值:1719805604
|
|
1375
1329
|
*/
|
|
1376
1330
|
AuthorizationTerm?: number
|
|
1377
1331
|
/**
|
|
1378
1332
|
*
|
|
1379
1333
|
客户获得用户授权所依赖的协议地址。
|
|
1380
|
-
|
|
1381
|
-
示例值:https://www.*****.com/*
|
|
1382
1334
|
*/
|
|
1383
1335
|
PrivacyPolicyLink?: string
|
|
1384
1336
|
/**
|
|
1385
1337
|
* 是否是用户个人敏感数据(不推荐使用)。
|
|
1386
1338
|
|
|
1387
1339
|
固定填:1。
|
|
1388
|
-
|
|
1389
|
-
示例值:1
|
|
1390
1340
|
*/
|
|
1391
1341
|
IsPersonalData?: number
|
|
1392
1342
|
}
|
|
@@ -11,11 +11,11 @@ export interface DataContentInfo {
|
|
|
11
11
|
*/
|
|
12
12
|
DataRemark?: string;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* 名单数据开始时间
|
|
15
15
|
*/
|
|
16
16
|
StartTime?: string;
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* 名单数据结束时间
|
|
19
19
|
*/
|
|
20
20
|
EndTime?: string;
|
|
21
21
|
}
|
|
@@ -29,12 +29,10 @@ export interface OutputDescribeNameListFrontFix {
|
|
|
29
29
|
NameListId?: number;
|
|
30
30
|
/**
|
|
31
31
|
* 名单名称
|
|
32
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
33
32
|
*/
|
|
34
33
|
ListName?: string;
|
|
35
34
|
/**
|
|
36
35
|
* 名单类型 [1 黑名单 2 白名单]
|
|
37
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
38
36
|
*/
|
|
39
37
|
ListType?: number;
|
|
40
38
|
/**
|
|
@@ -47,15 +45,14 @@ export interface OutputDescribeNameListFrontFix {
|
|
|
47
45
|
Status?: number;
|
|
48
46
|
/**
|
|
49
47
|
* 描述
|
|
50
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
51
48
|
*/
|
|
52
49
|
Remark?: string;
|
|
53
50
|
/**
|
|
54
|
-
*
|
|
51
|
+
* 创建时间
|
|
55
52
|
*/
|
|
56
53
|
CreateTime?: string;
|
|
57
54
|
/**
|
|
58
|
-
*
|
|
55
|
+
* 更新时间
|
|
59
56
|
*/
|
|
60
57
|
UpdateTime?: string;
|
|
61
58
|
/**
|
|
@@ -64,12 +61,10 @@ export interface OutputDescribeNameListFrontFix {
|
|
|
64
61
|
EffectCount?: string;
|
|
65
62
|
/**
|
|
66
63
|
* 加密类型[0 无需加密 1 MD5加密 2 SHA256加密]
|
|
67
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
68
64
|
*/
|
|
69
65
|
EncryptionType?: number;
|
|
70
66
|
/**
|
|
71
67
|
* 场景Code,all_scene代表全部场景
|
|
72
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
73
68
|
*/
|
|
74
69
|
SceneCode?: string;
|
|
75
70
|
}
|
|
@@ -107,13 +102,11 @@ export interface OutputDescribeDataListFront {
|
|
|
107
102
|
*/
|
|
108
103
|
DataSource?: number;
|
|
109
104
|
/**
|
|
110
|
-
*
|
|
111
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
105
|
+
* 名单数据开始时间
|
|
112
106
|
*/
|
|
113
107
|
StartTime?: string;
|
|
114
108
|
/**
|
|
115
|
-
*
|
|
116
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
109
|
+
* 名单数据结束时间
|
|
117
110
|
*/
|
|
118
111
|
EndTime?: string;
|
|
119
112
|
/**
|
|
@@ -122,20 +115,18 @@ export interface OutputDescribeDataListFront {
|
|
|
122
115
|
Status?: number;
|
|
123
116
|
/**
|
|
124
117
|
* 名单数据描述
|
|
125
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
126
118
|
*/
|
|
127
119
|
Remark?: string;
|
|
128
120
|
/**
|
|
129
|
-
*
|
|
121
|
+
* 名单数据创建时间
|
|
130
122
|
*/
|
|
131
123
|
CreateTime?: string;
|
|
132
124
|
/**
|
|
133
|
-
*
|
|
125
|
+
* 名单数据更新时间
|
|
134
126
|
*/
|
|
135
127
|
UpdateTime?: string;
|
|
136
128
|
/**
|
|
137
129
|
* 加密名单数据内容
|
|
138
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
139
130
|
*/
|
|
140
131
|
EncryptDataContent?: string;
|
|
141
132
|
}
|
|
@@ -297,7 +288,6 @@ export interface ModifyNameListDataRequest {
|
|
|
297
288
|
export interface OuntputDescribeDataListInfo {
|
|
298
289
|
/**
|
|
299
290
|
* 数量
|
|
300
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
301
291
|
*/
|
|
302
292
|
Count?: number;
|
|
303
293
|
/**
|
|
@@ -439,37 +429,30 @@ export interface DeleteNameListRequest {
|
|
|
439
429
|
export interface OutputDescribeUserUsageCnt {
|
|
440
430
|
/**
|
|
441
431
|
* 当前付费模式,0 后付费 1 预付费
|
|
442
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
443
432
|
*/
|
|
444
433
|
PayMode?: number;
|
|
445
434
|
/**
|
|
446
435
|
* 后付费本月使用量
|
|
447
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
448
436
|
*/
|
|
449
437
|
AfterPayModeThisMonthUsedCnt?: number;
|
|
450
438
|
/**
|
|
451
439
|
* 创建时间
|
|
452
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
453
440
|
*/
|
|
454
441
|
CreateTime?: string;
|
|
455
442
|
/**
|
|
456
443
|
* 超出时间
|
|
457
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
458
444
|
*/
|
|
459
445
|
ExpireTime?: string;
|
|
460
446
|
/**
|
|
461
447
|
* 后付费上月使用量
|
|
462
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
463
448
|
*/
|
|
464
449
|
AfterPayModeLastMonthUsedCnt?: number;
|
|
465
450
|
/**
|
|
466
451
|
* 预付费总量
|
|
467
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
468
452
|
*/
|
|
469
453
|
BeforePayModeTotalUsedCnt?: number;
|
|
470
454
|
/**
|
|
471
455
|
* 预付费剩余用量
|
|
472
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
473
456
|
*/
|
|
474
457
|
BeforePayModeRemainUsedCnt?: number;
|
|
475
458
|
}
|
|
@@ -492,7 +475,6 @@ export interface DescribeNameListDetailResponse {
|
|
|
492
475
|
export interface OutputDescribeNameListInfo {
|
|
493
476
|
/**
|
|
494
477
|
* 总数
|
|
495
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
496
478
|
*/
|
|
497
479
|
Count?: number;
|
|
498
480
|
/**
|
|
@@ -521,17 +503,14 @@ export interface OutputDescribeNameListFrontFixListData {
|
|
|
521
503
|
/**
|
|
522
504
|
* 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
|
523
505
|
|
|
524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
525
506
|
*/
|
|
526
507
|
Code?: number;
|
|
527
508
|
/**
|
|
528
509
|
* 错误信息
|
|
529
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
530
510
|
*/
|
|
531
511
|
Message?: string;
|
|
532
512
|
/**
|
|
533
513
|
* 黑白名单列表信息
|
|
534
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
535
514
|
*/
|
|
536
515
|
Value?: OutputDescribeNameListInfo;
|
|
537
516
|
}
|
|
@@ -541,12 +520,10 @@ export interface OutputDescribeNameListFrontFixListData {
|
|
|
541
520
|
export interface OutputDeleteNameListData {
|
|
542
521
|
/**
|
|
543
522
|
* 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
|
544
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
545
523
|
*/
|
|
546
524
|
Code?: number;
|
|
547
525
|
/**
|
|
548
526
|
* 错误信息
|
|
549
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
550
527
|
*/
|
|
551
528
|
Message?: string;
|
|
552
529
|
/**
|
|
@@ -657,11 +634,11 @@ export interface InputModifyNameListDataFront {
|
|
|
657
634
|
*/
|
|
658
635
|
DataContent?: string;
|
|
659
636
|
/**
|
|
660
|
-
*
|
|
637
|
+
* 名单数据开始时间
|
|
661
638
|
*/
|
|
662
639
|
StartTime?: string;
|
|
663
640
|
/**
|
|
664
|
-
*
|
|
641
|
+
* 名单数据结束时间
|
|
665
642
|
*/
|
|
666
643
|
EndTime?: string;
|
|
667
644
|
/**
|
|
@@ -891,17 +868,14 @@ export interface OtherAccountInfo {
|
|
|
891
868
|
export interface OutputDescribeDataListFrontData {
|
|
892
869
|
/**
|
|
893
870
|
* 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
|
894
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
895
871
|
*/
|
|
896
872
|
Code?: number;
|
|
897
873
|
/**
|
|
898
874
|
* 错误信息
|
|
899
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
900
875
|
*/
|
|
901
876
|
Message?: string;
|
|
902
877
|
/**
|
|
903
878
|
* 黑白名单数据信息
|
|
904
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
905
879
|
*/
|
|
906
880
|
Value?: OuntputDescribeDataListInfo;
|
|
907
881
|
}
|
|
@@ -911,12 +885,10 @@ export interface OutputDescribeDataListFrontData {
|
|
|
911
885
|
export interface OutputDescribeNameListDetailFront {
|
|
912
886
|
/**
|
|
913
887
|
* 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
|
914
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
915
888
|
*/
|
|
916
889
|
Code?: number;
|
|
917
890
|
/**
|
|
918
891
|
* 错误信息
|
|
919
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
920
892
|
*/
|
|
921
893
|
Message?: string;
|
|
922
894
|
/**
|
|
@@ -931,52 +903,42 @@ export interface OutputDescribeNameListDetailFront {
|
|
|
931
903
|
export interface OutputDescribeNameListDetail {
|
|
932
904
|
/**
|
|
933
905
|
* 名单ID
|
|
934
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
935
906
|
*/
|
|
936
907
|
NameListId?: number;
|
|
937
908
|
/**
|
|
938
909
|
* 名单名称
|
|
939
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
940
910
|
*/
|
|
941
911
|
ListName?: string;
|
|
942
912
|
/**
|
|
943
913
|
* 名单类型 [1 黑名单 2 白名单]
|
|
944
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
945
914
|
*/
|
|
946
915
|
ListType?: number;
|
|
947
916
|
/**
|
|
948
917
|
* 数据类型[1 手机号 2 qqOpenId 3 2echatOpenId 4 ip 6 idfa 7 imei]
|
|
949
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
950
918
|
*/
|
|
951
919
|
DataType?: number;
|
|
952
920
|
/**
|
|
953
921
|
* 场景Code
|
|
954
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
955
922
|
*/
|
|
956
923
|
SceneCode?: string;
|
|
957
924
|
/**
|
|
958
925
|
* 名单列表状态 [1 启用 2 停用]
|
|
959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
960
926
|
*/
|
|
961
927
|
Status?: number;
|
|
962
928
|
/**
|
|
963
929
|
* 描述
|
|
964
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
965
930
|
*/
|
|
966
931
|
Remark?: string;
|
|
967
932
|
/**
|
|
968
|
-
*
|
|
969
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
933
|
+
* 创建时间
|
|
970
934
|
*/
|
|
971
935
|
CreateTime?: string;
|
|
972
936
|
/**
|
|
973
|
-
*
|
|
974
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
937
|
+
* 更新时间
|
|
975
938
|
*/
|
|
976
939
|
UpdateTime?: string;
|
|
977
940
|
/**
|
|
978
941
|
* 加密类型 [0 无需加密,1 MD5加密,2 SHA256加密]
|
|
979
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
980
942
|
*/
|
|
981
943
|
EncryptionType?: number;
|
|
982
944
|
}
|
|
@@ -1001,7 +963,9 @@ export interface OnlineScamInfo {
|
|
|
1001
963
|
*/
|
|
1002
964
|
ContentType?: number;
|
|
1003
965
|
/**
|
|
1004
|
-
*
|
|
966
|
+
* 账号类型
|
|
967
|
+
1:手机号
|
|
968
|
+
2:uin账号
|
|
1005
969
|
*/
|
|
1006
970
|
FraudType?: number;
|
|
1007
971
|
/**
|
|
@@ -1252,16 +1216,12 @@ export interface ImportNameListDataRequest {
|
|
|
1252
1216
|
export interface DataAuthorizationInfo {
|
|
1253
1217
|
/**
|
|
1254
1218
|
* 数据委托方、需求方:客户主体名称。
|
|
1255
|
-
|
|
1256
|
-
示例值:某某有限公司。
|
|
1257
1219
|
*/
|
|
1258
1220
|
DataProviderName: string;
|
|
1259
1221
|
/**
|
|
1260
1222
|
* 数据受托方、提供方:腾讯云主体名称。
|
|
1261
1223
|
|
|
1262
1224
|
固定填:腾讯云计算(北京)有限责任公司
|
|
1263
|
-
|
|
1264
|
-
示例值:腾讯云计算(北京)有限责任公司
|
|
1265
1225
|
*/
|
|
1266
1226
|
DataRecipientName: string;
|
|
1267
1227
|
/**
|
|
@@ -1276,43 +1236,33 @@ export interface DataAuthorizationInfo {
|
|
|
1276
1236
|
4-IP地址;
|
|
1277
1237
|
|
|
1278
1238
|
999-其它;
|
|
1279
|
-
|
|
1280
|
-
示例值:[1, 4]
|
|
1281
1239
|
*/
|
|
1282
1240
|
UserDataType: Array<number | bigint>;
|
|
1283
1241
|
/**
|
|
1284
1242
|
* 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意客户委托腾讯云处理入参信息
|
|
1285
1243
|
1-已授权;其它值为未授权。
|
|
1286
|
-
示例值:1
|
|
1287
1244
|
*/
|
|
1288
1245
|
IsAuthorize: number;
|
|
1289
1246
|
/**
|
|
1290
1247
|
* 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意腾讯云结合客户提供的信息,对已合法收集的用户数据进行必要处理得出服务结果,并返回给客户。
|
|
1291
1248
|
1-已授权;其它值为未授权。
|
|
1292
|
-
示例值:1
|
|
1293
1249
|
*/
|
|
1294
1250
|
IsOrderHandling?: number;
|
|
1295
1251
|
/**
|
|
1296
1252
|
* 客户获得的用户授权期限时间戳(单位秒)。
|
|
1297
1253
|
|
|
1298
1254
|
不填默认无固定期限。
|
|
1299
|
-
|
|
1300
|
-
示例值:1719805604
|
|
1301
1255
|
*/
|
|
1302
1256
|
AuthorizationTerm?: number;
|
|
1303
1257
|
/**
|
|
1304
1258
|
*
|
|
1305
1259
|
客户获得用户授权所依赖的协议地址。
|
|
1306
|
-
|
|
1307
|
-
示例值:https://www.*****.com/*
|
|
1308
1260
|
*/
|
|
1309
1261
|
PrivacyPolicyLink?: string;
|
|
1310
1262
|
/**
|
|
1311
1263
|
* 是否是用户个人敏感数据(不推荐使用)。
|
|
1312
1264
|
|
|
1313
1265
|
固定填:1。
|
|
1314
|
-
|
|
1315
|
-
示例值:1
|
|
1316
1266
|
*/
|
|
1317
1267
|
IsPersonalData?: number;
|
|
1318
1268
|
}
|
package/products.md
DELETED
|
@@ -1,261 +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
|
-
| acp | [应用合规平台](https://cloud.tencent.com/document/product/1553) | 2024-11-01 01:03:06 |
|
|
6
|
-
| advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2024-10-15 01:02:26 |
|
|
7
|
-
| af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2024-11-22 11:20:38 |
|
|
8
|
-
| afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2024-05-31 01:07:25 |
|
|
9
|
-
| aiart | [大模型图像创作引擎](https://cloud.tencent.com/document/product/1668) | 2024-11-20 01:07:23 |
|
|
10
|
-
| ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-08-17 01:06:14 |
|
|
11
|
-
| ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2024-09-03 01:07:31 |
|
|
12
|
-
| anicloud | [动效素材服务](https://cloud.tencent.com/document/product/1641) | 2023-05-18 01:01:53 |
|
|
13
|
-
| antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/297) | 2024-08-22 01:03:05 |
|
|
14
|
-
| apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
|
|
15
|
-
| ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
|
|
16
|
-
| api | [云 API](https://cloud.tencent.com/document/product/1278) | 2023-01-05 01:02:52 |
|
|
17
|
-
| apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2024-11-28 22:52:11 |
|
|
18
|
-
| apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2024-11-15 01:09:10 |
|
|
19
|
-
| as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2024-12-02 01:07:50 |
|
|
20
|
-
| asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2024-11-21 01:05:01 |
|
|
21
|
-
| asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2023-05-18 01:04:02 |
|
|
22
|
-
| ba | [ICP备案](https://cloud.tencent.com/document/product/243) | 2024-04-22 01:08:02 |
|
|
23
|
-
| batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2024-12-02 01:08:07 |
|
|
24
|
-
| bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2024-11-14 01:10:31 |
|
|
25
|
-
| bh | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2024-11-21 01:05:46 |
|
|
26
|
-
| bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2024-11-29 01:09:08 |
|
|
27
|
-
| billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2024-12-03 01:09:46 |
|
|
28
|
-
| bizlive | [商业直播](https://cloud.tencent.com/document/product) | 2020-03-10 01:08:07 |
|
|
29
|
-
| bm | [黑石物理服务器CPM](https://cloud.tencent.com/document/product/386) | 2024-03-20 01:08:40 |
|
|
30
|
-
| bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2024-10-18 01:04:14 |
|
|
31
|
-
| bmeip | [黑石弹性公网IP](https://cloud.tencent.com/document/product/1028) | 2024-03-20 01:08:53 |
|
|
32
|
-
| bmlb | [黑石负载均衡](https://cloud.tencent.com/document/product/1027) | 2024-03-20 01:08:56 |
|
|
33
|
-
| bmvpc | [黑石私有网络](https://cloud.tencent.com/document/product/1024) | 2024-03-20 01:09:02 |
|
|
34
|
-
| bpaas | [商业流程服务](https://cloud.tencent.com/document/product/1083) | 2024-11-29 01:10:03 |
|
|
35
|
-
| bri | [业务风险情报](https://cloud.tencent.com/document/product/1064) | 2024-06-19 01:13:52 |
|
|
36
|
-
| bsca | [软件成分分析](https://cloud.tencent.com/document/product/1483) | 2024-11-27 01:09:19 |
|
|
37
|
-
| btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2024-11-06 15:27:32 |
|
|
38
|
-
| ca | [腾讯云CA](https://cloud.tencent.com/document/product/1691) | 2024-11-05 01:13:21 |
|
|
39
|
-
| cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2024-12-04 01:10:30 |
|
|
40
|
-
| captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2024-10-23 01:09:56 |
|
|
41
|
-
| car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2024-06-19 01:14:59 |
|
|
42
|
-
| cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2024-11-15 01:13:36 |
|
|
43
|
-
| cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2024-12-02 01:09:38 |
|
|
44
|
-
| ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2024-11-21 01:09:52 |
|
|
45
|
-
| cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2024-12-05 01:06:32 |
|
|
46
|
-
| cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-11-15 01:15:46 |
|
|
47
|
-
| cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2024-11-26 01:10:29 |
|
|
48
|
-
| cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2024-11-08 01:17:02 |
|
|
49
|
-
| cdwch | [腾讯云数据仓库TCHouse-C](https://cloud.tencent.com/document/product/1299) | 2024-11-29 01:11:50 |
|
|
50
|
-
| cdwdoris | [腾讯云数据仓库 TCHouse-D](https://cloud.tencent.com/document/product/1387) | 2024-12-03 01:12:05 |
|
|
51
|
-
| cdwpg | [云数据仓库 PostgreSQL](https://cloud.tencent.com/document/product/878) | 2024-03-28 01:10:53 |
|
|
52
|
-
| cdz | [专属可用区](https://cloud.tencent.com/document/product/1629) | 2024-11-14 01:17:55 |
|
|
53
|
-
| cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2024-11-26 01:11:04 |
|
|
54
|
-
| cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2024-12-05 01:07:44 |
|
|
55
|
-
| cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2024-11-06 01:18:58 |
|
|
56
|
-
| chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2024-03-20 01:10:55 |
|
|
57
|
-
| ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2024-10-28 01:19:38 |
|
|
58
|
-
| cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2023-05-18 01:12:07 |
|
|
59
|
-
| cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
|
|
60
|
-
| cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
|
|
61
|
-
| ckafka | [消息队列 CKafka 版](https://cloud.tencent.com/document/product/597) | 2024-12-05 01:08:17 |
|
|
62
|
-
| clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2024-11-22 11:32:35 |
|
|
63
|
-
| cloudapp | [云应用](https://cloud.tencent.com/document/product/1689) | 2024-12-04 01:13:45 |
|
|
64
|
-
| cloudaudit | [操作审计](https://cloud.tencent.com/document/product/629) | 2024-11-08 01:21:05 |
|
|
65
|
-
| cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2024-11-28 10:52:49 |
|
|
66
|
-
| cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2024-11-28 01:12:23 |
|
|
67
|
-
| cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2024-11-29 01:13:30 |
|
|
68
|
-
| cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2024-09-25 01:13:30 |
|
|
69
|
-
| cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2024-11-07 01:22:53 |
|
|
70
|
-
| cms | [内容安全](https://cloud.tencent.com/document/product/669) | 2024-06-20 01:24:47 |
|
|
71
|
-
| config | [配置审计](https://cloud.tencent.com/document/product/1579) | 2024-11-29 01:14:07 |
|
|
72
|
-
| controlcenter | [控制中心](https://cloud.tencent.com/document/product/1708) | 2024-10-24 01:13:25 |
|
|
73
|
-
| cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2023-09-21 02:09:54 |
|
|
74
|
-
| csip | [云安全一体化平台](https://cloud.tencent.com/document/product/664) | 2024-11-04 21:21:11 |
|
|
75
|
-
| csxg | [5G入云服务](https://cloud.tencent.com/document/product/1687) | 2024-03-20 01:12:25 |
|
|
76
|
-
| cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2024-12-02 01:13:45 |
|
|
77
|
-
| cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2024-12-02 01:14:03 |
|
|
78
|
-
| cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
|
|
79
|
-
| cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2024-12-05 01:11:26 |
|
|
80
|
-
| dasb | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2024-11-19 01:26:13 |
|
|
81
|
-
| dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
|
|
82
|
-
| dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2023-05-18 01:20:11 |
|
|
83
|
-
| dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2024-10-22 01:16:15 |
|
|
84
|
-
| dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2024-11-27 01:14:54 |
|
|
85
|
-
| dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2024-10-15 16:53:15 |
|
|
86
|
-
| dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2024-11-28 01:15:15 |
|
|
87
|
-
| dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-11-11 01:28:04 |
|
|
88
|
-
| dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-11-28 01:15:53 |
|
|
89
|
-
| domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-10-25 01:35:02 |
|
|
90
|
-
| drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2024-11-06 01:31:02 |
|
|
91
|
-
| ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2024-03-20 01:15:13 |
|
|
92
|
-
| dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2024-10-14 01:17:08 |
|
|
93
|
-
| dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
|
|
94
|
-
| dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2024-12-03 01:17:27 |
|
|
95
|
-
| eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2024-10-29 01:30:37 |
|
|
96
|
-
| ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2024-09-05 01:32:54 |
|
|
97
|
-
| ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2024-10-22 01:18:29 |
|
|
98
|
-
| ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2024-11-05 01:39:00 |
|
|
99
|
-
| eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2024-06-25 01:14:34 |
|
|
100
|
-
| eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
|
|
101
|
-
| emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2024-12-05 01:14:08 |
|
|
102
|
-
| es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2024-11-15 01:34:50 |
|
|
103
|
-
| ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2024-12-05 01:14:35 |
|
|
104
|
-
| essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2024-12-05 01:14:56 |
|
|
105
|
-
| facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2024-11-21 01:33:53 |
|
|
106
|
-
| faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2024-12-05 01:15:16 |
|
|
107
|
-
| fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2024-11-15 01:37:24 |
|
|
108
|
-
| ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2024-11-21 01:34:23 |
|
|
109
|
-
| gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2024-10-30 01:36:27 |
|
|
110
|
-
| gme | [游戏多媒体引擎](https://cloud.tencent.com/document/product/607) | 2024-11-20 01:39:48 |
|
|
111
|
-
| goosefs | [数据加速器 GooseFS](https://cloud.tencent.com/document/product/1424) | 2024-11-28 01:18:42 |
|
|
112
|
-
| gpm | [游戏玩家匹配](https://cloud.tencent.com/document/product/1294) | 2022-07-11 06:12:36 |
|
|
113
|
-
| gs | [云游戏](https://cloud.tencent.com/document/product/1162) | 2024-05-28 01:43:15 |
|
|
114
|
-
| gse | [游戏服务器伸缩](https://cloud.tencent.com/document/product/1165) | 2022-07-11 06:12:44 |
|
|
115
|
-
| gwlb | [网关负载均衡](https://cloud.tencent.com/document/product/1782) | 2024-11-29 01:20:51 |
|
|
116
|
-
| habo | [](https://cloud.tencent.com/document/product) | 2019-05-09 19:37:22 |
|
|
117
|
-
| hai | [高性能应用服务](https://cloud.tencent.com/document/product/1721) | 2024-11-14 01:40:52 |
|
|
118
|
-
| hasim | [高可用物联网卡](https://cloud.tencent.com/document/product/1482) | 2023-05-18 01:29:47 |
|
|
119
|
-
| hcm | [数学作业批改](https://cloud.tencent.com/document/product/1004) | 2024-05-09 01:16:27 |
|
|
120
|
-
| hunyuan | [腾讯混元大模型](https://cloud.tencent.com/document/product/1729) | 2024-12-03 11:33:50 |
|
|
121
|
-
| iai | [人脸识别](https://cloud.tencent.com/document/product/867) | 2024-11-26 01:18:52 |
|
|
122
|
-
| iap | [身份识别平台](https://cloud.tencent.com/document/product/1787) | 2024-11-21 18:27:30 |
|
|
123
|
-
| ic | [图片瘦身](https://cloud.tencent.com/document/product/636) | 2023-03-02 01:23:21 |
|
|
124
|
-
| icr | [对话机器人](https://cloud.tencent.com/document/product/1268) | 2024-04-22 01:17:48 |
|
|
125
|
-
| ie | [智能编辑](https://cloud.tencent.com/document/product/1186) | 2023-08-17 03:20:18 |
|
|
126
|
-
| iecp | [物联网边缘计算平台](https://cloud.tencent.com/document/product/1118) | 2024-09-25 01:22:07 |
|
|
127
|
-
| ig | [智能导诊](https://cloud.tencent.com/document/product/1273) | 2024-11-21 01:36:39 |
|
|
128
|
-
| iir | [智能识图](https://cloud.tencent.com/document/product/1217) | 2022-04-04 06:48:05 |
|
|
129
|
-
| ims | [图片内容安全](https://cloud.tencent.com/document/product/1125) | 2024-12-03 10:53:29 |
|
|
130
|
-
| ioa | [iOA 零信任安全管理系统](https://cloud.tencent.com/document/product/1092) | 2024-11-11 01:39:45 |
|
|
131
|
-
| iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2023-07-17 01:22:28 |
|
|
132
|
-
| iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2024-06-05 01:47:50 |
|
|
133
|
-
| iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2024-12-04 01:20:56 |
|
|
134
|
-
| iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
|
|
135
|
-
| iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2024-11-06 01:44:05 |
|
|
136
|
-
| iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2024-03-20 01:18:54 |
|
|
137
|
-
| irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2024-10-17 01:22:29 |
|
|
138
|
-
| iss | [智能视图计算平台](https://cloud.tencent.com/document/product/1344) | 2024-11-21 01:40:33 |
|
|
139
|
-
| ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2024-12-04 01:22:24 |
|
|
140
|
-
| keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2024-03-20 01:19:20 |
|
|
141
|
-
| kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2024-11-07 01:44:48 |
|
|
142
|
-
| lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2024-12-04 01:22:49 |
|
|
143
|
-
| lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2024-11-28 01:21:14 |
|
|
144
|
-
| live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2024-12-03 01:22:35 |
|
|
145
|
-
| lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2024-12-05 01:19:03 |
|
|
146
|
-
| lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
|
|
147
|
-
| lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
|
|
148
|
-
| mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2024-03-20 01:20:11 |
|
|
149
|
-
| mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2024-11-28 01:22:21 |
|
|
150
|
-
| market | [云市场](https://cloud.tencent.com/document/product/306) | 2024-11-25 01:21:47 |
|
|
151
|
-
| memcached | [云数据库Memcached](https://cloud.tencent.com/document/product/241) | 2024-08-28 02:03:45 |
|
|
152
|
-
| mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
|
|
153
|
-
| mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2024-11-11 01:49:22 |
|
|
154
|
-
| mna | [多网聚合加速](https://cloud.tencent.com/document/product/1385) | 2024-08-23 01:55:12 |
|
|
155
|
-
| mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2024-11-05 01:57:16 |
|
|
156
|
-
| monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2024-11-21 01:46:37 |
|
|
157
|
-
| mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2024-12-05 01:20:23 |
|
|
158
|
-
| mqtt | [消息队列 MQTT 版](https://cloud.tencent.com/document/product/1778) | 2024-11-01 01:51:29 |
|
|
159
|
-
| mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2024-11-29 11:42:29 |
|
|
160
|
-
| ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2024-11-14 01:54:52 |
|
|
161
|
-
| msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2024-04-17 14:48:31 |
|
|
162
|
-
| mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
|
|
163
|
-
| nlp | [NLP 服务](https://cloud.tencent.com/document/product/271) | 2024-09-27 01:23:18 |
|
|
164
|
-
| npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
|
|
165
|
-
| oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2024-11-28 01:23:56 |
|
|
166
|
-
| ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2024-12-02 01:25:30 |
|
|
167
|
-
| omics | [腾讯健康组学平台](https://cloud.tencent.com/document/product/1643) | 2024-11-21 01:50:50 |
|
|
168
|
-
| organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2024-12-04 01:26:24 |
|
|
169
|
-
| partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2024-11-22 12:03:22 |
|
|
170
|
-
| pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2023-05-18 01:44:14 |
|
|
171
|
-
| postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2024-09-25 01:28:57 |
|
|
172
|
-
| privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2024-12-05 01:22:30 |
|
|
173
|
-
| pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2024-11-22 12:04:22 |
|
|
174
|
-
| rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-12-04 01:27:22 |
|
|
175
|
-
| redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2024-12-04 01:27:25 |
|
|
176
|
-
| region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2024-10-25 02:05:36 |
|
|
177
|
-
| rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2023-12-25 00:16:39 |
|
|
178
|
-
| rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
|
|
179
|
-
| rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2024-11-22 12:05:49 |
|
|
180
|
-
| scf | [云函数](https://cloud.tencent.com/document/product/583) | 2024-12-03 01:27:04 |
|
|
181
|
-
| ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2024-10-22 01:28:58 |
|
|
182
|
-
| smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2024-08-12 02:09:46 |
|
|
183
|
-
| smop | [腾讯安心用户运营平台](https://cloud.tencent.com/document/product/1310) | 2024-10-31 02:02:47 |
|
|
184
|
-
| smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2024-07-09 01:21:06 |
|
|
185
|
-
| sms | [短信](https://cloud.tencent.com/document/product/382) | 2024-10-21 17:47:13 |
|
|
186
|
-
| soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2024-11-13 02:01:41 |
|
|
187
|
-
| solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
|
|
188
|
-
| sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2024-11-15 01:59:49 |
|
|
189
|
-
| ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-11-15 02:18:28 |
|
|
190
|
-
| ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2024-12-04 01:28:42 |
|
|
191
|
-
| sslpod | [证书监控 SSLPod](https://cloud.tencent.com/document/product/1084) | 2024-03-20 01:24:03 |
|
|
192
|
-
| ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2024-11-08 02:01:05 |
|
|
193
|
-
| sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2024-10-24 01:29:59 |
|
|
194
|
-
| svp | [节省计划](https://cloud.tencent.com/document/product/1761) | 2024-11-27 01:26:33 |
|
|
195
|
-
| taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2024-11-04 02:00:37 |
|
|
196
|
-
| tag | [标签](https://cloud.tencent.com/document/product/651) | 2024-11-11 02:03:20 |
|
|
197
|
-
| tan | [碳引擎](https://cloud.tencent.com/document/product/1498) | 2024-03-20 01:24:15 |
|
|
198
|
-
| tat | [自动化助手](https://cloud.tencent.com/document/product/1340) | 2024-11-22 12:09:41 |
|
|
199
|
-
| tav | [文件检测](https://cloud.tencent.com/document/product) | 2019-11-28 22:10:04 |
|
|
200
|
-
| tbaas | [腾讯云区块链服务平台 TBaaS](https://cloud.tencent.com/document/product/663) | 2024-05-14 02:28:40 |
|
|
201
|
-
| tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 |
|
|
202
|
-
| tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2024-03-20 01:24:24 |
|
|
203
|
-
| tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2024-08-05 02:05:20 |
|
|
204
|
-
| tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2024-09-26 01:32:18 |
|
|
205
|
-
| tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2024-08-08 02:12:50 |
|
|
206
|
-
| tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
|
|
207
|
-
| tchd | [腾讯云健康看板](https://cloud.tencent.com/document/product/1688) | 2024-11-21 02:00:04 |
|
|
208
|
-
| tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
|
|
209
|
-
| tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2024-06-18 02:13:19 |
|
|
210
|
-
| tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2024-11-11 02:05:44 |
|
|
211
|
-
| tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-11-04 02:03:35 |
|
|
212
|
-
| tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2024-07-10 01:25:35 |
|
|
213
|
-
| tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-06-04 02:17:43 |
|
|
214
|
-
| tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2024-11-22 12:12:16 |
|
|
215
|
-
| tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2024-11-14 02:08:25 |
|
|
216
|
-
| tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2024-11-05 02:16:13 |
|
|
217
|
-
| teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2024-12-03 16:23:50 |
|
|
218
|
-
| thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2024-11-26 01:28:42 |
|
|
219
|
-
| tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
|
|
220
|
-
| tic | [资源编排 TIC](https://cloud.tencent.com/document/product/1213) | 2023-08-17 05:26:08 |
|
|
221
|
-
| ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 |
|
|
222
|
-
| tics | [威胁情报云查服务](https://cloud.tencent.com/document/product/1013) | 2024-03-20 01:27:08 |
|
|
223
|
-
| tiems | [腾讯云 TI 平台 TI-EMS ](https://cloud.tencent.com/document/product/1120) | 2022-07-19 06:19:39 |
|
|
224
|
-
| tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2024-08-19 02:22:39 |
|
|
225
|
-
| tione | [TI-ONE 训练平台](https://cloud.tencent.com/document/product/851) | 2024-06-07 02:37:51 |
|
|
226
|
-
| tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2024-03-20 01:27:28 |
|
|
227
|
-
| tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2024-12-04 01:31:35 |
|
|
228
|
-
| tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
|
|
229
|
-
| tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2024-10-30 02:12:39 |
|
|
230
|
-
| tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2024-12-05 01:26:59 |
|
|
231
|
-
| tourism | [文旅客情大数据](https://cloud.tencent.com/document/product/1684) | 2024-03-20 01:28:59 |
|
|
232
|
-
| trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2023-05-18 02:01:19 |
|
|
233
|
-
| trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2024-12-05 01:27:01 |
|
|
234
|
-
| trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2024-11-08 02:10:59 |
|
|
235
|
-
| trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2024-11-14 02:13:50 |
|
|
236
|
-
| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2024-12-04 01:32:06 |
|
|
237
|
-
| tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2024-11-27 01:29:50 |
|
|
238
|
-
| tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-12-03 01:31:33 |
|
|
239
|
-
| tsi | [腾讯同传系统](https://cloud.tencent.com/document/product/1399) | 2024-10-23 01:36:51 |
|
|
240
|
-
| tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2024-03-20 01:30:06 |
|
|
241
|
-
| tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2024-12-03 01:32:15 |
|
|
242
|
-
| ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2024-03-20 01:30:08 |
|
|
243
|
-
| vcg | [视频生成](https://cloud.tencent.com/document/product/1770) | 2024-11-22 12:20:45 |
|
|
244
|
-
| vclm | [大模型视频创作引擎](https://cloud.tencent.com/document/product/1616) | 2024-12-02 18:08:43 |
|
|
245
|
-
| vcube | [音视频终端引擎](https://cloud.tencent.com/document/product/1449) | 2024-12-05 01:28:35 |
|
|
246
|
-
| vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2024-12-04 01:33:14 |
|
|
247
|
-
| vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-07-26 02:26:34 |
|
|
248
|
-
| vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
|
|
249
|
-
| vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-11-18 02:09:13 |
|
|
250
|
-
| vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2024-12-05 01:29:33 |
|
|
251
|
-
| vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-09-06 02:27:27 |
|
|
252
|
-
| vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-10-16 01:32:39 |
|
|
253
|
-
| waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2024-11-19 02:12:25 |
|
|
254
|
-
| wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2024-11-20 02:21:21 |
|
|
255
|
-
| wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2024-11-27 01:32:52 |
|
|
256
|
-
| weilingwith | [微瓴同业开放平台](https://cloud.tencent.com/document/product/1693) | 2024-11-07 02:23:06 |
|
|
257
|
-
| wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
|
|
258
|
-
| yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2024-06-05 02:38:46 |
|
|
259
|
-
| youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
|
|
260
|
-
| yunjing | [主机安全](https://cloud.tencent.com/document/product) | 2020-09-15 08:08:47 |
|
|
261
|
-
| yunsou | [腾讯云搜TCS](https://cloud.tencent.com/document/product/270) | 2024-03-20 01:33:14 |
|