tencentcloud-sdk-nodejs-ssl 4.0.1019 → 4.0.1027
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 +40 -11
- package/package.json +1 -1
- package/src/services/ssl/v20191205/ssl_client.ts +49 -25
- package/src/services/ssl/v20191205/ssl_models.ts +230 -22
- package/tencentcloud/services/ssl/v20191205/ssl_client.d.ts +17 -9
- package/tencentcloud/services/ssl/v20191205/ssl_client.js +24 -12
- package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +226 -22
- package/products.md +0 -264
package/README.md
CHANGED
|
@@ -13,21 +13,50 @@
|
|
|
13
13
|
|
|
14
14
|
安装 NODEJS SDK 前,先获取安全凭证。在第一次使用云 API 之前,用户首先需要在腾讯云控制台上申请安全凭证,安全凭证包括 SecretID 和 SecretKey, SecretID 是用于标识 API 调用者的身份,SecretKey 是用于加密签名字符串和服务器端验证签名字符串的密钥。SecretKey 必须严格保管,避免泄露。
|
|
15
15
|
|
|
16
|
-
## 通过
|
|
16
|
+
## 通过 NPM 安装
|
|
17
17
|
|
|
18
|
-
通过
|
|
18
|
+
通过 NPM 获取安装是使用 NODEJS SDK 的推荐方法,NPM 是 NODEJS 的包管理工具。关于 NPM 详细可参考 [NPM 官网](https://www.npmjs.com/) 。
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
20
|
+
### 安装指定产品 SDK(推荐)
|
|
21
|
+
|
|
22
|
+
安装 CVM SDK:
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
npm install tencentcloud-sdk-nodejs-cvm --save
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
安装 VPC SDK:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
npm install tencentcloud-sdk-nodejs-vpc --save
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
具体产品的缩写表请参考 [products.md](./products.md) 中的包名字段。
|
|
35
|
+
|
|
36
|
+
安装指定产品 SDK 后,注意修改引入的包名:
|
|
37
|
+
|
|
38
|
+
```diff
|
|
39
|
+
- const tencentcloud = require("tencentcloud-sdk-nodejs")
|
|
40
|
+
+ const { cvm } = require("tencentcloud-sdk-nodejs-cvm")
|
|
41
|
+
|
|
42
|
+
- const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
43
|
+
+ const CvmClient = cvm.v20170312.Client
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### 安装全产品 SDK
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
npm install tencentcloud-sdk-nodejs --save
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
全产品 SDK 包含了所有云产品的调用代码,体积偏大,对体积敏感的场景,推荐安装指定产品 SDK。
|
|
24
53
|
|
|
25
54
|
## 通过源码包安装
|
|
26
55
|
|
|
27
|
-
1. 前往 [
|
|
56
|
+
1. 前往 [GitHub 仓库](https://github.com/tencentcloud/tencentcloud-sdk-nodejs) 或者 [Gitee 仓库](https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs) 下载源码压缩包。
|
|
28
57
|
2. 解压源码包到您项目合适的位置,例如 `sdk/tencentcloud-sdk-nodejs`。
|
|
29
58
|
3. 执行 `npm install ./sdk/tencentcloud-sdk-nodejs`。
|
|
30
|
-
4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入
|
|
59
|
+
4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入SDK,具体可参考示例。
|
|
31
60
|
|
|
32
61
|
# 示例
|
|
33
62
|
|
|
@@ -120,14 +149,14 @@ new XxxClient({
|
|
|
120
149
|
|
|
121
150
|
# 旧版 SDK
|
|
122
151
|
|
|
123
|
-
我们推荐使用新版 NODEJS SDK,如果一定要用旧版 SDK,请前往[
|
|
152
|
+
我们推荐使用新版 NODEJS SDK,如果一定要用旧版 SDK,请前往[GitHub 仓库](https://github.com/CFETeam/qcloudapi-sdk)下载。
|
|
124
153
|
|
|
125
154
|
# 常见问题
|
|
126
155
|
- webpack打包出错/浏览器报错
|
|
127
156
|
|
|
128
|
-
请**务必不要**将此
|
|
157
|
+
请**务必不要**将此SDK直接用于web前端(包括小程序等),暴露密钥在这些环境非常不安全。
|
|
129
158
|
|
|
130
|
-
正确的做法是在自己的服务端引用此
|
|
159
|
+
正确的做法是在自己的服务端引用此SDK,并保存好密钥,做好请求鉴权;前端再调用服务端执行业务流程。
|
|
131
160
|
|
|
132
161
|
- `The "original" argument must be of type Function.`
|
|
133
162
|
|
package/package.json
CHANGED
|
@@ -89,6 +89,7 @@ import {
|
|
|
89
89
|
ResourceTypeRegions,
|
|
90
90
|
DeleteManagerRequest,
|
|
91
91
|
DescribeHostUpdateRecordResponse,
|
|
92
|
+
CertificateOrderSubmitRequest,
|
|
92
93
|
UpdateCertificateRecordRollbackResponse,
|
|
93
94
|
DescribeHostVodInstanceListRequest,
|
|
94
95
|
DescribeCertificateBindResourceTaskDetailResponse,
|
|
@@ -140,6 +141,7 @@ import {
|
|
|
140
141
|
RevokeCertificateResponse,
|
|
141
142
|
DeployedResources,
|
|
142
143
|
ModifyCertificateProjectRequest,
|
|
144
|
+
DescribePackagesRequest,
|
|
143
145
|
DeleteCertificatesRequest,
|
|
144
146
|
DescribeHostVodInstanceListResponse,
|
|
145
147
|
WafInstanceList,
|
|
@@ -172,6 +174,7 @@ import {
|
|
|
172
174
|
DescribeCertificateOperateLogsResponse,
|
|
173
175
|
DescribeHostLighthouseInstanceListRequest,
|
|
174
176
|
DescribeHostCdnInstanceListRequest,
|
|
177
|
+
CertificateInfoSubmitResponse,
|
|
175
178
|
DescribeHostTeoInstanceListResponse,
|
|
176
179
|
DescribeHostWafInstanceListRequest,
|
|
177
180
|
UploadRevokeLetterResponse,
|
|
@@ -197,9 +200,10 @@ import {
|
|
|
197
200
|
UploadConfirmLetterRequest,
|
|
198
201
|
SubmitCertificateInformationResponse,
|
|
199
202
|
TCBEnvironments,
|
|
203
|
+
CertificateInfoSubmitRequest,
|
|
200
204
|
ClbInstanceList,
|
|
201
205
|
UpdateCertificateRecordRetryResponse,
|
|
202
|
-
|
|
206
|
+
CertificateOrderSubmitResponse,
|
|
203
207
|
TCBHostService,
|
|
204
208
|
CheckCertificateChainRequest,
|
|
205
209
|
CheckCertificateExistRequest,
|
|
@@ -255,13 +259,13 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
255
259
|
}
|
|
256
260
|
|
|
257
261
|
/**
|
|
258
|
-
*
|
|
262
|
+
* 取消证书审核
|
|
259
263
|
*/
|
|
260
|
-
async
|
|
261
|
-
req:
|
|
262
|
-
cb?: (error: string, rep:
|
|
263
|
-
): Promise<
|
|
264
|
-
return this.request("
|
|
264
|
+
async CancelAuditCertificate(
|
|
265
|
+
req: CancelAuditCertificateRequest,
|
|
266
|
+
cb?: (error: string, rep: CancelAuditCertificateResponse) => void
|
|
267
|
+
): Promise<CancelAuditCertificateResponse> {
|
|
268
|
+
return this.request("CancelAuditCertificate", req, cb)
|
|
265
269
|
}
|
|
266
270
|
|
|
267
271
|
/**
|
|
@@ -304,6 +308,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
304
308
|
return this.request("DeleteManager", req, cb)
|
|
305
309
|
}
|
|
306
310
|
|
|
311
|
+
/**
|
|
312
|
+
* 付费提交证书资料
|
|
313
|
+
*/
|
|
314
|
+
async CertificateInfoSubmit(
|
|
315
|
+
req: CertificateInfoSubmitRequest,
|
|
316
|
+
cb?: (error: string, rep: CertificateInfoSubmitResponse) => void
|
|
317
|
+
): Promise<CertificateInfoSubmitResponse> {
|
|
318
|
+
return this.request("CertificateInfoSubmit", req, cb)
|
|
319
|
+
}
|
|
320
|
+
|
|
307
321
|
/**
|
|
308
322
|
* 获取下载证书链接
|
|
309
323
|
*/
|
|
@@ -431,6 +445,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
431
445
|
return this.request("CancelCertificateOrder", req, cb)
|
|
432
446
|
}
|
|
433
447
|
|
|
448
|
+
/**
|
|
449
|
+
* 提交付费证书订单
|
|
450
|
+
*/
|
|
451
|
+
async CertificateOrderSubmit(
|
|
452
|
+
req: CertificateOrderSubmitRequest,
|
|
453
|
+
cb?: (error: string, rep: CertificateOrderSubmitResponse) => void
|
|
454
|
+
): Promise<CertificateOrderSubmitResponse> {
|
|
455
|
+
return this.request("CertificateOrderSubmit", req, cb)
|
|
456
|
+
}
|
|
457
|
+
|
|
434
458
|
/**
|
|
435
459
|
* 本接口(DownloadCertificate)用于下载证书。
|
|
436
460
|
*/
|
|
@@ -612,13 +636,13 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
612
636
|
}
|
|
613
637
|
|
|
614
638
|
/**
|
|
615
|
-
*
|
|
639
|
+
* 检查证书域名验证
|
|
616
640
|
*/
|
|
617
|
-
async
|
|
618
|
-
req:
|
|
619
|
-
cb?: (error: string, rep:
|
|
620
|
-
): Promise<
|
|
621
|
-
return this.request("
|
|
641
|
+
async CheckCertificateDomainVerification(
|
|
642
|
+
req: CheckCertificateDomainVerificationRequest,
|
|
643
|
+
cb?: (error: string, rep: CheckCertificateDomainVerificationResponse) => void
|
|
644
|
+
): Promise<CheckCertificateDomainVerificationResponse> {
|
|
645
|
+
return this.request("CheckCertificateDomainVerification", req, cb)
|
|
622
646
|
}
|
|
623
647
|
|
|
624
648
|
/**
|
|
@@ -682,13 +706,13 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
682
706
|
}
|
|
683
707
|
|
|
684
708
|
/**
|
|
685
|
-
*
|
|
709
|
+
* 本接口(CreateCertificate)用于创建付费证书。
|
|
686
710
|
*/
|
|
687
|
-
async
|
|
688
|
-
req:
|
|
689
|
-
cb?: (error: string, rep:
|
|
690
|
-
): Promise<
|
|
691
|
-
return this.request("
|
|
711
|
+
async CreateCertificate(
|
|
712
|
+
req: CreateCertificateRequest,
|
|
713
|
+
cb?: (error: string, rep: CreateCertificateResponse) => void
|
|
714
|
+
): Promise<CreateCertificateResponse> {
|
|
715
|
+
return this.request("CreateCertificate", req, cb)
|
|
692
716
|
}
|
|
693
717
|
|
|
694
718
|
/**
|
|
@@ -752,13 +776,13 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
752
776
|
}
|
|
753
777
|
|
|
754
778
|
/**
|
|
755
|
-
*
|
|
779
|
+
* 使用权益点创建证书
|
|
756
780
|
*/
|
|
757
|
-
async
|
|
758
|
-
req:
|
|
759
|
-
cb?: (error: string, rep:
|
|
760
|
-
): Promise<
|
|
761
|
-
return this.request("
|
|
781
|
+
async CreateCertificateByPackage(
|
|
782
|
+
req: CreateCertificateByPackageRequest,
|
|
783
|
+
cb?: (error: string, rep: CreateCertificateByPackageResponse) => void
|
|
784
|
+
): Promise<CreateCertificateByPackageResponse> {
|
|
785
|
+
return this.request("CreateCertificateByPackage", req, cb)
|
|
762
786
|
}
|
|
763
787
|
|
|
764
788
|
/**
|
|
@@ -2392,6 +2392,24 @@ export interface DescribeHostUpdateRecordResponse {
|
|
|
2392
2392
|
RequestId?: string
|
|
2393
2393
|
}
|
|
2394
2394
|
|
|
2395
|
+
/**
|
|
2396
|
+
* CertificateOrderSubmit请求参数结构体
|
|
2397
|
+
*/
|
|
2398
|
+
export interface CertificateOrderSubmitRequest {
|
|
2399
|
+
/**
|
|
2400
|
+
* 证书 ID。
|
|
2401
|
+
*/
|
|
2402
|
+
CertId: string
|
|
2403
|
+
/**
|
|
2404
|
+
* 是否删除自动DNS验证值:0,不删除; 1,删除; 默认不删除
|
|
2405
|
+
*/
|
|
2406
|
+
DeleteDnsAutoRecord?: number
|
|
2407
|
+
/**
|
|
2408
|
+
* 域名验证方式:DNS_AUTO 自动DNS验证, DNS DNS验证, FILE 文件验证
|
|
2409
|
+
*/
|
|
2410
|
+
VerifyType?: string
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2395
2413
|
/**
|
|
2396
2414
|
* UpdateCertificateRecordRollback返回参数结构体
|
|
2397
2415
|
*/
|
|
@@ -3708,6 +3726,40 @@ export interface ModifyCertificateProjectRequest {
|
|
|
3708
3726
|
ProjectId: number
|
|
3709
3727
|
}
|
|
3710
3728
|
|
|
3729
|
+
/**
|
|
3730
|
+
* DescribePackages请求参数结构体
|
|
3731
|
+
*/
|
|
3732
|
+
export interface DescribePackagesRequest {
|
|
3733
|
+
/**
|
|
3734
|
+
* 偏移量,默认0。
|
|
3735
|
+
*/
|
|
3736
|
+
Offset?: number
|
|
3737
|
+
/**
|
|
3738
|
+
* 限制数目,默认20。
|
|
3739
|
+
*/
|
|
3740
|
+
Limit?: number
|
|
3741
|
+
/**
|
|
3742
|
+
* 按状态筛选。
|
|
3743
|
+
*/
|
|
3744
|
+
Status?: string
|
|
3745
|
+
/**
|
|
3746
|
+
* 按过期时间升序或降序排列。
|
|
3747
|
+
*/
|
|
3748
|
+
ExpireTime?: string
|
|
3749
|
+
/**
|
|
3750
|
+
* 按权益包ID搜索。
|
|
3751
|
+
*/
|
|
3752
|
+
PackageId?: string
|
|
3753
|
+
/**
|
|
3754
|
+
* 按权益包类型搜索。
|
|
3755
|
+
*/
|
|
3756
|
+
Type?: string
|
|
3757
|
+
/**
|
|
3758
|
+
* 子产品编号
|
|
3759
|
+
*/
|
|
3760
|
+
Pid?: number
|
|
3761
|
+
}
|
|
3762
|
+
|
|
3711
3763
|
/**
|
|
3712
3764
|
* DeleteCertificates请求参数结构体
|
|
3713
3765
|
*/
|
|
@@ -4538,6 +4590,16 @@ export interface DescribeHostCdnInstanceListRequest {
|
|
|
4538
4590
|
AsyncCache?: number
|
|
4539
4591
|
}
|
|
4540
4592
|
|
|
4593
|
+
/**
|
|
4594
|
+
* CertificateInfoSubmit返回参数结构体
|
|
4595
|
+
*/
|
|
4596
|
+
export interface CertificateInfoSubmitResponse {
|
|
4597
|
+
/**
|
|
4598
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4599
|
+
*/
|
|
4600
|
+
RequestId?: string
|
|
4601
|
+
}
|
|
4602
|
+
|
|
4541
4603
|
/**
|
|
4542
4604
|
* DescribeHostTeoInstanceList返回参数结构体
|
|
4543
4605
|
*/
|
|
@@ -5310,6 +5372,164 @@ export interface TCBEnvironments {
|
|
|
5310
5372
|
HostService?: TCBHostService
|
|
5311
5373
|
}
|
|
5312
5374
|
|
|
5375
|
+
/**
|
|
5376
|
+
* CertificateInfoSubmit请求参数结构体
|
|
5377
|
+
*/
|
|
5378
|
+
export interface CertificateInfoSubmitRequest {
|
|
5379
|
+
/**
|
|
5380
|
+
* 证书 ID。
|
|
5381
|
+
*/
|
|
5382
|
+
CertId: string
|
|
5383
|
+
/**
|
|
5384
|
+
* CSR 生成方式:online = 在线生成, upload = 手动上传。
|
|
5385
|
+
*/
|
|
5386
|
+
GenCsrType: string
|
|
5387
|
+
/**
|
|
5388
|
+
* 绑定证书的主域名。
|
|
5389
|
+
*/
|
|
5390
|
+
CertCommonName: string
|
|
5391
|
+
/**
|
|
5392
|
+
* 组织信息类型:1,个人; 2, 公司;
|
|
5393
|
+
*/
|
|
5394
|
+
CompanyType: number
|
|
5395
|
+
/**
|
|
5396
|
+
* 公司证件类型()
|
|
5397
|
+
*/
|
|
5398
|
+
OrgIdType: string
|
|
5399
|
+
/**
|
|
5400
|
+
* 公司证件号码
|
|
5401
|
+
*/
|
|
5402
|
+
OrgIdNumber: string
|
|
5403
|
+
/**
|
|
5404
|
+
* 管理人证件类型
|
|
5405
|
+
*/
|
|
5406
|
+
AdminIdType: string
|
|
5407
|
+
/**
|
|
5408
|
+
* 管理人证件号码
|
|
5409
|
+
*/
|
|
5410
|
+
AdminIdNumber: string
|
|
5411
|
+
/**
|
|
5412
|
+
* 联系人证件类型
|
|
5413
|
+
*/
|
|
5414
|
+
TechIdType: string
|
|
5415
|
+
/**
|
|
5416
|
+
* 联系人证件号码
|
|
5417
|
+
*/
|
|
5418
|
+
TechIdNumber: string
|
|
5419
|
+
/**
|
|
5420
|
+
* 公司ID
|
|
5421
|
+
*/
|
|
5422
|
+
CompanyId: string
|
|
5423
|
+
/**
|
|
5424
|
+
* 上传的 CSR 内容。如果GenCsrType为upload则该字段必传
|
|
5425
|
+
*/
|
|
5426
|
+
Csr?: string
|
|
5427
|
+
/**
|
|
5428
|
+
* 域名数组(多域名证书可以上传)。
|
|
5429
|
+
*/
|
|
5430
|
+
DnsNames?: Array<string>
|
|
5431
|
+
/**
|
|
5432
|
+
* 私钥密码(非必填)。
|
|
5433
|
+
*/
|
|
5434
|
+
KeyPass?: string
|
|
5435
|
+
/**
|
|
5436
|
+
* 公司名称。
|
|
5437
|
+
*/
|
|
5438
|
+
OrgOrganization?: string
|
|
5439
|
+
/**
|
|
5440
|
+
* 部门名称。
|
|
5441
|
+
*/
|
|
5442
|
+
OrgDivision?: string
|
|
5443
|
+
/**
|
|
5444
|
+
* 公司详细地址。
|
|
5445
|
+
*/
|
|
5446
|
+
OrgAddress?: string
|
|
5447
|
+
/**
|
|
5448
|
+
* 国家名称,如中国:CN 。
|
|
5449
|
+
*/
|
|
5450
|
+
OrgCountry?: string
|
|
5451
|
+
/**
|
|
5452
|
+
* 公司所在城市。
|
|
5453
|
+
*/
|
|
5454
|
+
OrgCity?: string
|
|
5455
|
+
/**
|
|
5456
|
+
* 公司所在省份。
|
|
5457
|
+
*/
|
|
5458
|
+
OrgRegion?: string
|
|
5459
|
+
/**
|
|
5460
|
+
* 公司座机区号。
|
|
5461
|
+
*/
|
|
5462
|
+
OrgPhoneArea?: string
|
|
5463
|
+
/**
|
|
5464
|
+
* 公司座机号码。
|
|
5465
|
+
*/
|
|
5466
|
+
OrgPhoneNumber?: string
|
|
5467
|
+
/**
|
|
5468
|
+
* 证书验证方式。验证类型:DNS_AUTO = 自动DNS验证(仅支持在腾讯云解析且解析状态正常的域名使用该验证类型),DNS = 手动DNS验证,FILE = 文件验证。
|
|
5469
|
+
*/
|
|
5470
|
+
VerifyType?: string
|
|
5471
|
+
/**
|
|
5472
|
+
* 管理人名。
|
|
5473
|
+
*/
|
|
5474
|
+
AdminFirstName?: string
|
|
5475
|
+
/**
|
|
5476
|
+
* 管理人姓。
|
|
5477
|
+
*/
|
|
5478
|
+
AdminLastName?: string
|
|
5479
|
+
/**
|
|
5480
|
+
* 管理人手机号码。
|
|
5481
|
+
*/
|
|
5482
|
+
AdminPhone?: string
|
|
5483
|
+
/**
|
|
5484
|
+
* 管理人邮箱地址。
|
|
5485
|
+
*/
|
|
5486
|
+
AdminEmail?: string
|
|
5487
|
+
/**
|
|
5488
|
+
* 管理人职位。
|
|
5489
|
+
*/
|
|
5490
|
+
AdminTitle?: string
|
|
5491
|
+
/**
|
|
5492
|
+
* 联系人名。
|
|
5493
|
+
*/
|
|
5494
|
+
TechFirstName?: string
|
|
5495
|
+
/**
|
|
5496
|
+
* 联系人姓。
|
|
5497
|
+
*/
|
|
5498
|
+
TechLastName?: string
|
|
5499
|
+
/**
|
|
5500
|
+
* 联系人邮箱地址。
|
|
5501
|
+
*/
|
|
5502
|
+
ContactEmail?: string
|
|
5503
|
+
/**
|
|
5504
|
+
* 是否开启自动续费: 0, 不开启; 1, 开启; 默认为0
|
|
5505
|
+
*/
|
|
5506
|
+
AutoRenewFlag?: number
|
|
5507
|
+
/**
|
|
5508
|
+
* 证书加密参数
|
|
5509
|
+
*/
|
|
5510
|
+
CsrKeyParameter?: string
|
|
5511
|
+
/**
|
|
5512
|
+
* 证书加密方式
|
|
5513
|
+
*/
|
|
5514
|
+
CsrEncryptAlgo?: string
|
|
5515
|
+
/**
|
|
5516
|
+
* 管理人ID
|
|
5517
|
+
*/
|
|
5518
|
+
ManagerId?: string
|
|
5519
|
+
/**
|
|
5520
|
+
* 联系人电话
|
|
5521
|
+
*/
|
|
5522
|
+
TechPhone?: string
|
|
5523
|
+
/**
|
|
5524
|
+
* 联系人邮箱
|
|
5525
|
+
*/
|
|
5526
|
+
TechEmail?: string
|
|
5527
|
+
/**
|
|
5528
|
+
* 联系人职位
|
|
5529
|
+
*/
|
|
5530
|
+
TechTitle?: string
|
|
5531
|
+
}
|
|
5532
|
+
|
|
5313
5533
|
/**
|
|
5314
5534
|
* clb实例详情 - 异步关联云资源数据结构
|
|
5315
5535
|
*/
|
|
@@ -5345,37 +5565,25 @@ export interface UpdateCertificateRecordRetryResponse {
|
|
|
5345
5565
|
}
|
|
5346
5566
|
|
|
5347
5567
|
/**
|
|
5348
|
-
*
|
|
5568
|
+
* CertificateOrderSubmit返回参数结构体
|
|
5349
5569
|
*/
|
|
5350
|
-
export interface
|
|
5570
|
+
export interface CertificateOrderSubmitResponse {
|
|
5351
5571
|
/**
|
|
5352
|
-
*
|
|
5353
|
-
*/
|
|
5354
|
-
Offset?: number
|
|
5355
|
-
/**
|
|
5356
|
-
* 限制数目,默认20。
|
|
5357
|
-
*/
|
|
5358
|
-
Limit?: number
|
|
5359
|
-
/**
|
|
5360
|
-
* 按状态筛选。
|
|
5361
|
-
*/
|
|
5362
|
-
Status?: string
|
|
5363
|
-
/**
|
|
5364
|
-
* 按过期时间升序或降序排列。
|
|
5572
|
+
* CA机构侧订单号。
|
|
5365
5573
|
*/
|
|
5366
|
-
|
|
5574
|
+
OrderId?: string
|
|
5367
5575
|
/**
|
|
5368
|
-
*
|
|
5576
|
+
* 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。
|
|
5369
5577
|
*/
|
|
5370
|
-
|
|
5578
|
+
Status?: number
|
|
5371
5579
|
/**
|
|
5372
|
-
*
|
|
5580
|
+
* 是否预审核
|
|
5373
5581
|
*/
|
|
5374
|
-
|
|
5582
|
+
IsAudited?: boolean
|
|
5375
5583
|
/**
|
|
5376
|
-
*
|
|
5584
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5377
5585
|
*/
|
|
5378
|
-
|
|
5586
|
+
RequestId?: string
|
|
5379
5587
|
}
|
|
5380
5588
|
|
|
5381
5589
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { DescribeCertificateBindResourceTaskDetailRequest, DescribeHostDdosInstanceListRequest, CompleteCertificateRequest, DownloadCertificateResponse, DescribeHostDeployRecordDetailResponse, CancelCertificateOrderRequest, ModifyCertificateProjectResponse, VerifyManagerResponse, DescribeCertificateDetailRequest, CreateCertificateBindResourceSyncTaskResponse, DescribeDeployedResourcesRequest, UploadRevokeLetterRequest, DescribeCompaniesResponse, CheckCertificateChainResponse, DescribeHostCosInstanceListResponse, ModifyCertificateAliasRequest, DescribeManagerDetailRequest, SubmitCertificateInformationRequest, DescribeCertificateOperateLogsRequest, CancelCertificateOrderResponse, ModifyCertificatesExpiringNotificationSwitchResponse, DescribeHostLiveInstanceListRequest, DescribeHostDdosInstanceListResponse, DeployCertificateRecordRetryRequest, ModifyCertificateResubmitRequest, DescribeCertificateResponse, DownloadCertificateRequest, DescribeHostTkeInstanceListResponse, DescribeCertificateBindResourceTaskResultRequest, ApplyCertificateResponse, DescribeHostDeployRecordRequest, CreateCertificateBindResourceSyncTaskRequest, UploadConfirmLetterResponse, DescribeHostUpdateRecordDetailRequest, ReplaceCertificateResponse, DescribeManagersResponse, DeleteCertificatesResponse, DescribeDeleteCertificatesTaskResultResponse, DeleteManagerRequest, DescribeHostUpdateRecordResponse, UpdateCertificateRecordRollbackResponse, DescribeHostVodInstanceListRequest, DescribeCertificateBindResourceTaskDetailResponse, DeployCertificateRecordRetryResponse, CheckCertificateDomainVerificationRequest, UpdateCertificateRecordRetryRequest, DescribeHostWafInstanceListResponse, DescribeDeployedResourcesResponse, CreateCertificateRequest, DescribeCertificatesResponse, CommitCertificateInformationResponse, DeleteManagerResponse, SubmitAuditManagerRequest, UploadCertificateResponse, DeployCertificateInstanceResponse, CreateCertificateByPackageResponse, DescribeCertificatesRequest, UpdateCertificateRecordRollbackRequest, DescribeHostClbInstanceListResponse, RevokeCertificateRequest, DescribeManagerDetailResponse, UploadCertificateRequest, CreateCertificateByPackageRequest, CommitCertificateInformationRequest, DescribeHostDeployRecordDetailRequest, UpdateCertificateInstanceRequest, ReplaceCertificateRequest, DescribeHostDeployRecordResponse, CheckCertificateDomainVerificationResponse, DescribeDownloadCertificateUrlResponse, DescribeHostTkeInstanceListRequest, DeployCertificateRecordRollbackRequest, DeleteCertificateResponse, RevokeCertificateResponse, ModifyCertificateProjectRequest, DeleteCertificatesRequest, DescribeHostVodInstanceListResponse, ModifyCertificatesExpiringNotificationSwitchRequest, DescribeHostUpdateRecordDetailResponse, DescribeDeleteCertificatesTaskResultRequest, DescribeHostUpdateRecordRequest, DescribeHostClbInstanceListRequest, VerifyManagerRequest, DescribeHostLiveInstanceListResponse, CheckCertificateExistResponse, DescribeHostApiGatewayInstanceListRequest, DescribeDownloadCertificateUrlRequest, DeployCertificateRecordRollbackResponse, DescribeHostCosInstanceListRequest, DescribeHostCdnInstanceListResponse, DeployCertificateInstanceRequest, DeleteCertificateRequest, DescribeCertificateOperateLogsResponse, DescribeHostLighthouseInstanceListRequest, DescribeHostCdnInstanceListRequest, DescribeHostTeoInstanceListResponse, DescribeHostWafInstanceListRequest, UploadRevokeLetterResponse, CancelAuditCertificateRequest, ModifyCertificateResubmitResponse, SubmitAuditManagerResponse, UpdateCertificateInstanceResponse, DescribeCertificateRequest, ModifyCertificateAliasResponse, ApplyCertificateRequest, CreateCertificateResponse, DescribeHostApiGatewayInstanceListResponse, DescribeCertificateDetailResponse, DescribeCertificateBindResourceTaskResultResponse, DescribeHostTeoInstanceListRequest, UploadConfirmLetterRequest, SubmitCertificateInformationResponse, UpdateCertificateRecordRetryResponse,
|
|
2
|
+
import { DescribeCertificateBindResourceTaskDetailRequest, DescribeHostDdosInstanceListRequest, CompleteCertificateRequest, DownloadCertificateResponse, DescribeHostDeployRecordDetailResponse, CancelCertificateOrderRequest, ModifyCertificateProjectResponse, VerifyManagerResponse, DescribeCertificateDetailRequest, CreateCertificateBindResourceSyncTaskResponse, DescribeDeployedResourcesRequest, UploadRevokeLetterRequest, DescribeCompaniesResponse, CheckCertificateChainResponse, DescribeHostCosInstanceListResponse, ModifyCertificateAliasRequest, DescribeManagerDetailRequest, SubmitCertificateInformationRequest, DescribeCertificateOperateLogsRequest, CancelCertificateOrderResponse, ModifyCertificatesExpiringNotificationSwitchResponse, DescribeHostLiveInstanceListRequest, DescribeHostDdosInstanceListResponse, DeployCertificateRecordRetryRequest, ModifyCertificateResubmitRequest, DescribeCertificateResponse, DownloadCertificateRequest, DescribeHostTkeInstanceListResponse, DescribeCertificateBindResourceTaskResultRequest, ApplyCertificateResponse, DescribeHostDeployRecordRequest, CreateCertificateBindResourceSyncTaskRequest, UploadConfirmLetterResponse, DescribeHostUpdateRecordDetailRequest, ReplaceCertificateResponse, DescribeManagersResponse, DeleteCertificatesResponse, DescribeDeleteCertificatesTaskResultResponse, DeleteManagerRequest, DescribeHostUpdateRecordResponse, CertificateOrderSubmitRequest, UpdateCertificateRecordRollbackResponse, DescribeHostVodInstanceListRequest, DescribeCertificateBindResourceTaskDetailResponse, DeployCertificateRecordRetryResponse, CheckCertificateDomainVerificationRequest, UpdateCertificateRecordRetryRequest, DescribeHostWafInstanceListResponse, DescribeDeployedResourcesResponse, CreateCertificateRequest, DescribeCertificatesResponse, CommitCertificateInformationResponse, DeleteManagerResponse, SubmitAuditManagerRequest, UploadCertificateResponse, DeployCertificateInstanceResponse, CreateCertificateByPackageResponse, DescribeCertificatesRequest, UpdateCertificateRecordRollbackRequest, DescribeHostClbInstanceListResponse, RevokeCertificateRequest, DescribeManagerDetailResponse, UploadCertificateRequest, CreateCertificateByPackageRequest, CommitCertificateInformationRequest, DescribeHostDeployRecordDetailRequest, UpdateCertificateInstanceRequest, ReplaceCertificateRequest, DescribeHostDeployRecordResponse, CheckCertificateDomainVerificationResponse, DescribeDownloadCertificateUrlResponse, DescribeHostTkeInstanceListRequest, DeployCertificateRecordRollbackRequest, DeleteCertificateResponse, RevokeCertificateResponse, ModifyCertificateProjectRequest, DescribePackagesRequest, DeleteCertificatesRequest, DescribeHostVodInstanceListResponse, ModifyCertificatesExpiringNotificationSwitchRequest, DescribeHostUpdateRecordDetailResponse, DescribeDeleteCertificatesTaskResultRequest, DescribeHostUpdateRecordRequest, DescribeHostClbInstanceListRequest, VerifyManagerRequest, DescribeHostLiveInstanceListResponse, CheckCertificateExistResponse, DescribeHostApiGatewayInstanceListRequest, DescribeDownloadCertificateUrlRequest, DeployCertificateRecordRollbackResponse, DescribeHostCosInstanceListRequest, DescribeHostCdnInstanceListResponse, DeployCertificateInstanceRequest, DeleteCertificateRequest, DescribeCertificateOperateLogsResponse, DescribeHostLighthouseInstanceListRequest, DescribeHostCdnInstanceListRequest, CertificateInfoSubmitResponse, DescribeHostTeoInstanceListResponse, DescribeHostWafInstanceListRequest, UploadRevokeLetterResponse, CancelAuditCertificateRequest, ModifyCertificateResubmitResponse, SubmitAuditManagerResponse, UpdateCertificateInstanceResponse, DescribeCertificateRequest, ModifyCertificateAliasResponse, ApplyCertificateRequest, CreateCertificateResponse, DescribeHostApiGatewayInstanceListResponse, DescribeCertificateDetailResponse, DescribeCertificateBindResourceTaskResultResponse, DescribeHostTeoInstanceListRequest, UploadConfirmLetterRequest, SubmitCertificateInformationResponse, CertificateInfoSubmitRequest, UpdateCertificateRecordRetryResponse, CertificateOrderSubmitResponse, CheckCertificateChainRequest, CheckCertificateExistRequest, DescribeCompaniesRequest, CancelAuditCertificateResponse, DescribePackagesResponse, DescribeManagersRequest, DescribeHostLighthouseInstanceListResponse, CompleteCertificateResponse } from "./ssl_models";
|
|
3
3
|
/**
|
|
4
4
|
* ssl client
|
|
5
5
|
* @class
|
|
@@ -19,9 +19,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
19
19
|
*/
|
|
20
20
|
DescribeHostCdnInstanceList(req: DescribeHostCdnInstanceListRequest, cb?: (error: string, rep: DescribeHostCdnInstanceListResponse) => void): Promise<DescribeHostCdnInstanceListResponse>;
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* 取消证书审核
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
CancelAuditCertificate(req: CancelAuditCertificateRequest, cb?: (error: string, rep: CancelAuditCertificateResponse) => void): Promise<CancelAuditCertificateResponse>;
|
|
25
25
|
/**
|
|
26
26
|
* 查询证书tke云资源部署实例列表
|
|
27
27
|
*/
|
|
@@ -38,6 +38,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
38
38
|
* 删除管理人
|
|
39
39
|
*/
|
|
40
40
|
DeleteManager(req: DeleteManagerRequest, cb?: (error: string, rep: DeleteManagerResponse) => void): Promise<DeleteManagerResponse>;
|
|
41
|
+
/**
|
|
42
|
+
* 付费提交证书资料
|
|
43
|
+
*/
|
|
44
|
+
CertificateInfoSubmit(req: CertificateInfoSubmitRequest, cb?: (error: string, rep: CertificateInfoSubmitResponse) => void): Promise<CertificateInfoSubmitResponse>;
|
|
41
45
|
/**
|
|
42
46
|
* 获取下载证书链接
|
|
43
47
|
*/
|
|
@@ -93,6 +97,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
93
97
|
* 取消证书订单。
|
|
94
98
|
*/
|
|
95
99
|
CancelCertificateOrder(req: CancelCertificateOrderRequest, cb?: (error: string, rep: CancelCertificateOrderResponse) => void): Promise<CancelCertificateOrderResponse>;
|
|
100
|
+
/**
|
|
101
|
+
* 提交付费证书订单
|
|
102
|
+
*/
|
|
103
|
+
CertificateOrderSubmit(req: CertificateOrderSubmitRequest, cb?: (error: string, rep: CertificateOrderSubmitResponse) => void): Promise<CertificateOrderSubmitResponse>;
|
|
96
104
|
/**
|
|
97
105
|
* 本接口(DownloadCertificate)用于下载证书。
|
|
98
106
|
*/
|
|
@@ -166,9 +174,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
166
174
|
*/
|
|
167
175
|
DescribeCertificateBindResourceTaskResult(req: DescribeCertificateBindResourceTaskResultRequest, cb?: (error: string, rep: DescribeCertificateBindResourceTaskResultResponse) => void): Promise<DescribeCertificateBindResourceTaskResultResponse>;
|
|
168
176
|
/**
|
|
169
|
-
*
|
|
177
|
+
* 检查证书域名验证
|
|
170
178
|
*/
|
|
171
|
-
|
|
179
|
+
CheckCertificateDomainVerification(req: CheckCertificateDomainVerificationRequest, cb?: (error: string, rep: CheckCertificateDomainVerificationResponse) => void): Promise<CheckCertificateDomainVerificationResponse>;
|
|
172
180
|
/**
|
|
173
181
|
* 根据证书内容检测当前账号下是否存在一致的证书, 存在则返回证书ID, 不存在则返回空
|
|
174
182
|
*/
|
|
@@ -194,9 +202,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
194
202
|
*/
|
|
195
203
|
DescribeDeployedResources(req: DescribeDeployedResourcesRequest, cb?: (error: string, rep: DescribeDeployedResourcesResponse) => void): Promise<DescribeDeployedResourcesResponse>;
|
|
196
204
|
/**
|
|
197
|
-
*
|
|
205
|
+
* 本接口(CreateCertificate)用于创建付费证书。
|
|
198
206
|
*/
|
|
199
|
-
|
|
207
|
+
CreateCertificate(req: CreateCertificateRequest, cb?: (error: string, rep: CreateCertificateResponse) => void): Promise<CreateCertificateResponse>;
|
|
200
208
|
/**
|
|
201
209
|
* 本接口(UploadConfirmLetter)用于上传证书确认函。
|
|
202
210
|
*/
|
|
@@ -222,9 +230,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
222
230
|
*/
|
|
223
231
|
DescribeHostApiGatewayInstanceList(req: DescribeHostApiGatewayInstanceListRequest, cb?: (error: string, rep: DescribeHostApiGatewayInstanceListResponse) => void): Promise<DescribeHostApiGatewayInstanceListResponse>;
|
|
224
232
|
/**
|
|
225
|
-
*
|
|
233
|
+
* 使用权益点创建证书
|
|
226
234
|
*/
|
|
227
|
-
|
|
235
|
+
CreateCertificateByPackage(req: CreateCertificateByPackageRequest, cb?: (error: string, rep: CreateCertificateByPackageResponse) => void): Promise<CreateCertificateByPackageResponse>;
|
|
228
236
|
/**
|
|
229
237
|
* 创建证书绑定关联云资源异步任务, 该接口用于查询证书关联云资源。 若证书ID已存在查询云资源任务,则结果返回该任务ID。关联云资源类型,支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos。查询关联云资源结果使用DescribeCertificateBindResourceTaskResult接口
|
|
230
238
|
*/
|
|
@@ -46,10 +46,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
46
46
|
return this.request("DescribeHostCdnInstanceList", req, cb);
|
|
47
47
|
}
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* 取消证书审核
|
|
50
50
|
*/
|
|
51
|
-
async
|
|
52
|
-
return this.request("
|
|
51
|
+
async CancelAuditCertificate(req, cb) {
|
|
52
|
+
return this.request("CancelAuditCertificate", req, cb);
|
|
53
53
|
}
|
|
54
54
|
/**
|
|
55
55
|
* 查询证书tke云资源部署实例列表
|
|
@@ -75,6 +75,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
75
75
|
async DeleteManager(req, cb) {
|
|
76
76
|
return this.request("DeleteManager", req, cb);
|
|
77
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* 付费提交证书资料
|
|
80
|
+
*/
|
|
81
|
+
async CertificateInfoSubmit(req, cb) {
|
|
82
|
+
return this.request("CertificateInfoSubmit", req, cb);
|
|
83
|
+
}
|
|
78
84
|
/**
|
|
79
85
|
* 获取下载证书链接
|
|
80
86
|
*/
|
|
@@ -154,6 +160,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
154
160
|
async CancelCertificateOrder(req, cb) {
|
|
155
161
|
return this.request("CancelCertificateOrder", req, cb);
|
|
156
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* 提交付费证书订单
|
|
165
|
+
*/
|
|
166
|
+
async CertificateOrderSubmit(req, cb) {
|
|
167
|
+
return this.request("CertificateOrderSubmit", req, cb);
|
|
168
|
+
}
|
|
157
169
|
/**
|
|
158
170
|
* 本接口(DownloadCertificate)用于下载证书。
|
|
159
171
|
*/
|
|
@@ -263,10 +275,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
263
275
|
return this.request("DescribeCertificateBindResourceTaskResult", req, cb);
|
|
264
276
|
}
|
|
265
277
|
/**
|
|
266
|
-
*
|
|
278
|
+
* 检查证书域名验证
|
|
267
279
|
*/
|
|
268
|
-
async
|
|
269
|
-
return this.request("
|
|
280
|
+
async CheckCertificateDomainVerification(req, cb) {
|
|
281
|
+
return this.request("CheckCertificateDomainVerification", req, cb);
|
|
270
282
|
}
|
|
271
283
|
/**
|
|
272
284
|
* 根据证书内容检测当前账号下是否存在一致的证书, 存在则返回证书ID, 不存在则返回空
|
|
@@ -305,10 +317,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
305
317
|
return this.request("DescribeDeployedResources", req, cb);
|
|
306
318
|
}
|
|
307
319
|
/**
|
|
308
|
-
*
|
|
320
|
+
* 本接口(CreateCertificate)用于创建付费证书。
|
|
309
321
|
*/
|
|
310
|
-
async
|
|
311
|
-
return this.request("
|
|
322
|
+
async CreateCertificate(req, cb) {
|
|
323
|
+
return this.request("CreateCertificate", req, cb);
|
|
312
324
|
}
|
|
313
325
|
/**
|
|
314
326
|
* 本接口(UploadConfirmLetter)用于上传证书确认函。
|
|
@@ -347,10 +359,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
347
359
|
return this.request("DescribeHostApiGatewayInstanceList", req, cb);
|
|
348
360
|
}
|
|
349
361
|
/**
|
|
350
|
-
*
|
|
362
|
+
* 使用权益点创建证书
|
|
351
363
|
*/
|
|
352
|
-
async
|
|
353
|
-
return this.request("
|
|
364
|
+
async CreateCertificateByPackage(req, cb) {
|
|
365
|
+
return this.request("CreateCertificateByPackage", req, cb);
|
|
354
366
|
}
|
|
355
367
|
/**
|
|
356
368
|
* 创建证书绑定关联云资源异步任务, 该接口用于查询证书关联云资源。 若证书ID已存在查询云资源任务,则结果返回该任务ID。关联云资源类型,支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos。查询关联云资源结果使用DescribeCertificateBindResourceTaskResult接口
|
|
@@ -2303,6 +2303,23 @@ export interface DescribeHostUpdateRecordResponse {
|
|
|
2303
2303
|
*/
|
|
2304
2304
|
RequestId?: string;
|
|
2305
2305
|
}
|
|
2306
|
+
/**
|
|
2307
|
+
* CertificateOrderSubmit请求参数结构体
|
|
2308
|
+
*/
|
|
2309
|
+
export interface CertificateOrderSubmitRequest {
|
|
2310
|
+
/**
|
|
2311
|
+
* 证书 ID。
|
|
2312
|
+
*/
|
|
2313
|
+
CertId: string;
|
|
2314
|
+
/**
|
|
2315
|
+
* 是否删除自动DNS验证值:0,不删除; 1,删除; 默认不删除
|
|
2316
|
+
*/
|
|
2317
|
+
DeleteDnsAutoRecord?: number;
|
|
2318
|
+
/**
|
|
2319
|
+
* 域名验证方式:DNS_AUTO 自动DNS验证, DNS DNS验证, FILE 文件验证
|
|
2320
|
+
*/
|
|
2321
|
+
VerifyType?: string;
|
|
2322
|
+
}
|
|
2306
2323
|
/**
|
|
2307
2324
|
* UpdateCertificateRecordRollback返回参数结构体
|
|
2308
2325
|
*/
|
|
@@ -3568,6 +3585,39 @@ export interface ModifyCertificateProjectRequest {
|
|
|
3568
3585
|
*/
|
|
3569
3586
|
ProjectId: number;
|
|
3570
3587
|
}
|
|
3588
|
+
/**
|
|
3589
|
+
* DescribePackages请求参数结构体
|
|
3590
|
+
*/
|
|
3591
|
+
export interface DescribePackagesRequest {
|
|
3592
|
+
/**
|
|
3593
|
+
* 偏移量,默认0。
|
|
3594
|
+
*/
|
|
3595
|
+
Offset?: number;
|
|
3596
|
+
/**
|
|
3597
|
+
* 限制数目,默认20。
|
|
3598
|
+
*/
|
|
3599
|
+
Limit?: number;
|
|
3600
|
+
/**
|
|
3601
|
+
* 按状态筛选。
|
|
3602
|
+
*/
|
|
3603
|
+
Status?: string;
|
|
3604
|
+
/**
|
|
3605
|
+
* 按过期时间升序或降序排列。
|
|
3606
|
+
*/
|
|
3607
|
+
ExpireTime?: string;
|
|
3608
|
+
/**
|
|
3609
|
+
* 按权益包ID搜索。
|
|
3610
|
+
*/
|
|
3611
|
+
PackageId?: string;
|
|
3612
|
+
/**
|
|
3613
|
+
* 按权益包类型搜索。
|
|
3614
|
+
*/
|
|
3615
|
+
Type?: string;
|
|
3616
|
+
/**
|
|
3617
|
+
* 子产品编号
|
|
3618
|
+
*/
|
|
3619
|
+
Pid?: number;
|
|
3620
|
+
}
|
|
3571
3621
|
/**
|
|
3572
3622
|
* DeleteCertificates请求参数结构体
|
|
3573
3623
|
*/
|
|
@@ -4366,6 +4416,15 @@ export interface DescribeHostCdnInstanceListRequest {
|
|
|
4366
4416
|
*/
|
|
4367
4417
|
AsyncCache?: number;
|
|
4368
4418
|
}
|
|
4419
|
+
/**
|
|
4420
|
+
* CertificateInfoSubmit返回参数结构体
|
|
4421
|
+
*/
|
|
4422
|
+
export interface CertificateInfoSubmitResponse {
|
|
4423
|
+
/**
|
|
4424
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4425
|
+
*/
|
|
4426
|
+
RequestId?: string;
|
|
4427
|
+
}
|
|
4369
4428
|
/**
|
|
4370
4429
|
* DescribeHostTeoInstanceList返回参数结构体
|
|
4371
4430
|
*/
|
|
@@ -5113,6 +5172,163 @@ export interface TCBEnvironments {
|
|
|
5113
5172
|
*/
|
|
5114
5173
|
HostService?: TCBHostService;
|
|
5115
5174
|
}
|
|
5175
|
+
/**
|
|
5176
|
+
* CertificateInfoSubmit请求参数结构体
|
|
5177
|
+
*/
|
|
5178
|
+
export interface CertificateInfoSubmitRequest {
|
|
5179
|
+
/**
|
|
5180
|
+
* 证书 ID。
|
|
5181
|
+
*/
|
|
5182
|
+
CertId: string;
|
|
5183
|
+
/**
|
|
5184
|
+
* CSR 生成方式:online = 在线生成, upload = 手动上传。
|
|
5185
|
+
*/
|
|
5186
|
+
GenCsrType: string;
|
|
5187
|
+
/**
|
|
5188
|
+
* 绑定证书的主域名。
|
|
5189
|
+
*/
|
|
5190
|
+
CertCommonName: string;
|
|
5191
|
+
/**
|
|
5192
|
+
* 组织信息类型:1,个人; 2, 公司;
|
|
5193
|
+
*/
|
|
5194
|
+
CompanyType: number;
|
|
5195
|
+
/**
|
|
5196
|
+
* 公司证件类型()
|
|
5197
|
+
*/
|
|
5198
|
+
OrgIdType: string;
|
|
5199
|
+
/**
|
|
5200
|
+
* 公司证件号码
|
|
5201
|
+
*/
|
|
5202
|
+
OrgIdNumber: string;
|
|
5203
|
+
/**
|
|
5204
|
+
* 管理人证件类型
|
|
5205
|
+
*/
|
|
5206
|
+
AdminIdType: string;
|
|
5207
|
+
/**
|
|
5208
|
+
* 管理人证件号码
|
|
5209
|
+
*/
|
|
5210
|
+
AdminIdNumber: string;
|
|
5211
|
+
/**
|
|
5212
|
+
* 联系人证件类型
|
|
5213
|
+
*/
|
|
5214
|
+
TechIdType: string;
|
|
5215
|
+
/**
|
|
5216
|
+
* 联系人证件号码
|
|
5217
|
+
*/
|
|
5218
|
+
TechIdNumber: string;
|
|
5219
|
+
/**
|
|
5220
|
+
* 公司ID
|
|
5221
|
+
*/
|
|
5222
|
+
CompanyId: string;
|
|
5223
|
+
/**
|
|
5224
|
+
* 上传的 CSR 内容。如果GenCsrType为upload则该字段必传
|
|
5225
|
+
*/
|
|
5226
|
+
Csr?: string;
|
|
5227
|
+
/**
|
|
5228
|
+
* 域名数组(多域名证书可以上传)。
|
|
5229
|
+
*/
|
|
5230
|
+
DnsNames?: Array<string>;
|
|
5231
|
+
/**
|
|
5232
|
+
* 私钥密码(非必填)。
|
|
5233
|
+
*/
|
|
5234
|
+
KeyPass?: string;
|
|
5235
|
+
/**
|
|
5236
|
+
* 公司名称。
|
|
5237
|
+
*/
|
|
5238
|
+
OrgOrganization?: string;
|
|
5239
|
+
/**
|
|
5240
|
+
* 部门名称。
|
|
5241
|
+
*/
|
|
5242
|
+
OrgDivision?: string;
|
|
5243
|
+
/**
|
|
5244
|
+
* 公司详细地址。
|
|
5245
|
+
*/
|
|
5246
|
+
OrgAddress?: string;
|
|
5247
|
+
/**
|
|
5248
|
+
* 国家名称,如中国:CN 。
|
|
5249
|
+
*/
|
|
5250
|
+
OrgCountry?: string;
|
|
5251
|
+
/**
|
|
5252
|
+
* 公司所在城市。
|
|
5253
|
+
*/
|
|
5254
|
+
OrgCity?: string;
|
|
5255
|
+
/**
|
|
5256
|
+
* 公司所在省份。
|
|
5257
|
+
*/
|
|
5258
|
+
OrgRegion?: string;
|
|
5259
|
+
/**
|
|
5260
|
+
* 公司座机区号。
|
|
5261
|
+
*/
|
|
5262
|
+
OrgPhoneArea?: string;
|
|
5263
|
+
/**
|
|
5264
|
+
* 公司座机号码。
|
|
5265
|
+
*/
|
|
5266
|
+
OrgPhoneNumber?: string;
|
|
5267
|
+
/**
|
|
5268
|
+
* 证书验证方式。验证类型:DNS_AUTO = 自动DNS验证(仅支持在腾讯云解析且解析状态正常的域名使用该验证类型),DNS = 手动DNS验证,FILE = 文件验证。
|
|
5269
|
+
*/
|
|
5270
|
+
VerifyType?: string;
|
|
5271
|
+
/**
|
|
5272
|
+
* 管理人名。
|
|
5273
|
+
*/
|
|
5274
|
+
AdminFirstName?: string;
|
|
5275
|
+
/**
|
|
5276
|
+
* 管理人姓。
|
|
5277
|
+
*/
|
|
5278
|
+
AdminLastName?: string;
|
|
5279
|
+
/**
|
|
5280
|
+
* 管理人手机号码。
|
|
5281
|
+
*/
|
|
5282
|
+
AdminPhone?: string;
|
|
5283
|
+
/**
|
|
5284
|
+
* 管理人邮箱地址。
|
|
5285
|
+
*/
|
|
5286
|
+
AdminEmail?: string;
|
|
5287
|
+
/**
|
|
5288
|
+
* 管理人职位。
|
|
5289
|
+
*/
|
|
5290
|
+
AdminTitle?: string;
|
|
5291
|
+
/**
|
|
5292
|
+
* 联系人名。
|
|
5293
|
+
*/
|
|
5294
|
+
TechFirstName?: string;
|
|
5295
|
+
/**
|
|
5296
|
+
* 联系人姓。
|
|
5297
|
+
*/
|
|
5298
|
+
TechLastName?: string;
|
|
5299
|
+
/**
|
|
5300
|
+
* 联系人邮箱地址。
|
|
5301
|
+
*/
|
|
5302
|
+
ContactEmail?: string;
|
|
5303
|
+
/**
|
|
5304
|
+
* 是否开启自动续费: 0, 不开启; 1, 开启; 默认为0
|
|
5305
|
+
*/
|
|
5306
|
+
AutoRenewFlag?: number;
|
|
5307
|
+
/**
|
|
5308
|
+
* 证书加密参数
|
|
5309
|
+
*/
|
|
5310
|
+
CsrKeyParameter?: string;
|
|
5311
|
+
/**
|
|
5312
|
+
* 证书加密方式
|
|
5313
|
+
*/
|
|
5314
|
+
CsrEncryptAlgo?: string;
|
|
5315
|
+
/**
|
|
5316
|
+
* 管理人ID
|
|
5317
|
+
*/
|
|
5318
|
+
ManagerId?: string;
|
|
5319
|
+
/**
|
|
5320
|
+
* 联系人电话
|
|
5321
|
+
*/
|
|
5322
|
+
TechPhone?: string;
|
|
5323
|
+
/**
|
|
5324
|
+
* 联系人邮箱
|
|
5325
|
+
*/
|
|
5326
|
+
TechEmail?: string;
|
|
5327
|
+
/**
|
|
5328
|
+
* 联系人职位
|
|
5329
|
+
*/
|
|
5330
|
+
TechTitle?: string;
|
|
5331
|
+
}
|
|
5116
5332
|
/**
|
|
5117
5333
|
* clb实例详情 - 异步关联云资源数据结构
|
|
5118
5334
|
*/
|
|
@@ -5146,37 +5362,25 @@ export interface UpdateCertificateRecordRetryResponse {
|
|
|
5146
5362
|
RequestId?: string;
|
|
5147
5363
|
}
|
|
5148
5364
|
/**
|
|
5149
|
-
*
|
|
5365
|
+
* CertificateOrderSubmit返回参数结构体
|
|
5150
5366
|
*/
|
|
5151
|
-
export interface
|
|
5152
|
-
/**
|
|
5153
|
-
* 偏移量,默认0。
|
|
5154
|
-
*/
|
|
5155
|
-
Offset?: number;
|
|
5156
|
-
/**
|
|
5157
|
-
* 限制数目,默认20。
|
|
5158
|
-
*/
|
|
5159
|
-
Limit?: number;
|
|
5367
|
+
export interface CertificateOrderSubmitResponse {
|
|
5160
5368
|
/**
|
|
5161
|
-
*
|
|
5162
|
-
*/
|
|
5163
|
-
Status?: string;
|
|
5164
|
-
/**
|
|
5165
|
-
* 按过期时间升序或降序排列。
|
|
5369
|
+
* CA机构侧订单号。
|
|
5166
5370
|
*/
|
|
5167
|
-
|
|
5371
|
+
OrderId?: string;
|
|
5168
5372
|
/**
|
|
5169
|
-
*
|
|
5373
|
+
* 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。
|
|
5170
5374
|
*/
|
|
5171
|
-
|
|
5375
|
+
Status?: number;
|
|
5172
5376
|
/**
|
|
5173
|
-
*
|
|
5377
|
+
* 是否预审核
|
|
5174
5378
|
*/
|
|
5175
|
-
|
|
5379
|
+
IsAudited?: boolean;
|
|
5176
5380
|
/**
|
|
5177
|
-
*
|
|
5381
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5178
5382
|
*/
|
|
5179
|
-
|
|
5383
|
+
RequestId?: string;
|
|
5180
5384
|
}
|
|
5181
5385
|
/**
|
|
5182
5386
|
* TCB静态托管服务列表
|
package/products.md
DELETED
|
@@ -1,264 +0,0 @@
|
|
|
1
|
-
| 包名 | 产品中文名 | 更新时间 |
|
|
2
|
-
|-|-|-|
|
|
3
|
-
| aa | [活动防刷](https://cloud.tencent.com/document/product/1189) | 2023-05-18 01:01:13 |
|
|
4
|
-
| aai | [](https://cloud.tencent.com/document/product) | 2019-08-08 23:15:13 |
|
|
5
|
-
| aca | [AI 临床助手](https://cloud.tencent.com/document/product/1388) | 2025-01-09 01:08:36 |
|
|
6
|
-
| acp | [应用合规平台](https://cloud.tencent.com/document/product/1553) | 2024-11-01 01:03:06 |
|
|
7
|
-
| advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2025-01-16 20:27:23 |
|
|
8
|
-
| af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2024-11-22 11:20:38 |
|
|
9
|
-
| afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2024-05-31 01:07:25 |
|
|
10
|
-
| aiart | [大模型图像创作引擎](https://cloud.tencent.com/document/product/1668) | 2025-01-15 01:07:21 |
|
|
11
|
-
| ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-08-17 01:06:14 |
|
|
12
|
-
| ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2025-01-08 01:09:45 |
|
|
13
|
-
| anicloud | [动效素材服务](https://cloud.tencent.com/document/product/1641) | 2023-05-18 01:01:53 |
|
|
14
|
-
| antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/297) | 2024-08-22 01:03:05 |
|
|
15
|
-
| apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
|
|
16
|
-
| ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
|
|
17
|
-
| api | [云 API](https://cloud.tencent.com/document/product/1278) | 2023-01-05 01:02:52 |
|
|
18
|
-
| apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2025-01-13 01:07:53 |
|
|
19
|
-
| apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2025-01-17 01:08:20 |
|
|
20
|
-
| as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2025-01-17 01:08:27 |
|
|
21
|
-
| asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2025-01-23 01:08:34 |
|
|
22
|
-
| asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2023-05-18 01:04:02 |
|
|
23
|
-
| ba | [ICP备案](https://cloud.tencent.com/document/product/243) | 2024-12-19 01:10:53 |
|
|
24
|
-
| batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2025-01-10 01:08:10 |
|
|
25
|
-
| bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2024-11-14 01:10:31 |
|
|
26
|
-
| bh | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2025-01-09 01:09:37 |
|
|
27
|
-
| bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2025-01-23 01:08:59 |
|
|
28
|
-
| billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2025-01-08 01:10:54 |
|
|
29
|
-
| bizlive | [商业直播](https://cloud.tencent.com/document/product) | 2020-03-10 01:08:07 |
|
|
30
|
-
| bm | [黑石物理服务器CPM](https://cloud.tencent.com/document/product/386) | 2024-03-20 01:08:40 |
|
|
31
|
-
| bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2024-10-18 01:04:14 |
|
|
32
|
-
| bmeip | [黑石弹性公网IP](https://cloud.tencent.com/document/product/1028) | 2024-03-20 01:08:53 |
|
|
33
|
-
| bmlb | [黑石负载均衡](https://cloud.tencent.com/document/product/1027) | 2024-03-20 01:08:56 |
|
|
34
|
-
| bmvpc | [黑石私有网络](https://cloud.tencent.com/document/product/1024) | 2024-03-20 01:09:02 |
|
|
35
|
-
| bpaas | [商业流程服务](https://cloud.tencent.com/document/product/1083) | 2024-11-29 01:10:03 |
|
|
36
|
-
| bri | [业务风险情报](https://cloud.tencent.com/document/product/1064) | 2024-06-19 01:13:52 |
|
|
37
|
-
| bsca | [软件成分分析](https://cloud.tencent.com/document/product/1483) | 2024-11-27 01:09:19 |
|
|
38
|
-
| btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2024-11-06 15:27:32 |
|
|
39
|
-
| ca | [腾讯云CA](https://cloud.tencent.com/document/product/1691) | 2025-01-16 01:08:56 |
|
|
40
|
-
| cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2025-01-08 01:11:16 |
|
|
41
|
-
| captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2025-01-22 01:09:12 |
|
|
42
|
-
| car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2024-12-27 10:53:11 |
|
|
43
|
-
| cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2025-01-17 01:09:42 |
|
|
44
|
-
| cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2025-01-10 01:09:12 |
|
|
45
|
-
| ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2025-01-15 01:09:19 |
|
|
46
|
-
| cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2025-01-15 01:09:31 |
|
|
47
|
-
| cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-11-15 01:15:46 |
|
|
48
|
-
| cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2025-01-14 01:09:45 |
|
|
49
|
-
| cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2024-11-08 01:17:02 |
|
|
50
|
-
| cdwch | [腾讯云数据仓库TCHouse-C](https://cloud.tencent.com/document/product/1299) | 2024-12-24 01:16:40 |
|
|
51
|
-
| cdwdoris | [腾讯云数据仓库 TCHouse-D](https://cloud.tencent.com/document/product/1387) | 2025-01-23 01:10:45 |
|
|
52
|
-
| cdwpg | [云数据仓库 PostgreSQL](https://cloud.tencent.com/document/product/878) | 2024-03-28 01:10:53 |
|
|
53
|
-
| cdz | [专属可用区](https://cloud.tencent.com/document/product/1629) | 2024-11-14 01:17:55 |
|
|
54
|
-
| cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2025-01-22 01:10:37 |
|
|
55
|
-
| cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2025-01-20 01:10:16 |
|
|
56
|
-
| cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2025-01-13 01:10:41 |
|
|
57
|
-
| chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2024-12-27 10:55:07 |
|
|
58
|
-
| ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2024-10-28 01:19:38 |
|
|
59
|
-
| cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2023-05-18 01:12:07 |
|
|
60
|
-
| cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
|
|
61
|
-
| cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
|
|
62
|
-
| ckafka | [消息队列 CKafka 版](https://cloud.tencent.com/document/product/597) | 2025-01-01 01:12:29 |
|
|
63
|
-
| clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2025-01-17 01:11:39 |
|
|
64
|
-
| cloudapp | [云应用](https://cloud.tencent.com/document/product/1689) | 2025-01-09 01:12:37 |
|
|
65
|
-
| cloudaudit | [操作审计](https://cloud.tencent.com/document/product/629) | 2025-01-15 01:11:23 |
|
|
66
|
-
| cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2024-11-28 10:52:49 |
|
|
67
|
-
| cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2024-12-27 10:55:16 |
|
|
68
|
-
| cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2025-01-09 01:12:45 |
|
|
69
|
-
| cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2024-09-25 01:13:30 |
|
|
70
|
-
| cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2025-01-23 01:12:19 |
|
|
71
|
-
| cms | [内容安全](https://cloud.tencent.com/document/product/669) | 2024-06-20 01:24:47 |
|
|
72
|
-
| config | [配置审计](https://cloud.tencent.com/document/product/1579) | 2025-01-15 01:11:56 |
|
|
73
|
-
| controlcenter | [控制中心](https://cloud.tencent.com/document/product/1708) | 2024-10-24 01:13:25 |
|
|
74
|
-
| cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2023-09-21 02:09:54 |
|
|
75
|
-
| csip | [云安全一体化平台](https://cloud.tencent.com/document/product/664) | 2025-01-10 01:11:55 |
|
|
76
|
-
| csxg | [5G入云服务](https://cloud.tencent.com/document/product/1687) | 2024-03-20 01:12:25 |
|
|
77
|
-
| cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2025-01-21 01:07:28 |
|
|
78
|
-
| cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2025-01-22 01:12:36 |
|
|
79
|
-
| cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
|
|
80
|
-
| cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2025-01-09 01:14:38 |
|
|
81
|
-
| dasb | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2024-11-19 01:26:13 |
|
|
82
|
-
| dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
|
|
83
|
-
| dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2023-05-18 01:20:11 |
|
|
84
|
-
| dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2025-01-23 01:14:09 |
|
|
85
|
-
| dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2025-01-07 01:15:00 |
|
|
86
|
-
| dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2025-01-16 01:13:53 |
|
|
87
|
-
| dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2025-01-16 01:13:58 |
|
|
88
|
-
| dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2025-01-22 01:14:28 |
|
|
89
|
-
| dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-12-31 01:16:41 |
|
|
90
|
-
| domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-12-25 01:30:08 |
|
|
91
|
-
| drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2025-01-09 01:16:10 |
|
|
92
|
-
| ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2024-03-20 01:15:13 |
|
|
93
|
-
| dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2025-01-15 01:14:50 |
|
|
94
|
-
| dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
|
|
95
|
-
| dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2025-01-09 01:16:34 |
|
|
96
|
-
| eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2024-12-26 01:31:46 |
|
|
97
|
-
| ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2024-09-05 01:32:54 |
|
|
98
|
-
| ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2024-10-22 01:18:29 |
|
|
99
|
-
| ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2025-01-10 01:15:40 |
|
|
100
|
-
| eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2024-06-25 01:14:34 |
|
|
101
|
-
| eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
|
|
102
|
-
| emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2025-01-16 01:15:53 |
|
|
103
|
-
| es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2025-01-13 01:16:10 |
|
|
104
|
-
| ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2025-01-16 01:16:17 |
|
|
105
|
-
| essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2025-01-23 01:16:56 |
|
|
106
|
-
| facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2024-12-26 01:36:01 |
|
|
107
|
-
| faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2025-01-20 01:16:33 |
|
|
108
|
-
| fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2024-12-25 01:36:47 |
|
|
109
|
-
| ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2024-11-21 01:34:23 |
|
|
110
|
-
| gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2025-01-09 01:18:35 |
|
|
111
|
-
| gme | [游戏多媒体引擎](https://cloud.tencent.com/document/product/607) | 2025-01-09 01:18:49 |
|
|
112
|
-
| goosefs | [数据加速器 GooseFS](https://cloud.tencent.com/document/product/1424) | 2024-12-31 01:19:53 |
|
|
113
|
-
| gpm | [游戏玩家匹配](https://cloud.tencent.com/document/product/1294) | 2022-07-11 06:12:36 |
|
|
114
|
-
| gs | [云游戏](https://cloud.tencent.com/document/product/1162) | 2024-12-27 11:13:19 |
|
|
115
|
-
| gse | [游戏服务器伸缩](https://cloud.tencent.com/document/product/1165) | 2022-07-11 06:12:44 |
|
|
116
|
-
| gwlb | [网关负载均衡](https://cloud.tencent.com/document/product/1782) | 2025-01-09 01:18:59 |
|
|
117
|
-
| habo | [](https://cloud.tencent.com/document/product) | 2019-05-09 19:37:22 |
|
|
118
|
-
| hai | [高性能应用服务](https://cloud.tencent.com/document/product/1721) | 2025-01-10 01:17:51 |
|
|
119
|
-
| hasim | [高可用物联网卡](https://cloud.tencent.com/document/product/1482) | 2023-05-18 01:29:47 |
|
|
120
|
-
| hcm | [数学作业批改](https://cloud.tencent.com/document/product/1004) | 2024-05-09 01:16:27 |
|
|
121
|
-
| hunyuan | [腾讯混元大模型](https://cloud.tencent.com/document/product/1729) | 2025-01-22 01:17:53 |
|
|
122
|
-
| iai | [人脸识别](https://cloud.tencent.com/document/product/867) | 2024-12-27 11:13:24 |
|
|
123
|
-
| iap | [身份识别平台](https://cloud.tencent.com/document/product/1787) | 2024-11-21 18:27:30 |
|
|
124
|
-
| ic | [图片瘦身](https://cloud.tencent.com/document/product/636) | 2023-03-02 01:23:21 |
|
|
125
|
-
| icr | [对话机器人](https://cloud.tencent.com/document/product/1268) | 2024-04-22 01:17:48 |
|
|
126
|
-
| ie | [智能编辑](https://cloud.tencent.com/document/product/1186) | 2023-08-17 03:20:18 |
|
|
127
|
-
| iecp | [物联网边缘计算平台](https://cloud.tencent.com/document/product/1118) | 2024-09-25 01:22:07 |
|
|
128
|
-
| ig | [智能导诊](https://cloud.tencent.com/document/product/1273) | 2024-11-21 01:36:39 |
|
|
129
|
-
| iir | [智能识图](https://cloud.tencent.com/document/product/1217) | 2022-04-04 06:48:05 |
|
|
130
|
-
| ims | [图片内容安全](https://cloud.tencent.com/document/product/1125) | 2024-12-03 10:53:29 |
|
|
131
|
-
| ioa | [iOA 零信任安全管理系统](https://cloud.tencent.com/document/product/1092) | 2024-11-11 01:39:45 |
|
|
132
|
-
| iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2023-07-17 01:22:28 |
|
|
133
|
-
| iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2024-06-05 01:47:50 |
|
|
134
|
-
| iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2025-01-17 20:22:17 |
|
|
135
|
-
| iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
|
|
136
|
-
| iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2025-01-10 01:19:02 |
|
|
137
|
-
| iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2025-01-01 01:21:21 |
|
|
138
|
-
| irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2024-10-17 01:22:29 |
|
|
139
|
-
| iss | [智能视图计算平台](https://cloud.tencent.com/document/product/1344) | 2024-12-24 01:40:55 |
|
|
140
|
-
| ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2024-12-16 01:41:44 |
|
|
141
|
-
| keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2025-01-09 01:20:47 |
|
|
142
|
-
| kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2024-11-07 01:44:48 |
|
|
143
|
-
| lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2025-01-21 01:14:38 |
|
|
144
|
-
| lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2025-01-20 01:19:11 |
|
|
145
|
-
| live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2025-01-14 01:19:30 |
|
|
146
|
-
| lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2025-01-22 01:20:33 |
|
|
147
|
-
| lkeap | [知识引擎原子能力](https://cloud.tencent.com/document/product/1772) | 2025-01-16 01:20:20 |
|
|
148
|
-
| lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
|
|
149
|
-
| lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
|
|
150
|
-
| mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2024-03-20 01:20:11 |
|
|
151
|
-
| mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2025-01-16 01:20:24 |
|
|
152
|
-
| market | [云市场](https://cloud.tencent.com/document/product/306) | 2024-11-25 01:21:47 |
|
|
153
|
-
| memcached | [云数据库Memcached](https://cloud.tencent.com/document/product/241) | 2024-12-16 01:45:51 |
|
|
154
|
-
| mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
|
|
155
|
-
| mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2024-11-11 01:49:22 |
|
|
156
|
-
| mna | [多网聚合加速](https://cloud.tencent.com/document/product/1385) | 2025-01-17 01:21:18 |
|
|
157
|
-
| mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2025-01-09 01:22:22 |
|
|
158
|
-
| monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2025-01-17 01:21:34 |
|
|
159
|
-
| mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2025-01-20 01:20:52 |
|
|
160
|
-
| mqtt | [消息队列 MQTT 版](https://cloud.tencent.com/document/product/1778) | 2024-12-19 01:49:38 |
|
|
161
|
-
| mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2024-12-12 01:48:36 |
|
|
162
|
-
| ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2024-11-14 01:54:52 |
|
|
163
|
-
| msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2024-12-25 01:51:10 |
|
|
164
|
-
| mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
|
|
165
|
-
| nlp | [NLP 技术](https://cloud.tencent.com/document/product/271) | 2025-01-14 01:21:36 |
|
|
166
|
-
| npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
|
|
167
|
-
| oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2025-01-09 01:23:28 |
|
|
168
|
-
| ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2025-01-22 01:22:25 |
|
|
169
|
-
| omics | [腾讯健康组学平台](https://cloud.tencent.com/document/product/1643) | 2024-12-25 01:52:29 |
|
|
170
|
-
| organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2024-12-20 01:46:38 |
|
|
171
|
-
| partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2024-11-22 12:03:22 |
|
|
172
|
-
| pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2023-05-18 01:44:14 |
|
|
173
|
-
| postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2025-01-20 01:22:23 |
|
|
174
|
-
| privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2024-12-24 01:52:16 |
|
|
175
|
-
| pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2025-01-14 01:22:46 |
|
|
176
|
-
| rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-12-04 01:27:22 |
|
|
177
|
-
| redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2025-01-13 01:23:02 |
|
|
178
|
-
| region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2024-12-20 01:49:24 |
|
|
179
|
-
| rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2023-12-25 00:16:39 |
|
|
180
|
-
| rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
|
|
181
|
-
| rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2025-01-22 01:23:51 |
|
|
182
|
-
| scf | [云函数](https://cloud.tencent.com/document/product/583) | 2025-01-22 01:24:07 |
|
|
183
|
-
| ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2024-10-22 01:28:58 |
|
|
184
|
-
| smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2024-12-17 01:50:10 |
|
|
185
|
-
| smop | [腾讯安心用户运营平台](https://cloud.tencent.com/document/product/1310) | 2024-10-31 02:02:47 |
|
|
186
|
-
| smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2024-07-09 01:21:06 |
|
|
187
|
-
| sms | [短信](https://cloud.tencent.com/document/product/382) | 2025-01-10 01:24:22 |
|
|
188
|
-
| soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2024-11-13 02:01:41 |
|
|
189
|
-
| solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
|
|
190
|
-
| sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2025-01-07 01:25:35 |
|
|
191
|
-
| ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-11-15 02:18:28 |
|
|
192
|
-
| ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2025-01-23 01:24:00 |
|
|
193
|
-
| sslpod | [证书监控 SSLPod](https://cloud.tencent.com/document/product/1084) | 2024-03-20 01:24:03 |
|
|
194
|
-
| ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2024-11-08 02:01:05 |
|
|
195
|
-
| sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2024-12-11 01:57:49 |
|
|
196
|
-
| svp | [节省计划](https://cloud.tencent.com/document/product/1761) | 2024-11-27 01:26:33 |
|
|
197
|
-
| taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2024-11-04 02:00:37 |
|
|
198
|
-
| tag | [标签](https://cloud.tencent.com/document/product/651) | 2024-12-25 01:59:10 |
|
|
199
|
-
| tan | [碳引擎](https://cloud.tencent.com/document/product/1498) | 2024-03-20 01:24:15 |
|
|
200
|
-
| tat | [自动化助手](https://cloud.tencent.com/document/product/1340) | 2025-01-20 01:24:18 |
|
|
201
|
-
| tav | [文件检测](https://cloud.tencent.com/document/product) | 2019-11-28 22:10:04 |
|
|
202
|
-
| tbaas | [腾讯云区块链服务平台 TBaaS](https://cloud.tencent.com/document/product/663) | 2025-01-14 01:24:30 |
|
|
203
|
-
| tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 |
|
|
204
|
-
| tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2024-03-20 01:24:24 |
|
|
205
|
-
| tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2024-08-05 02:05:20 |
|
|
206
|
-
| tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2025-01-13 01:24:44 |
|
|
207
|
-
| tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2025-01-08 01:27:40 |
|
|
208
|
-
| tccatalog | [统一Catalog服务](https://cloud.tencent.com/document/product/1784) | 2025-01-22 16:42:16 |
|
|
209
|
-
| tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
|
|
210
|
-
| tchd | [腾讯云健康看板](https://cloud.tencent.com/document/product/1688) | 2025-01-16 01:25:03 |
|
|
211
|
-
| tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
|
|
212
|
-
| tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2025-01-06 01:25:44 |
|
|
213
|
-
| tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2025-01-10 01:25:47 |
|
|
214
|
-
| tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-11-04 02:03:35 |
|
|
215
|
-
| tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2024-07-10 01:25:35 |
|
|
216
|
-
| tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-12-19 02:00:31 |
|
|
217
|
-
| tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2025-01-22 01:26:02 |
|
|
218
|
-
| tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2024-11-14 02:08:25 |
|
|
219
|
-
| tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2024-12-31 01:29:59 |
|
|
220
|
-
| teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2025-01-21 20:17:17 |
|
|
221
|
-
| thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2025-01-01 01:30:04 |
|
|
222
|
-
| tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
|
|
223
|
-
| tic | [资源编排 TIC](https://cloud.tencent.com/document/product/1213) | 2023-08-17 05:26:08 |
|
|
224
|
-
| ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 |
|
|
225
|
-
| tics | [威胁情报云查服务](https://cloud.tencent.com/document/product/1013) | 2024-03-20 01:27:08 |
|
|
226
|
-
| tiems | [腾讯云 TI 平台 TI-EMS ](https://cloud.tencent.com/document/product/1120) | 2022-07-19 06:19:39 |
|
|
227
|
-
| tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2024-12-23 11:03:45 |
|
|
228
|
-
| tione | [TI-ONE 训练平台](https://cloud.tencent.com/document/product/851) | 2025-01-09 01:28:15 |
|
|
229
|
-
| tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2025-01-16 01:26:31 |
|
|
230
|
-
| tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2025-01-13 01:27:05 |
|
|
231
|
-
| tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
|
|
232
|
-
| tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2024-10-30 02:12:39 |
|
|
233
|
-
| tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2024-12-05 01:26:59 |
|
|
234
|
-
| tourism | [文旅客情大数据](https://cloud.tencent.com/document/product/1684) | 2024-03-20 01:28:59 |
|
|
235
|
-
| trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2023-05-18 02:01:19 |
|
|
236
|
-
| trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2025-01-06 01:28:18 |
|
|
237
|
-
| trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2024-11-08 02:10:59 |
|
|
238
|
-
| trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2025-01-21 01:22:38 |
|
|
239
|
-
| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2025-01-21 01:22:42 |
|
|
240
|
-
| tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2025-01-21 01:22:52 |
|
|
241
|
-
| tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-12-30 02:06:44 |
|
|
242
|
-
| tsi | [腾讯同传系统](https://cloud.tencent.com/document/product/1399) | 2024-10-23 01:36:51 |
|
|
243
|
-
| tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2024-03-20 01:30:06 |
|
|
244
|
-
| tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2024-12-27 11:25:13 |
|
|
245
|
-
| ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2024-03-20 01:30:08 |
|
|
246
|
-
| vcg | [视频生成](https://cloud.tencent.com/document/product/1770) | 2024-11-22 12:20:45 |
|
|
247
|
-
| vclm | [大模型视频创作引擎](https://cloud.tencent.com/document/product/1616) | 2025-01-06 01:29:32 |
|
|
248
|
-
| vcube | [音视频终端引擎](https://cloud.tencent.com/document/product/1449) | 2024-12-05 01:28:35 |
|
|
249
|
-
| vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2025-01-08 01:31:23 |
|
|
250
|
-
| vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-07-26 02:26:34 |
|
|
251
|
-
| vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
|
|
252
|
-
| vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-11-18 02:09:13 |
|
|
253
|
-
| vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2025-01-21 01:24:21 |
|
|
254
|
-
| vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-12-19 02:13:39 |
|
|
255
|
-
| vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-10-16 01:32:39 |
|
|
256
|
-
| waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2025-01-06 01:30:59 |
|
|
257
|
-
| wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2024-11-20 02:21:21 |
|
|
258
|
-
| wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2025-01-17 01:30:18 |
|
|
259
|
-
| weilingwith | [微瓴同业开放平台](https://cloud.tencent.com/document/product/1693) | 2024-11-07 02:23:06 |
|
|
260
|
-
| wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
|
|
261
|
-
| yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2024-06-05 02:38:46 |
|
|
262
|
-
| youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
|
|
263
|
-
| yunjing | [主机安全](https://cloud.tencent.com/document/product) | 2020-09-15 08:08:47 |
|
|
264
|
-
| yunsou | [腾讯云搜TCS](https://cloud.tencent.com/document/product/270) | 2024-03-20 01:33:14 |
|