tencentcloud-sdk-nodejs-redis 4.0.1012 → 4.0.1030

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-redis",
3
- "version": "4.0.1012",
3
+ "version": "4.0.1030",
4
4
  "description": "Tencent Cloud API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
@@ -1816,7 +1816,6 @@ export interface ModifyBackupDownloadRestrictionRequest {
1816
1816
  export interface DisableReplicaReadonlyResponse {
1817
1817
  /**
1818
1818
  * 任务ID
1819
- 注意:此字段可能返回 null,表示取不到有效值。
1820
1819
  */
1821
1820
  TaskId?: number
1822
1821
  /**
@@ -1869,42 +1868,34 @@ export interface InstanceTagInfo {
1869
1868
  export interface DescribeInstanceDTSInfoResponse {
1870
1869
  /**
1871
1870
  * DTS任务ID
1872
- 注意:此字段可能返回 null,表示取不到有效值。
1873
1871
  */
1874
1872
  JobId?: string
1875
1873
  /**
1876
1874
  * DTS任务名称
1877
- 注意:此字段可能返回 null,表示取不到有效值。
1878
1875
  */
1879
1876
  JobName?: string
1880
1877
  /**
1881
1878
  * 任务状态,取值为:1-创建中(Creating),3-校验中(Checking)4-校验通过(CheckPass),5-校验不通过(CheckNotPass),7-任务运行(Running),8-准备完成(ReadyComplete),9-任务成功(Success),10-任务失败(Failed),11-撤销中(Stopping),12-完成中(Completing)
1882
- 注意:此字段可能返回 null,表示取不到有效值。
1883
1879
  */
1884
1880
  Status?: number
1885
1881
  /**
1886
1882
  * 状态描述
1887
- 注意:此字段可能返回 null,表示取不到有效值。
1888
1883
  */
1889
1884
  StatusDesc?: string
1890
1885
  /**
1891
1886
  * 同步时延,单位:字节
1892
- 注意:此字段可能返回 null,表示取不到有效值。
1893
1887
  */
1894
1888
  Offset?: number
1895
1889
  /**
1896
1890
  * 断开时间
1897
- 注意:此字段可能返回 null,表示取不到有效值。
1898
1891
  */
1899
1892
  CutDownTime?: string
1900
1893
  /**
1901
1894
  * 源实例信息
1902
- 注意:此字段可能返回 null,表示取不到有效值。
1903
1895
  */
1904
1896
  SrcInfo?: DescribeInstanceDTSInstanceInfo
1905
1897
  /**
1906
1898
  * 目标实例信息
1907
- 注意:此字段可能返回 null,表示取不到有效值。
1908
1899
  */
1909
1900
  DstInfo?: DescribeInstanceDTSInstanceInfo
1910
1901
  /**
@@ -2348,7 +2339,6 @@ export interface DescribeBackupUrlResponse {
2348
2339
  Filenames?: Array<string>
2349
2340
  /**
2350
2341
  * 备份文件信息列表。
2351
- 注意:此字段可能返回 null,表示取不到有效值。
2352
2342
  */
2353
2343
  BackupInfos?: Array<BackupDownloadInfo>
2354
2344
  /**
@@ -2363,7 +2353,6 @@ export interface DescribeBackupUrlResponse {
2363
2353
  export interface InquiryPriceRenewInstanceResponse {
2364
2354
  /**
2365
2355
  * 价格,单位:分。
2366
- 注意:此字段可能返回 null,表示取不到有效值。
2367
2356
  */
2368
2357
  Price?: number
2369
2358
  /**
@@ -2446,7 +2435,6 @@ export type DescribeProductInfoRequest = null
2446
2435
  export interface InquiryPriceCreateInstanceResponse {
2447
2436
  /**
2448
2437
  * 价格,单位:分
2449
- 注意:此字段可能返回 null,表示取不到有效值。
2450
2438
  */
2451
2439
  Price?: number
2452
2440
  /**
@@ -3883,12 +3871,10 @@ export interface RemoveReplicationInstanceRequest {
3883
3871
  export interface EnableReplicaReadonlyResponse {
3884
3872
  /**
3885
3873
  * 错误:ERROR,正确OK(已废弃)
3886
- 注意:此字段可能返回 null,表示取不到有效值。
3887
3874
  */
3888
3875
  Status?: string
3889
3876
  /**
3890
3877
  * 任务ID
3891
- 注意:此字段可能返回 null,表示取不到有效值。
3892
3878
  */
3893
3879
  TaskId?: number
3894
3880
  /**
@@ -5965,12 +5951,10 @@ export interface ModifyInstanceReadOnlyRequest {
5965
5951
  export interface DescribeInstanceAccountResponse {
5966
5952
  /**
5967
5953
  * 账号详细信息。
5968
- 注意:此字段可能返回 null,表示取不到有效值。
5969
5954
  */
5970
5955
  Accounts?: Array<Account>
5971
5956
  /**
5972
5957
  * 账号个数。
5973
- 注意:此字段可能返回 null,表示取不到有效值。
5974
5958
  */
5975
5959
  TotalCount?: number
5976
5960
  /**
@@ -6323,7 +6307,6 @@ export interface SecurityGroupDetail {
6323
6307
  export interface InquiryPriceUpgradeInstanceResponse {
6324
6308
  /**
6325
6309
  * 价格,单位:分
6326
- 注意:此字段可能返回 null,表示取不到有效值。
6327
6310
  */
6328
6311
  Price?: number
6329
6312
  /**
@@ -6560,7 +6543,6 @@ export interface DescribeInstanceNodeInfoResponse {
6560
6543
  ProxyCount?: number
6561
6544
  /**
6562
6545
  * Proxy节点信息。
6563
- 注意:此字段可能返回 null,表示取不到有效值。
6564
6546
  */
6565
6547
  Proxy?: Array<ProxyNodes>
6566
6548
  /**
@@ -6569,7 +6551,6 @@ export interface DescribeInstanceNodeInfoResponse {
6569
6551
  RedisCount?: number
6570
6552
  /**
6571
6553
  * Redis节点信息。
6572
- 注意:此字段可能返回 null,表示取不到有效值。
6573
6554
  */
6574
6555
  Redis?: Array<RedisNodes>
6575
6556
  /**
@@ -6578,7 +6559,6 @@ export interface DescribeInstanceNodeInfoResponse {
6578
6559
  TendisCount?: number
6579
6560
  /**
6580
6561
  * 该参数不再使用,请忽略。
6581
- 注意:此字段可能返回 null,表示取不到有效值。
6582
6562
  */
6583
6563
  Tendis?: Array<TendisNodes>
6584
6564
  /**
@@ -1731,7 +1731,6 @@ export interface ModifyBackupDownloadRestrictionRequest {
1731
1731
  export interface DisableReplicaReadonlyResponse {
1732
1732
  /**
1733
1733
  * 任务ID
1734
- 注意:此字段可能返回 null,表示取不到有效值。
1735
1734
  */
1736
1735
  TaskId?: number;
1737
1736
  /**
@@ -1780,42 +1779,34 @@ export interface InstanceTagInfo {
1780
1779
  export interface DescribeInstanceDTSInfoResponse {
1781
1780
  /**
1782
1781
  * DTS任务ID
1783
- 注意:此字段可能返回 null,表示取不到有效值。
1784
1782
  */
1785
1783
  JobId?: string;
1786
1784
  /**
1787
1785
  * DTS任务名称
1788
- 注意:此字段可能返回 null,表示取不到有效值。
1789
1786
  */
1790
1787
  JobName?: string;
1791
1788
  /**
1792
1789
  * 任务状态,取值为:1-创建中(Creating),3-校验中(Checking)4-校验通过(CheckPass),5-校验不通过(CheckNotPass),7-任务运行(Running),8-准备完成(ReadyComplete),9-任务成功(Success),10-任务失败(Failed),11-撤销中(Stopping),12-完成中(Completing)
1793
- 注意:此字段可能返回 null,表示取不到有效值。
1794
1790
  */
1795
1791
  Status?: number;
1796
1792
  /**
1797
1793
  * 状态描述
1798
- 注意:此字段可能返回 null,表示取不到有效值。
1799
1794
  */
1800
1795
  StatusDesc?: string;
1801
1796
  /**
1802
1797
  * 同步时延,单位:字节
1803
- 注意:此字段可能返回 null,表示取不到有效值。
1804
1798
  */
1805
1799
  Offset?: number;
1806
1800
  /**
1807
1801
  * 断开时间
1808
- 注意:此字段可能返回 null,表示取不到有效值。
1809
1802
  */
1810
1803
  CutDownTime?: string;
1811
1804
  /**
1812
1805
  * 源实例信息
1813
- 注意:此字段可能返回 null,表示取不到有效值。
1814
1806
  */
1815
1807
  SrcInfo?: DescribeInstanceDTSInstanceInfo;
1816
1808
  /**
1817
1809
  * 目标实例信息
1818
- 注意:此字段可能返回 null,表示取不到有效值。
1819
1810
  */
1820
1811
  DstInfo?: DescribeInstanceDTSInstanceInfo;
1821
1812
  /**
@@ -2239,7 +2230,6 @@ export interface DescribeBackupUrlResponse {
2239
2230
  Filenames?: Array<string>;
2240
2231
  /**
2241
2232
  * 备份文件信息列表。
2242
- 注意:此字段可能返回 null,表示取不到有效值。
2243
2233
  */
2244
2234
  BackupInfos?: Array<BackupDownloadInfo>;
2245
2235
  /**
@@ -2253,7 +2243,6 @@ export interface DescribeBackupUrlResponse {
2253
2243
  export interface InquiryPriceRenewInstanceResponse {
2254
2244
  /**
2255
2245
  * 价格,单位:分。
2256
- 注意:此字段可能返回 null,表示取不到有效值。
2257
2246
  */
2258
2247
  Price?: number;
2259
2248
  /**
@@ -2332,7 +2321,6 @@ export declare type DescribeProductInfoRequest = null;
2332
2321
  export interface InquiryPriceCreateInstanceResponse {
2333
2322
  /**
2334
2323
  * 价格,单位:分
2335
- 注意:此字段可能返回 null,表示取不到有效值。
2336
2324
  */
2337
2325
  Price?: number;
2338
2326
  /**
@@ -3708,12 +3696,10 @@ export interface RemoveReplicationInstanceRequest {
3708
3696
  export interface EnableReplicaReadonlyResponse {
3709
3697
  /**
3710
3698
  * 错误:ERROR,正确OK(已废弃)
3711
- 注意:此字段可能返回 null,表示取不到有效值。
3712
3699
  */
3713
3700
  Status?: string;
3714
3701
  /**
3715
3702
  * 任务ID
3716
- 注意:此字段可能返回 null,表示取不到有效值。
3717
3703
  */
3718
3704
  TaskId?: number;
3719
3705
  /**
@@ -5712,12 +5698,10 @@ export interface ModifyInstanceReadOnlyRequest {
5712
5698
  export interface DescribeInstanceAccountResponse {
5713
5699
  /**
5714
5700
  * 账号详细信息。
5715
- 注意:此字段可能返回 null,表示取不到有效值。
5716
5701
  */
5717
5702
  Accounts?: Array<Account>;
5718
5703
  /**
5719
5704
  * 账号个数。
5720
- 注意:此字段可能返回 null,表示取不到有效值。
5721
5705
  */
5722
5706
  TotalCount?: number;
5723
5707
  /**
@@ -6052,7 +6036,6 @@ export interface SecurityGroupDetail {
6052
6036
  export interface InquiryPriceUpgradeInstanceResponse {
6053
6037
  /**
6054
6038
  * 价格,单位:分
6055
- 注意:此字段可能返回 null,表示取不到有效值。
6056
6039
  */
6057
6040
  Price?: number;
6058
6041
  /**
@@ -6278,7 +6261,6 @@ export interface DescribeInstanceNodeInfoResponse {
6278
6261
  ProxyCount?: number;
6279
6262
  /**
6280
6263
  * Proxy节点信息。
6281
- 注意:此字段可能返回 null,表示取不到有效值。
6282
6264
  */
6283
6265
  Proxy?: Array<ProxyNodes>;
6284
6266
  /**
@@ -6287,7 +6269,6 @@ export interface DescribeInstanceNodeInfoResponse {
6287
6269
  RedisCount?: number;
6288
6270
  /**
6289
6271
  * Redis节点信息。
6290
- 注意:此字段可能返回 null,表示取不到有效值。
6291
6272
  */
6292
6273
  Redis?: Array<RedisNodes>;
6293
6274
  /**
@@ -6296,7 +6277,6 @@ export interface DescribeInstanceNodeInfoResponse {
6296
6277
  TendisCount?: number;
6297
6278
  /**
6298
6279
  * 该参数不再使用,请忽略。
6299
- 注意:此字段可能返回 null,表示取不到有效值。
6300
6280
  */
6301
6281
  Tendis?: Array<TendisNodes>;
6302
6282
  /**
package/products.md DELETED
@@ -1,263 +0,0 @@
1
- | 包名 | 产品中文名 | 更新时间 |
2
- |-|-|-|
3
- | aa | [活动防刷](https://cloud.tencent.com/document/product/1189) | 2023-05-18 01:01:13 |
4
- | aai | [](https://cloud.tencent.com/document/product) | 2019-08-08 23:15:13 |
5
- | aca | [AI 临床助手](https://cloud.tencent.com/document/product/1388) | 2025-01-09 01:08:36 |
6
- | acp | [应用合规平台](https://cloud.tencent.com/document/product/1553) | 2024-11-01 01:03:06 |
7
- | advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2024-10-15 01:02:26 |
8
- | af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2024-11-22 11:20:38 |
9
- | afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2024-05-31 01:07:25 |
10
- | aiart | [大模型图像创作引擎](https://cloud.tencent.com/document/product/1668) | 2025-01-14 01:07:17 |
11
- | ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-08-17 01:06:14 |
12
- | ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2025-01-08 01:09:45 |
13
- | anicloud | [动效素材服务](https://cloud.tencent.com/document/product/1641) | 2023-05-18 01:01:53 |
14
- | antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/297) | 2024-08-22 01:03:05 |
15
- | apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
16
- | ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
17
- | api | [云 API](https://cloud.tencent.com/document/product/1278) | 2023-01-05 01:02:52 |
18
- | apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2025-01-13 01:07:53 |
19
- | apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2025-01-01 01:09:07 |
20
- | as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2025-01-09 01:09:15 |
21
- | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2024-11-21 01:05:01 |
22
- | asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2023-05-18 01:04:02 |
23
- | ba | [ICP备案](https://cloud.tencent.com/document/product/243) | 2024-12-19 01:10:53 |
24
- | batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2025-01-10 01:08:10 |
25
- | bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2024-11-14 01:10:31 |
26
- | bh | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2025-01-09 01:09:37 |
27
- | bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2024-12-20 01:07:23 |
28
- | billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2025-01-08 01:10:54 |
29
- | bizlive | [商业直播](https://cloud.tencent.com/document/product) | 2020-03-10 01:08:07 |
30
- | bm | [黑石物理服务器CPM](https://cloud.tencent.com/document/product/386) | 2024-03-20 01:08:40 |
31
- | bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2024-10-18 01:04:14 |
32
- | bmeip | [黑石弹性公网IP](https://cloud.tencent.com/document/product/1028) | 2024-03-20 01:08:53 |
33
- | bmlb | [黑石负载均衡](https://cloud.tencent.com/document/product/1027) | 2024-03-20 01:08:56 |
34
- | bmvpc | [黑石私有网络](https://cloud.tencent.com/document/product/1024) | 2024-03-20 01:09:02 |
35
- | bpaas | [商业流程服务](https://cloud.tencent.com/document/product/1083) | 2024-11-29 01:10:03 |
36
- | bri | [业务风险情报](https://cloud.tencent.com/document/product/1064) | 2024-06-19 01:13:52 |
37
- | bsca | [软件成分分析](https://cloud.tencent.com/document/product/1483) | 2024-11-27 01:09:19 |
38
- | btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2024-11-06 15:27:32 |
39
- | ca | [腾讯云CA](https://cloud.tencent.com/document/product/1691) | 2024-11-05 01:13:21 |
40
- | cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2025-01-08 01:11:16 |
41
- | captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2024-10-23 01:09:56 |
42
- | car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2024-12-27 10:53:11 |
43
- | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2024-11-15 01:13:36 |
44
- | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2025-01-10 01:09:12 |
45
- | ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2025-01-08 01:11:38 |
46
- | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2025-01-10 01:09:26 |
47
- | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-11-15 01:15:46 |
48
- | cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2025-01-14 01:09:45 |
49
- | cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2024-11-08 01:17:02 |
50
- | cdwch | [腾讯云数据仓库TCHouse-C](https://cloud.tencent.com/document/product/1299) | 2024-12-24 01:16:40 |
51
- | cdwdoris | [腾讯云数据仓库 TCHouse-D](https://cloud.tencent.com/document/product/1387) | 2025-01-03 01:11:39 |
52
- | cdwpg | [云数据仓库 PostgreSQL](https://cloud.tencent.com/document/product/878) | 2024-03-28 01:10:53 |
53
- | cdz | [专属可用区](https://cloud.tencent.com/document/product/1629) | 2024-11-14 01:17:55 |
54
- | cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2024-12-27 10:54:56 |
55
- | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2025-01-09 01:11:42 |
56
- | cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2025-01-13 01:10:41 |
57
- | chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2024-12-27 10:55:07 |
58
- | ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2024-10-28 01:19:38 |
59
- | cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2023-05-18 01:12:07 |
60
- | cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
61
- | cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
62
- | ckafka | [消息队列 CKafka 版](https://cloud.tencent.com/document/product/597) | 2025-01-01 01:12:29 |
63
- | clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2025-01-09 01:12:23 |
64
- | cloudapp | [云应用](https://cloud.tencent.com/document/product/1689) | 2025-01-09 01:12:37 |
65
- | cloudaudit | [操作审计](https://cloud.tencent.com/document/product/629) | 2024-12-25 01:20:38 |
66
- | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2024-11-28 10:52:49 |
67
- | cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2024-12-27 10:55:16 |
68
- | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2025-01-09 01:12:45 |
69
- | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2024-09-25 01:13:30 |
70
- | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2025-01-10 01:11:48 |
71
- | cms | [内容安全](https://cloud.tencent.com/document/product/669) | 2024-06-20 01:24:47 |
72
- | config | [配置审计](https://cloud.tencent.com/document/product/1579) | 2025-01-10 01:11:51 |
73
- | controlcenter | [控制中心](https://cloud.tencent.com/document/product/1708) | 2024-10-24 01:13:25 |
74
- | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2023-09-21 02:09:54 |
75
- | csip | [云安全一体化平台](https://cloud.tencent.com/document/product/664) | 2025-01-10 01:11:55 |
76
- | csxg | [5G入云服务](https://cloud.tencent.com/document/product/1687) | 2024-03-20 01:12:25 |
77
- | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2025-01-10 01:12:17 |
78
- | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2025-01-01 01:14:11 |
79
- | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
80
- | cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2025-01-09 01:14:38 |
81
- | dasb | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2024-11-19 01:26:13 |
82
- | dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
83
- | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2023-05-18 01:20:11 |
84
- | dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2025-01-08 01:15:59 |
85
- | dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2025-01-07 01:15:00 |
86
- | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2025-01-14 01:13:44 |
87
- | dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2025-01-07 01:15:05 |
88
- | dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-12-25 01:28:37 |
89
- | dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-12-31 01:16:41 |
90
- | domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-12-25 01:30:08 |
91
- | drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2025-01-09 01:16:10 |
92
- | ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2024-03-20 01:15:13 |
93
- | dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2024-12-20 16:58:37 |
94
- | dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
95
- | dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2025-01-09 01:16:34 |
96
- | eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2024-12-26 01:31:46 |
97
- | ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2024-09-05 01:32:54 |
98
- | ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2024-10-22 01:18:29 |
99
- | ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2025-01-10 01:15:40 |
100
- | eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2024-06-25 01:14:34 |
101
- | eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
102
- | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2025-01-14 01:15:41 |
103
- | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2025-01-13 01:16:10 |
104
- | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2025-01-13 19:32:51 |
105
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2025-01-14 01:16:24 |
106
- | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2024-12-26 01:36:01 |
107
- | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2024-12-27 11:12:08 |
108
- | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2024-12-25 01:36:47 |
109
- | ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2024-11-21 01:34:23 |
110
- | gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2025-01-09 01:18:35 |
111
- | gme | [游戏多媒体引擎](https://cloud.tencent.com/document/product/607) | 2025-01-09 01:18:49 |
112
- | goosefs | [数据加速器 GooseFS](https://cloud.tencent.com/document/product/1424) | 2024-12-31 01:19:53 |
113
- | gpm | [游戏玩家匹配](https://cloud.tencent.com/document/product/1294) | 2022-07-11 06:12:36 |
114
- | gs | [云游戏](https://cloud.tencent.com/document/product/1162) | 2024-12-27 11:13:19 |
115
- | gse | [游戏服务器伸缩](https://cloud.tencent.com/document/product/1165) | 2022-07-11 06:12:44 |
116
- | gwlb | [网关负载均衡](https://cloud.tencent.com/document/product/1782) | 2025-01-09 01:18:59 |
117
- | habo | [](https://cloud.tencent.com/document/product) | 2019-05-09 19:37:22 |
118
- | hai | [高性能应用服务](https://cloud.tencent.com/document/product/1721) | 2025-01-10 01:17:51 |
119
- | hasim | [高可用物联网卡](https://cloud.tencent.com/document/product/1482) | 2023-05-18 01:29:47 |
120
- | hcm | [数学作业批改](https://cloud.tencent.com/document/product/1004) | 2024-05-09 01:16:27 |
121
- | hunyuan | [腾讯混元大模型](https://cloud.tencent.com/document/product/1729) | 2025-01-14 01:17:15 |
122
- | iai | [人脸识别](https://cloud.tencent.com/document/product/867) | 2024-12-27 11:13:24 |
123
- | iap | [身份识别平台](https://cloud.tencent.com/document/product/1787) | 2024-11-21 18:27:30 |
124
- | ic | [图片瘦身](https://cloud.tencent.com/document/product/636) | 2023-03-02 01:23:21 |
125
- | icr | [对话机器人](https://cloud.tencent.com/document/product/1268) | 2024-04-22 01:17:48 |
126
- | ie | [智能编辑](https://cloud.tencent.com/document/product/1186) | 2023-08-17 03:20:18 |
127
- | iecp | [物联网边缘计算平台](https://cloud.tencent.com/document/product/1118) | 2024-09-25 01:22:07 |
128
- | ig | [智能导诊](https://cloud.tencent.com/document/product/1273) | 2024-11-21 01:36:39 |
129
- | iir | [智能识图](https://cloud.tencent.com/document/product/1217) | 2022-04-04 06:48:05 |
130
- | ims | [图片内容安全](https://cloud.tencent.com/document/product/1125) | 2024-12-03 10:53:29 |
131
- | ioa | [iOA 零信任安全管理系统](https://cloud.tencent.com/document/product/1092) | 2024-11-11 01:39:45 |
132
- | iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2023-07-17 01:22:28 |
133
- | iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2024-06-05 01:47:50 |
134
- | iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2025-01-10 01:18:24 |
135
- | iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
136
- | iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2025-01-10 01:19:02 |
137
- | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2025-01-01 01:21:21 |
138
- | irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2024-10-17 01:22:29 |
139
- | iss | [智能视图计算平台](https://cloud.tencent.com/document/product/1344) | 2024-12-24 01:40:55 |
140
- | ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2024-12-16 01:41:44 |
141
- | keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2025-01-09 01:20:47 |
142
- | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2024-11-07 01:44:48 |
143
- | lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2025-01-09 01:20:58 |
144
- | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2025-01-06 01:20:05 |
145
- | live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2025-01-14 01:19:30 |
146
- | lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2025-01-07 01:21:13 |
147
- | lkeap | [知识引擎原子能力](https://cloud.tencent.com/document/product/1772) | 2025-01-10 01:20:52 |
148
- | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
149
- | lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
150
- | mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2024-03-20 01:20:11 |
151
- | mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2024-12-25 01:46:54 |
152
- | market | [云市场](https://cloud.tencent.com/document/product/306) | 2024-11-25 01:21:47 |
153
- | memcached | [云数据库Memcached](https://cloud.tencent.com/document/product/241) | 2024-12-16 01:45:51 |
154
- | mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
155
- | mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2024-11-11 01:49:22 |
156
- | mna | [多网聚合加速](https://cloud.tencent.com/document/product/1385) | 2025-01-13 01:20:34 |
157
- | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2025-01-09 01:22:22 |
158
- | monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2025-01-07 01:22:34 |
159
- | mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2024-12-31 01:24:25 |
160
- | mqtt | [消息队列 MQTT 版](https://cloud.tencent.com/document/product/1778) | 2024-12-19 01:49:38 |
161
- | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2024-12-12 01:48:36 |
162
- | ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2024-11-14 01:54:52 |
163
- | msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2024-12-25 01:51:10 |
164
- | mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
165
- | nlp | [NLP 技术](https://cloud.tencent.com/document/product/271) | 2025-01-14 01:21:36 |
166
- | npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
167
- | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2025-01-09 01:23:28 |
168
- | ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2025-01-14 01:21:45 |
169
- | omics | [腾讯健康组学平台](https://cloud.tencent.com/document/product/1643) | 2024-12-25 01:52:29 |
170
- | organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2024-12-20 01:46:38 |
171
- | partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2024-11-22 12:03:22 |
172
- | pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2023-05-18 01:44:14 |
173
- | postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2025-01-09 01:24:20 |
174
- | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2024-12-24 01:52:16 |
175
- | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2025-01-14 01:22:46 |
176
- | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-12-04 01:27:22 |
177
- | redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2025-01-13 01:23:02 |
178
- | region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2024-12-20 01:49:24 |
179
- | rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2023-12-25 00:16:39 |
180
- | rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
181
- | rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2025-01-14 01:23:14 |
182
- | scf | [云函数](https://cloud.tencent.com/document/product/583) | 2025-01-09 01:25:12 |
183
- | ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2024-10-22 01:28:58 |
184
- | smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2024-12-17 01:50:10 |
185
- | smop | [腾讯安心用户运营平台](https://cloud.tencent.com/document/product/1310) | 2024-10-31 02:02:47 |
186
- | smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2024-07-09 01:21:06 |
187
- | sms | [短信](https://cloud.tencent.com/document/product/382) | 2025-01-10 01:24:22 |
188
- | soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2024-11-13 02:01:41 |
189
- | solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
190
- | sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2025-01-07 01:25:35 |
191
- | ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-11-15 02:18:28 |
192
- | ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2025-01-08 19:43:37 |
193
- | sslpod | [证书监控 SSLPod](https://cloud.tencent.com/document/product/1084) | 2024-03-20 01:24:03 |
194
- | ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2024-11-08 02:01:05 |
195
- | sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2024-12-11 01:57:49 |
196
- | svp | [节省计划](https://cloud.tencent.com/document/product/1761) | 2024-11-27 01:26:33 |
197
- | taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2024-11-04 02:00:37 |
198
- | tag | [标签](https://cloud.tencent.com/document/product/651) | 2024-12-25 01:59:10 |
199
- | tan | [碳引擎](https://cloud.tencent.com/document/product/1498) | 2024-03-20 01:24:15 |
200
- | tat | [自动化助手](https://cloud.tencent.com/document/product/1340) | 2024-12-31 01:28:18 |
201
- | tav | [文件检测](https://cloud.tencent.com/document/product) | 2019-11-28 22:10:04 |
202
- | tbaas | [腾讯云区块链服务平台 TBaaS](https://cloud.tencent.com/document/product/663) | 2025-01-14 01:24:30 |
203
- | tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 |
204
- | tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2024-03-20 01:24:24 |
205
- | tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2024-08-05 02:05:20 |
206
- | tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2025-01-13 01:24:44 |
207
- | tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2025-01-08 01:27:40 |
208
- | tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
209
- | tchd | [腾讯云健康看板](https://cloud.tencent.com/document/product/1688) | 2024-11-21 02:00:04 |
210
- | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
211
- | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2025-01-06 01:25:44 |
212
- | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2025-01-10 01:25:47 |
213
- | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-11-04 02:03:35 |
214
- | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2024-07-10 01:25:35 |
215
- | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-12-19 02:00:31 |
216
- | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2025-01-08 01:28:13 |
217
- | tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2024-11-14 02:08:25 |
218
- | tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2024-12-31 01:29:59 |
219
- | teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2025-01-14 01:25:49 |
220
- | thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2025-01-01 01:30:04 |
221
- | tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
222
- | tic | [资源编排 TIC](https://cloud.tencent.com/document/product/1213) | 2023-08-17 05:26:08 |
223
- | ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 |
224
- | tics | [威胁情报云查服务](https://cloud.tencent.com/document/product/1013) | 2024-03-20 01:27:08 |
225
- | tiems | [腾讯云 TI 平台 TI-EMS ](https://cloud.tencent.com/document/product/1120) | 2022-07-19 06:19:39 |
226
- | tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2024-12-23 11:03:45 |
227
- | tione | [TI-ONE 训练平台](https://cloud.tencent.com/document/product/851) | 2025-01-09 01:28:15 |
228
- | tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2024-03-20 01:27:28 |
229
- | tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2025-01-13 01:27:05 |
230
- | tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
231
- | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2024-10-30 02:12:39 |
232
- | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2024-12-05 01:26:59 |
233
- | tourism | [文旅客情大数据](https://cloud.tencent.com/document/product/1684) | 2024-03-20 01:28:59 |
234
- | trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2023-05-18 02:01:19 |
235
- | trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2025-01-06 01:28:18 |
236
- | trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2024-11-08 02:10:59 |
237
- | trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2025-01-13 01:27:26 |
238
- | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2025-01-10 01:28:13 |
239
- | tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2025-01-10 01:28:23 |
240
- | tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-12-30 02:06:44 |
241
- | tsi | [腾讯同传系统](https://cloud.tencent.com/document/product/1399) | 2024-10-23 01:36:51 |
242
- | tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2024-03-20 01:30:06 |
243
- | tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2024-12-27 11:25:13 |
244
- | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2024-03-20 01:30:08 |
245
- | vcg | [视频生成](https://cloud.tencent.com/document/product/1770) | 2024-11-22 12:20:45 |
246
- | vclm | [大模型视频创作引擎](https://cloud.tencent.com/document/product/1616) | 2025-01-06 01:29:32 |
247
- | vcube | [音视频终端引擎](https://cloud.tencent.com/document/product/1449) | 2024-12-05 01:28:35 |
248
- | vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2025-01-08 01:31:23 |
249
- | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-07-26 02:26:34 |
250
- | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
251
- | vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-11-18 02:09:13 |
252
- | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2025-01-14 01:28:58 |
253
- | vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-12-19 02:13:39 |
254
- | vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-10-16 01:32:39 |
255
- | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2025-01-06 01:30:59 |
256
- | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2024-11-20 02:21:21 |
257
- | wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2025-01-10 01:31:06 |
258
- | weilingwith | [微瓴同业开放平台](https://cloud.tencent.com/document/product/1693) | 2024-11-07 02:23:06 |
259
- | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
260
- | yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2024-06-05 02:38:46 |
261
- | youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
262
- | yunjing | [主机安全](https://cloud.tencent.com/document/product) | 2020-09-15 08:08:47 |
263
- | yunsou | [腾讯云搜TCS](https://cloud.tencent.com/document/product/270) | 2024-03-20 01:33:14 |