tencentcloud-sdk-nodejs-rce 4.0.985 → 4.0.1037

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 CHANGED
@@ -1,36 +1,66 @@
1
1
  # 简介
2
2
 
3
- 欢迎使用腾讯云开发者工具套件(SDK),NODEJS SDK 4.0 是云 API 3.0 平台的配套工具。目前已经支持 cvm、vpc、cbs 等产品,后续所有的云服务产品都会接入进来。新版 SDK 实现了统一化,具有各个语言版本的 SDK 使用方法相同,接口调用方式相同,统一的错误码和返回包格式这些优点。
4
- 为方便 NODEJS 开发者调试和接入腾讯云产品 API,这里向您介绍适用于 NODEJS 的腾讯云开发工具包,并提供首次使用开发工具包的简单示例。让您快速获取腾讯云 NODEJS SDK 并开始调用。
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. NODEJS 10.0.0 版本及以上
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
- 安装 NODEJS SDK 前,先获取安全凭证。在第一次使用云 API 之前,用户首先需要在腾讯云控制台上申请安全凭证,安全凭证包括 SecretID SecretKey, SecretID 是用于标识 API 调用者的身份,SecretKey 是用于加密签名字符串和服务器端验证签名字符串的密钥。SecretKey 必须严格保管,避免泄露。
13
+ 使用 SDK 需要 API 密钥,可前往 [腾讯云控制台 - 访问密钥](https://console.cloud.tencent.com/cam/capi) 页面申请,API 密钥包括 SecretID SecretKey,密钥须严格保管,避免泄露。
15
14
 
16
- ## 通过 Npm 安装
15
+ ## 通过 npm 安装
17
16
 
18
- 通过 npm 获取安装是使用 NODEJS SDK 的推荐方法,npm 是 NODEJS 的包管理工具。关于 npm 详细可参考[ npm 官网](https://www.npmjs.com/) 。
17
+ 通过 npm 获取安装是使用 Node.js SDK 的推荐方法,关于 npm 详细可参考 [NPM 官网](https://www.npmjs.com/) 。
19
18
 
20
- 1. 执行以下安装命令:
21
- > npm install tencentcloud-sdk-nodejs --save
22
- 2. 在您的代码中引用对应模块代码,可参考示例。
23
- 3. 如上引用方式会将腾讯云所有产品sdk下载到本地,可以将tencentcloud-sdk-nodejs换成tencentcloud-sdk-nodejs-cvm/cbs/vpc等,即可引用特定产品的sdk,代码中可将require("tencentcloud-sdk-nodejs")改为require("tencentcloud-sdk-nodejs-cvm/cbs/vpc"),其余不变,可参考示例,可大大节省存储空间。
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. 前往 [Github 仓库](https://github.com/tencentcloud/tencentcloud-sdk-nodejs) 或者 [Gitee 仓库](https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs) 下载源码压缩包。
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")` 的方式引入sdk,具体可参考示例。
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
- 在支持 typescript 项目中,采用如下方式调用
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
- 实例化`Client` 的入参支持 `clientConfig` 数据结构和说明 详见 [ClientConfig](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts)
116
+ 实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts)
87
117
 
88
118
  ## Common Client
89
- 从 4.0.714 版本开始腾讯云 NODEJS SDK 支持使用泛用性的 API 调用方式(Common Client)进行请求。您只需要安装 tencentcloud-sdk-nodejs-common 包,即可向任何产品发起调用。
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
- 更丰富的使用 demo 请在 examples 目录中寻找。
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
- 请**务必不要**将此sdk直接用于web前端(包括小程序等),暴露密钥在这些环境非常不安全。
155
+ 请**务必不要**将此 SDK 直接用于 Web 前端(包括小程序等),暴露密钥在这些环境非常不安全。
129
156
 
130
- 正确的做法是在自己的服务端引用此sdk,并保存好密钥,做好请求鉴权;前端再调用服务端执行业务流程。
157
+ 正确的做法是在自己的服务端引用此 SDK,并保存好密钥,做好请求鉴权,前端再调用服务端执行业务流程。
131
158
 
132
159
  - `The "original" argument must be of type Function.`
133
160
 
134
- 通常是因为nodejs版本低于 `v10` ,或处于非node环境,请再次确认执行环境。
161
+ 通常是因为 Node.js 版本低于 `v10` ,或处于非 Node.js 环境,请再次确认执行环境。
135
162
 
136
163
  - 请求不通
137
164
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-rce",
3
- "version": "4.0.985",
3
+ "version": "4.0.1037",
4
4
  "description": "Tencent Cloud API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
@@ -28,11 +28,11 @@ export interface DataContentInfo {
28
28
  */
29
29
  DataRemark?: string
30
30
  /**
31
- * 名单数据开始时间,时间格式示例"2024-05-05 12:10:15"
31
+ * 名单数据开始时间
32
32
  */
33
33
  StartTime?: string
34
34
  /**
35
- * 名单数据结束时间,时间格式示例"2024-05-05 12:10:15"
35
+ * 名单数据结束时间
36
36
  */
37
37
  EndTime?: string
38
38
  }
@@ -69,11 +69,11 @@ export interface OutputDescribeNameListFrontFix {
69
69
  */
70
70
  Remark?: string
71
71
  /**
72
- * 创建时间,时间格式示例"2024-05-05 12:10:15"
72
+ * 创建时间
73
73
  */
74
74
  CreateTime?: string
75
75
  /**
76
- * 更新时间,时间格式示例"2024-05-05 12:10:15"
76
+ * 更新时间
77
77
  */
78
78
  UpdateTime?: string
79
79
  /**
@@ -127,13 +127,11 @@ export interface OutputDescribeDataListFront {
127
127
  */
128
128
  DataSource?: number
129
129
  /**
130
- * 名单数据开始时间,时间格式示例"2024-05-05 12:10:15"
131
- 注意:此字段可能返回 null,表示取不到有效值。
130
+ * 名单数据开始时间
132
131
  */
133
132
  StartTime?: string
134
133
  /**
135
- * 名单数据结束时间,时间格式示例"2024-05-05 12:10:15"
136
- 注意:此字段可能返回 null,表示取不到有效值。
134
+ * 名单数据结束时间
137
135
  */
138
136
  EndTime?: string
139
137
  /**
@@ -142,20 +140,18 @@ export interface OutputDescribeDataListFront {
142
140
  Status?: number
143
141
  /**
144
142
  * 名单数据描述
145
- 注意:此字段可能返回 null,表示取不到有效值。
146
143
  */
147
144
  Remark?: string
148
145
  /**
149
- * 名单数据创建时间,时间格式示例"2024-05-05 12:10:15"
146
+ * 名单数据创建时间
150
147
  */
151
148
  CreateTime?: string
152
149
  /**
153
- * 名单数据更新时间,时间格式示例"2024-05-05 12:10:15"
150
+ * 名单数据更新时间
154
151
  */
155
152
  UpdateTime?: string
156
153
  /**
157
154
  * 加密名单数据内容
158
- 注意:此字段可能返回 null,表示取不到有效值。
159
155
  */
160
156
  EncryptDataContent?: string
161
157
  }
@@ -325,7 +321,6 @@ export interface ModifyNameListDataRequest {
325
321
  export interface OuntputDescribeDataListInfo {
326
322
  /**
327
323
  * 数量
328
- 注意:此字段可能返回 null,表示取不到有效值。
329
324
  */
330
325
  Count?: number
331
326
  /**
@@ -582,12 +577,10 @@ export interface OutputDescribeNameListFrontFixListData {
582
577
  export interface OutputDeleteNameListData {
583
578
  /**
584
579
  * 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
585
- 注意:此字段可能返回 null,表示取不到有效值。
586
580
  */
587
581
  Code?: number
588
582
  /**
589
583
  * 错误信息
590
- 注意:此字段可能返回 null,表示取不到有效值。
591
584
  */
592
585
  Message?: string
593
586
  /**
@@ -706,11 +699,11 @@ export interface InputModifyNameListDataFront {
706
699
  */
707
700
  DataContent?: string
708
701
  /**
709
- * 名单数据开始时间,时间格式示例"2024-05-05 12:10:15"
702
+ * 名单数据开始时间
710
703
  */
711
704
  StartTime?: string
712
705
  /**
713
- * 名单数据结束时间,时间格式示例"2024-05-05 12:10:15"
706
+ * 名单数据结束时间
714
707
  */
715
708
  EndTime?: string
716
709
  /**
@@ -1028,12 +1021,12 @@ export interface OutputDescribeNameListDetail {
1028
1021
  */
1029
1022
  Remark?: string
1030
1023
  /**
1031
- * 创建时间,时间格式示例"2024-05-05 12:10:15"
1024
+ * 创建时间
1032
1025
  注意:此字段可能返回 null,表示取不到有效值。
1033
1026
  */
1034
1027
  CreateTime?: string
1035
1028
  /**
1036
- * 更新时间,时间格式示例"2024-05-05 12:10:15"
1029
+ * 更新时间
1037
1030
  注意:此字段可能返回 null,表示取不到有效值。
1038
1031
  */
1039
1032
  UpdateTime?: string
@@ -1065,7 +1058,9 @@ export interface OnlineScamInfo {
1065
1058
  */
1066
1059
  ContentType?: number
1067
1060
  /**
1068
- * 类型
1061
+ * 账号类型
1062
+ 1:手机号
1063
+ 2:uin账号
1069
1064
  */
1070
1065
  FraudType?: number
1071
1066
  /**
@@ -1326,16 +1321,12 @@ export interface ImportNameListDataRequest {
1326
1321
  export interface DataAuthorizationInfo {
1327
1322
  /**
1328
1323
  * 数据委托方、需求方:客户主体名称。
1329
-
1330
- 示例值:某某有限公司。
1331
1324
  */
1332
1325
  DataProviderName: string
1333
1326
  /**
1334
1327
  * 数据受托方、提供方:腾讯云主体名称。
1335
1328
 
1336
1329
  固定填:腾讯云计算(北京)有限责任公司
1337
-
1338
- 示例值:腾讯云计算(北京)有限责任公司
1339
1330
  */
1340
1331
  DataRecipientName: string
1341
1332
  /**
@@ -1350,43 +1341,33 @@ export interface DataAuthorizationInfo {
1350
1341
  4-IP地址;
1351
1342
 
1352
1343
  999-其它;
1353
-
1354
- 示例值:[1, 4]
1355
1344
  */
1356
1345
  UserDataType: Array<number | bigint>
1357
1346
  /**
1358
1347
  * 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意客户委托腾讯云处理入参信息
1359
1348
  1-已授权;其它值为未授权。
1360
- 示例值:1
1361
1349
  */
1362
1350
  IsAuthorize: number
1363
1351
  /**
1364
1352
  * 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意腾讯云结合客户提供的信息,对已合法收集的用户数据进行必要处理得出服务结果,并返回给客户。
1365
1353
  1-已授权;其它值为未授权。
1366
- 示例值:1
1367
1354
  */
1368
1355
  IsOrderHandling?: number
1369
1356
  /**
1370
1357
  * 客户获得的用户授权期限时间戳(单位秒)。
1371
1358
 
1372
1359
  不填默认无固定期限。
1373
-
1374
- 示例值:1719805604
1375
1360
  */
1376
1361
  AuthorizationTerm?: number
1377
1362
  /**
1378
1363
  *
1379
1364
  客户获得用户授权所依赖的协议地址。
1380
-
1381
- 示例值:https://www.*****.com/*
1382
1365
  */
1383
1366
  PrivacyPolicyLink?: string
1384
1367
  /**
1385
1368
  * 是否是用户个人敏感数据(不推荐使用)。
1386
1369
 
1387
1370
  固定填:1。
1388
-
1389
- 示例值:1
1390
1371
  */
1391
1372
  IsPersonalData?: number
1392
1373
  }
@@ -11,11 +11,11 @@ export interface DataContentInfo {
11
11
  */
12
12
  DataRemark?: string;
13
13
  /**
14
- * 名单数据开始时间,时间格式示例"2024-05-05 12:10:15"
14
+ * 名单数据开始时间
15
15
  */
16
16
  StartTime?: string;
17
17
  /**
18
- * 名单数据结束时间,时间格式示例"2024-05-05 12:10:15"
18
+ * 名单数据结束时间
19
19
  */
20
20
  EndTime?: string;
21
21
  }
@@ -51,11 +51,11 @@ export interface OutputDescribeNameListFrontFix {
51
51
  */
52
52
  Remark?: string;
53
53
  /**
54
- * 创建时间,时间格式示例"2024-05-05 12:10:15"
54
+ * 创建时间
55
55
  */
56
56
  CreateTime?: string;
57
57
  /**
58
- * 更新时间,时间格式示例"2024-05-05 12:10:15"
58
+ * 更新时间
59
59
  */
60
60
  UpdateTime?: string;
61
61
  /**
@@ -107,13 +107,11 @@ export interface OutputDescribeDataListFront {
107
107
  */
108
108
  DataSource?: number;
109
109
  /**
110
- * 名单数据开始时间,时间格式示例"2024-05-05 12:10:15"
111
- 注意:此字段可能返回 null,表示取不到有效值。
110
+ * 名单数据开始时间
112
111
  */
113
112
  StartTime?: string;
114
113
  /**
115
- * 名单数据结束时间,时间格式示例"2024-05-05 12:10:15"
116
- 注意:此字段可能返回 null,表示取不到有效值。
114
+ * 名单数据结束时间
117
115
  */
118
116
  EndTime?: string;
119
117
  /**
@@ -122,20 +120,18 @@ export interface OutputDescribeDataListFront {
122
120
  Status?: number;
123
121
  /**
124
122
  * 名单数据描述
125
- 注意:此字段可能返回 null,表示取不到有效值。
126
123
  */
127
124
  Remark?: string;
128
125
  /**
129
- * 名单数据创建时间,时间格式示例"2024-05-05 12:10:15"
126
+ * 名单数据创建时间
130
127
  */
131
128
  CreateTime?: string;
132
129
  /**
133
- * 名单数据更新时间,时间格式示例"2024-05-05 12:10:15"
130
+ * 名单数据更新时间
134
131
  */
135
132
  UpdateTime?: string;
136
133
  /**
137
134
  * 加密名单数据内容
138
- 注意:此字段可能返回 null,表示取不到有效值。
139
135
  */
140
136
  EncryptDataContent?: string;
141
137
  }
@@ -297,7 +293,6 @@ export interface ModifyNameListDataRequest {
297
293
  export interface OuntputDescribeDataListInfo {
298
294
  /**
299
295
  * 数量
300
- 注意:此字段可能返回 null,表示取不到有效值。
301
296
  */
302
297
  Count?: number;
303
298
  /**
@@ -541,12 +536,10 @@ export interface OutputDescribeNameListFrontFixListData {
541
536
  export interface OutputDeleteNameListData {
542
537
  /**
543
538
  * 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
544
- 注意:此字段可能返回 null,表示取不到有效值。
545
539
  */
546
540
  Code?: number;
547
541
  /**
548
542
  * 错误信息
549
- 注意:此字段可能返回 null,表示取不到有效值。
550
543
  */
551
544
  Message?: string;
552
545
  /**
@@ -657,11 +650,11 @@ export interface InputModifyNameListDataFront {
657
650
  */
658
651
  DataContent?: string;
659
652
  /**
660
- * 名单数据开始时间,时间格式示例"2024-05-05 12:10:15"
653
+ * 名单数据开始时间
661
654
  */
662
655
  StartTime?: string;
663
656
  /**
664
- * 名单数据结束时间,时间格式示例"2024-05-05 12:10:15"
657
+ * 名单数据结束时间
665
658
  */
666
659
  EndTime?: string;
667
660
  /**
@@ -965,12 +958,12 @@ export interface OutputDescribeNameListDetail {
965
958
  */
966
959
  Remark?: string;
967
960
  /**
968
- * 创建时间,时间格式示例"2024-05-05 12:10:15"
961
+ * 创建时间
969
962
  注意:此字段可能返回 null,表示取不到有效值。
970
963
  */
971
964
  CreateTime?: string;
972
965
  /**
973
- * 更新时间,时间格式示例"2024-05-05 12:10:15"
966
+ * 更新时间
974
967
  注意:此字段可能返回 null,表示取不到有效值。
975
968
  */
976
969
  UpdateTime?: string;
@@ -1001,7 +994,9 @@ export interface OnlineScamInfo {
1001
994
  */
1002
995
  ContentType?: number;
1003
996
  /**
1004
- * 类型
997
+ * 账号类型
998
+ 1:手机号
999
+ 2:uin账号
1005
1000
  */
1006
1001
  FraudType?: number;
1007
1002
  /**
@@ -1252,16 +1247,12 @@ export interface ImportNameListDataRequest {
1252
1247
  export interface DataAuthorizationInfo {
1253
1248
  /**
1254
1249
  * 数据委托方、需求方:客户主体名称。
1255
-
1256
- 示例值:某某有限公司。
1257
1250
  */
1258
1251
  DataProviderName: string;
1259
1252
  /**
1260
1253
  * 数据受托方、提供方:腾讯云主体名称。
1261
1254
 
1262
1255
  固定填:腾讯云计算(北京)有限责任公司
1263
-
1264
- 示例值:腾讯云计算(北京)有限责任公司
1265
1256
  */
1266
1257
  DataRecipientName: string;
1267
1258
  /**
@@ -1276,43 +1267,33 @@ export interface DataAuthorizationInfo {
1276
1267
  4-IP地址;
1277
1268
 
1278
1269
  999-其它;
1279
-
1280
- 示例值:[1, 4]
1281
1270
  */
1282
1271
  UserDataType: Array<number | bigint>;
1283
1272
  /**
1284
1273
  * 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意客户委托腾讯云处理入参信息
1285
1274
  1-已授权;其它值为未授权。
1286
- 示例值:1
1287
1275
  */
1288
1276
  IsAuthorize: number;
1289
1277
  /**
1290
1278
  * 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意腾讯云结合客户提供的信息,对已合法收集的用户数据进行必要处理得出服务结果,并返回给客户。
1291
1279
  1-已授权;其它值为未授权。
1292
- 示例值:1
1293
1280
  */
1294
1281
  IsOrderHandling?: number;
1295
1282
  /**
1296
1283
  * 客户获得的用户授权期限时间戳(单位秒)。
1297
1284
 
1298
1285
  不填默认无固定期限。
1299
-
1300
- 示例值:1719805604
1301
1286
  */
1302
1287
  AuthorizationTerm?: number;
1303
1288
  /**
1304
1289
  *
1305
1290
  客户获得用户授权所依赖的协议地址。
1306
-
1307
- 示例值:https://www.*****.com/*
1308
1291
  */
1309
1292
  PrivacyPolicyLink?: string;
1310
1293
  /**
1311
1294
  * 是否是用户个人敏感数据(不推荐使用)。
1312
1295
 
1313
1296
  固定填:1。
1314
-
1315
- 示例值:1
1316
1297
  */
1317
1298
  IsPersonalData?: number;
1318
1299
  }
package/products.md DELETED
@@ -1,260 +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-03 01:11:07 |
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-11-27 01:11:05 |
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-04 16:18:31 |
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-02 01:15:10 |
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-11-21 01:30:48 |
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-02 01:18:08 |
104
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2024-12-02 01:18:29 |
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-03 01:19:15 |
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-04 01:23:42 |
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-04 01:24:58 |
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-11-28 01:25:24 |
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-04 01:31:43 |
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-10-22 12:32:33 |
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
- | vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2024-12-04 01:33:14 |
246
- | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-07-26 02:26:34 |
247
- | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
248
- | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-11-18 02:09:13 |
249
- | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2024-12-04 01:34:00 |
250
- | vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-09-06 02:27:27 |
251
- | vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-10-16 01:32:39 |
252
- | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2024-11-19 02:12:25 |
253
- | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2024-11-20 02:21:21 |
254
- | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2024-11-27 01:32:52 |
255
- | weilingwith | [微瓴同业开放平台](https://cloud.tencent.com/document/product/1693) | 2024-11-07 02:23:06 |
256
- | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
257
- | yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2024-06-05 02:38:46 |
258
- | youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
259
- | yunjing | [主机安全](https://cloud.tencent.com/document/product) | 2020-09-15 08:08:47 |
260
- | yunsou | [腾讯云搜TCS](https://cloud.tencent.com/document/product/270) | 2024-03-20 01:33:14 |