tencentcloud-sdk-nodejs-ssl 4.0.600 → 4.0.602

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.
@@ -1,11 +1,64 @@
1
1
  /**
2
- * ApplyCertificate返回参数结构体
2
+ * 云资源地域列表
3
3
  */
4
- export interface ApplyCertificateResponse {
4
+ export interface ResourceTypeRegions {
5
5
  /**
6
- * 证书 ID。
6
+ * 云资源类型
7
+ */
8
+ ResourceType?: string;
9
+ /**
10
+ * 地域列表
11
+ */
12
+ Regions?: Array<string>;
13
+ }
14
+ /**
15
+ * DescribeHostDdosInstanceList请求参数结构体
16
+ */
17
+ export interface DescribeHostDdosInstanceListRequest {
18
+ /**
19
+ * 待部署的证书ID
20
+ */
21
+ CertificateId: string;
22
+ /**
23
+ * 部署资源类型
24
+ */
25
+ ResourceType: string;
26
+ /**
27
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
28
+ */
29
+ IsCache?: number;
30
+ /**
31
+ * 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
32
+ */
33
+ Filters?: Array<Filter>;
34
+ /**
35
+ * 已部署的证书ID
36
+ */
37
+ OldCertificateId?: string;
38
+ }
39
+ /**
40
+ * CompleteCertificate请求参数结构体
41
+ */
42
+ export interface CompleteCertificateRequest {
43
+ /**
44
+ * 证书ID
7
45
  */
8
46
  CertificateId: string;
47
+ }
48
+ /**
49
+ * DownloadCertificate返回参数结构体
50
+ */
51
+ export interface DownloadCertificateResponse {
52
+ /**
53
+ * ZIP base64 编码内容,base64 解码后可保存为 ZIP 文件。
54
+ 注意:此字段可能返回 null,表示取不到有效值。
55
+ */
56
+ Content?: string;
57
+ /**
58
+ * MIME 类型:application/zip = ZIP 压缩文件。
59
+ 注意:此字段可能返回 null,表示取不到有效值。
60
+ */
61
+ ContentType?: string;
9
62
  /**
10
63
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11
64
  */
@@ -82,217 +135,123 @@ export interface ManagerInfo {
82
135
  StatusInfo: Array<ManagerStatusInfo>;
83
136
  }
84
137
  /**
85
- * CompleteCertificate请求参数结构体
86
- */
87
- export interface CompleteCertificateRequest {
88
- /**
89
- * 证书ID
90
- */
91
- CertificateId: string;
92
- }
93
- /**
94
- * UploadCertificate请求参数结构体
95
- */
96
- export interface UploadCertificateRequest {
97
- /**
98
- * 证书内容。
99
- */
100
- CertificatePublicKey: string;
101
- /**
102
- * 私钥内容,证书类型为 SVR 时必填,为 CA 时可不填。
103
- */
104
- CertificatePrivateKey?: string;
105
- /**
106
- * 证书类型,默认 SVR。CA = CA证书,SVR = 服务器证书。
107
- */
108
- CertificateType?: string;
109
- /**
110
- * 备注名称。
111
- */
112
- Alias?: string;
113
- /**
114
- * 项目 ID。
115
- */
116
- ProjectId?: number;
117
- /**
118
- * 证书用途/证书来源。“CLB,CDN,WAF,LIVE,DDOS”
119
- */
120
- CertificateUse?: string;
121
- /**
122
- * 相同的证书是否允许重复上传
123
- */
124
- Repeatable?: boolean;
125
- }
126
- /**
127
- * DeleteCertificate请求参数结构体
128
- */
129
- export interface DeleteCertificateRequest {
130
- /**
131
- * 证书 ID。
132
- */
133
- CertificateId: string;
134
- }
135
- /**
136
- * DescribeCertificateOperateLogs返回参数结构体
138
+ * DescribeHostDeployRecordDetail返回参数结构体
137
139
  */
138
- export interface DescribeCertificateOperateLogsResponse {
139
- /**
140
- * 当前查询条件日志总数。
141
- */
142
- AllTotal?: number;
143
- /**
144
- * 本次请求返回的日志数量。
145
- */
146
- TotalCount?: number;
140
+ export interface DescribeHostDeployRecordDetailResponse {
147
141
  /**
148
- * 证书操作日志列表。
142
+ * 总数
149
143
  注意:此字段可能返回 null,表示取不到有效值。
150
144
  */
151
- OperateLogs?: Array<OperationLog>;
152
- /**
153
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
154
- */
155
- RequestId?: string;
156
- }
157
- /**
158
- * ModifyCertificateAlias请求参数结构体
159
- */
160
- export interface ModifyCertificateAliasRequest {
161
- /**
162
- * 证书 ID。
163
- */
164
- CertificateId: string;
165
- /**
166
- * 备注名称。
167
- */
168
- Alias?: string;
169
- }
170
- /**
171
- * ModifyCertificatesExpiringNotificationSwitch返回参数结构体
172
- */
173
- export interface ModifyCertificatesExpiringNotificationSwitchResponse {
174
- /**
175
- * 证书ID列表
176
- */
177
- CertificateIds?: Array<string>;
145
+ TotalCount: number;
178
146
  /**
179
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
180
- */
181
- RequestId?: string;
182
- }
183
- /**
184
- * CommitCertificateInformation请求参数结构体
185
- */
186
- export interface CommitCertificateInformationRequest {
147
+ * 证书部署记录列表
148
+ 注意:此字段可能返回 null,表示取不到有效值。
149
+ */
150
+ DeployRecordDetailList: Array<DeployRecordDetail>;
187
151
  /**
188
- * 证书 ID。
189
- */
190
- CertificateId: string;
191
- }
192
- /**
193
- * DownloadCertificate返回参数结构体
194
- */
195
- export interface DownloadCertificateResponse {
152
+ * 成功总数
153
+ 注意:此字段可能返回 null,表示取不到有效值。
154
+ */
155
+ SuccessTotalCount: number;
196
156
  /**
197
- * ZIP base64 编码内容,base64 解码后可保存为 ZIP 文件。
157
+ * 失败总数
198
158
  注意:此字段可能返回 null,表示取不到有效值。
199
159
  */
200
- Content?: string;
160
+ FailedTotalCount: number;
201
161
  /**
202
- * MIME 类型:application/zip = ZIP 压缩文件。
162
+ * 部署中总数
203
163
  注意:此字段可能返回 null,表示取不到有效值。
204
164
  */
205
- ContentType?: string;
165
+ RunningTotalCount: number;
206
166
  /**
207
167
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
208
168
  */
209
169
  RequestId?: string;
210
170
  }
211
171
  /**
212
- * ReplaceCertificate返回参数结构体
172
+ * 部署记录详情
213
173
  */
214
- export interface ReplaceCertificateResponse {
174
+ export interface DeployRecordDetail {
215
175
  /**
216
- * 证书 ID
176
+ * 部署记录详情ID
217
177
  */
218
- CertificateId?: string;
178
+ Id: number;
219
179
  /**
220
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
180
+ * 部署证书ID
221
181
  */
222
- RequestId?: string;
223
- }
224
- /**
225
- * 权益包基本信息
226
- */
227
- export interface PackageInfo {
182
+ CertId: string;
228
183
  /**
229
- * 权益包ID
230
- */
231
- PackageId: string;
184
+ * 原绑定证书ID
185
+ 注意:此字段可能返回 null,表示取不到有效值。
186
+ */
187
+ OldCertId: string;
232
188
  /**
233
- * 权益包内权益点总量。
189
+ * 部署实例ID
234
190
  */
235
- Total: number;
191
+ InstanceId: string;
236
192
  /**
237
- * 权益包内权益点余量。
193
+ * 部署实例名称
238
194
  */
239
- Balance: number;
195
+ InstanceName: string;
240
196
  /**
241
- * 权益包名称。
197
+ * 部署监听器ID
198
+ 注意:此字段可能返回 null,表示取不到有效值。
199
+ */
200
+ ListenerId: string;
201
+ /**
202
+ * 部署域名列表
242
203
  */
243
- Type: string;
204
+ Domains: Array<string>;
244
205
  /**
245
- * 权益点是转入时,来源信息。
206
+ * 部署监听器协议
246
207
  注意:此字段可能返回 null,表示取不到有效值。
247
208
  */
248
- SourceUin: number;
209
+ Protocol: string;
249
210
  /**
250
- * 权益点状态。
211
+ * 部署状态
251
212
  */
252
- Status: string;
213
+ Status: number;
253
214
  /**
254
- * 过期时间。
215
+ * 部署错误信息
216
+ 注意:此字段可能返回 null,表示取不到有效值。
217
+ */
218
+ ErrorMsg: string;
219
+ /**
220
+ * 部署记录详情创建时间
255
221
  */
256
- ExpireTime: string;
222
+ CreateTime: string;
257
223
  /**
258
- * 更新时间。
224
+ * 部署记录详情最后一次更新时间
259
225
  */
260
226
  UpdateTime: string;
261
227
  /**
262
- * 生成时间。
228
+ * 部署监听器名称
263
229
  */
264
- CreateTime: string;
230
+ ListenerName: string;
265
231
  /**
266
- * 来源类型。
232
+ * 是否开启SNI
267
233
  */
268
- SourceType: string;
234
+ SniSwitch: number;
269
235
  /**
270
- * 转移信息。
236
+ * COS存储桶名称
271
237
  注意:此字段可能返回 null,表示取不到有效值。
272
238
  */
273
- TransferOutInfos: Array<PackageTransferOutInfo>;
274
- }
275
- /**
276
- * SubmitAuditManager返回参数结构体
277
- */
278
- export interface SubmitAuditManagerResponse {
239
+ Bucket: string;
279
240
  /**
280
- * 管理人ID
281
- */
282
- ManagerId: number;
241
+ * 命名空间名称
242
+ 注意:此字段可能返回 null,表示取不到有效值。
243
+ */
244
+ Namespace: string;
283
245
  /**
284
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
285
- */
286
- RequestId?: string;
287
- }
288
- /**
289
- * DownloadCertificate请求参数结构体
290
- */
291
- export interface DownloadCertificateRequest {
246
+ * secret名称
247
+ 注意:此字段可能返回 null,表示取不到有效值。
248
+ */
249
+ SecretName: string;
292
250
  /**
293
- * 证书 ID。
294
- */
295
- CertificateId: string;
251
+ * 端口
252
+ 注意:此字段可能返回 null,表示取不到有效值。
253
+ */
254
+ Port?: number;
296
255
  }
297
256
  /**
298
257
  * CancelCertificateOrder请求参数结构体
@@ -555,47 +514,111 @@ export interface CertificateExtra {
555
514
  SMCert?: number;
556
515
  }
557
516
  /**
558
- * 公司信息
517
+ * 根证书
559
518
  */
560
- export interface CompanyInfo {
519
+ export interface RootCertificates {
561
520
  /**
562
- * 公司名称
521
+ * 国密签名证书
522
+ 注意:此字段可能返回 null,表示取不到有效值。
523
+ */
524
+ Sign: string;
525
+ /**
526
+ * 国密加密证书
527
+ 注意:此字段可能返回 null,表示取不到有效值。
528
+ */
529
+ Encrypt: string;
530
+ /**
531
+ * 标准证书
532
+ 注意:此字段可能返回 null,表示取不到有效值。
533
+ */
534
+ Standard: string;
535
+ }
536
+ /**
537
+ * CDN实例详情
538
+ */
539
+ export interface CdnInstanceDetail {
540
+ /**
541
+ * 域名
563
542
  */
564
- CompanyName: string;
543
+ Domain: string;
565
544
  /**
566
- * 公司ID
545
+ * 已部署证书ID
567
546
  */
568
- CompanyId: number;
547
+ CertId: string;
569
548
  /**
570
- * 公司所在国家
549
+ * 域名状态
571
550
  */
572
- CompanyCountry: string;
551
+ Status: string;
552
+ }
553
+ /**
554
+ * VerifyManager请求参数结构体
555
+ */
556
+ export interface VerifyManagerRequest {
573
557
  /**
574
- * 公司所在省份
558
+ * 管理人ID
575
559
  */
576
- CompanyProvince: string;
560
+ ManagerId: number;
561
+ }
562
+ /**
563
+ * VerifyManager返回参数结构体
564
+ */
565
+ export interface VerifyManagerResponse {
577
566
  /**
578
- * 公司所在城市
567
+ * 管理人ID
579
568
  */
580
- CompanyCity: string;
569
+ ManagerId: number;
581
570
  /**
582
- * 公司所在详细地址
571
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
583
572
  */
584
- CompanyAddress: string;
573
+ RequestId?: string;
574
+ }
575
+ /**
576
+ * DescribeCertificateDetail请求参数结构体
577
+ */
578
+ export interface DescribeCertificateDetailRequest {
585
579
  /**
586
- * 公司电话
580
+ * 证书 ID。
587
581
  */
588
- CompanyPhone: string;
582
+ CertificateId: string;
583
+ }
584
+ /**
585
+ * tke namespace详情
586
+ */
587
+ export interface TkeNameSpaceDetail {
589
588
  /**
590
- * 类型
591
- 注意:此字段可能返回 null,表示取不到有效值。
592
- */
593
- IdType?: string;
589
+ * namespace名称
590
+ */
591
+ Name: string;
594
592
  /**
595
- * ID号
596
- 注意:此字段可能返回 null,表示取不到有效值。
597
- */
598
- IdNumber?: string;
593
+ * secret列表
594
+ */
595
+ SecretList: Array<TkeSecretDetail>;
596
+ }
597
+ /**
598
+ * DescribeDeployedResources请求参数结构体
599
+ */
600
+ export interface DescribeDeployedResourcesRequest {
601
+ /**
602
+ * 证书ID
603
+ */
604
+ CertificateIds: Array<string>;
605
+ /**
606
+ * 资源类型:clb,cdn,live,waf,antiddos
607
+ */
608
+ ResourceType: string;
609
+ }
610
+ /**
611
+ * UploadRevokeLetter请求参数结构体
612
+ */
613
+ export interface UploadRevokeLetterRequest {
614
+ /**
615
+ * 证书 ID。
616
+ */
617
+ CertificateId: string;
618
+ /**
619
+ * base64编码后的证书确认函文件,格式应为jpg、jpeg、png、pdf,大小应在1kb与1.4M之间。
620
+ */
621
+ RevokeLetter: string;
599
622
  }
600
623
  /**
601
624
  * DescribeManagers返回参数结构体
@@ -615,612 +638,413 @@ export interface DescribeManagersResponse {
615
638
  RequestId?: string;
616
639
  }
617
640
  /**
618
- * 根证书
641
+ * DescribeCompanies返回参数结构体
619
642
  */
620
- export interface RootCertificates {
643
+ export interface DescribeCompaniesResponse {
621
644
  /**
622
- * 国密签名证书
623
- 注意:此字段可能返回 null,表示取不到有效值。
624
- */
625
- Sign: string;
645
+ * 公司列表
646
+ */
647
+ Companies: Array<CompanyInfo>;
626
648
  /**
627
- * 国密加密证书
628
- 注意:此字段可能返回 null,表示取不到有效值。
629
- */
630
- Encrypt: string;
649
+ * 公司总数
650
+ */
651
+ TotalCount: number;
631
652
  /**
632
- * 标准证书
633
- 注意:此字段可能返回 null,表示取不到有效值。
634
- */
635
- Standard: string;
653
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
654
+ */
655
+ RequestId?: string;
636
656
  }
637
657
  /**
638
- * DescribeCertificate返回参数结构体
658
+ * CheckCertificateChain返回参数结构体
639
659
  */
640
- export interface DescribeCertificateResponse {
660
+ export interface CheckCertificateChainResponse {
641
661
  /**
642
- * 用户 UIN。
643
- 注意:此字段可能返回 null,表示取不到有效值。
644
- */
645
- OwnerUin?: string;
662
+ * true为通过检查,false为未通过检查。
663
+ */
664
+ IsValid?: boolean;
646
665
  /**
647
- * 项目 ID
648
- 注意:此字段可能返回 null,表示取不到有效值。
649
- */
650
- ProjectId?: string;
666
+ * true为可信CA,false为不可信CA
667
+ */
668
+ IsTrustedCA?: boolean;
651
669
  /**
652
- * 证书来源:trustasia = 亚洲诚信,upload = 用户上传。
653
- 注意:此字段可能返回 null,表示取不到有效值。
654
- */
655
- From?: string;
670
+ * 包含证书链中每一段证书的通用名称。
671
+ */
672
+ Chains?: Array<string>;
656
673
  /**
657
- * 证书类型:CA = 客户端证书,SVR = 服务器证书。
658
- 注意:此字段可能返回 null,表示取不到有效值。
659
- */
660
- CertificateType?: string;
674
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
675
+ */
676
+ RequestId?: string;
677
+ }
678
+ /**
679
+ * DescribeHostCosInstanceList返回参数结构体
680
+ */
681
+ export interface DescribeHostCosInstanceListResponse {
661
682
  /**
662
- * 证书套餐类型:1 = GeoTrust DV SSL CA - G3, 2 = TrustAsia TLS RSA CA, 3 = SecureSite 增强型企业版(EV Pro), 4 = SecureSite 增强型(EV), 5 = SecureSite 企业型专业版(OV Pro), 6 = SecureSite 企业型(OV), 7 = SecureSite 企业型(OV)通配符, 8 = Geotrust 增强型(EV), 9 = Geotrust 企业型(OV), 10 = Geotrust 企业型(OV)通配符, 11 = TrustAsia 域名型多域名 SSL 证书, 12 = TrustAsia 域名型(DV)通配符, 13 = TrustAsia 企业型通配符(OV)SSL 证书(D3), 14 = TrustAsia 企业型(OV)SSL 证书(D3), 15 = TrustAsia 企业型多域名 (OV)SSL 证书(D3), 16 = TrustAsia 增强型 (EV)SSL 证书(D3), 17 = TrustAsia 增强型多域名(EV)SSL 证书(D3), 18 = GlobalSign 企业型(OV)SSL 证书, 19 = GlobalSign 企业型通配符 (OV)SSL 证书, 20 = GlobalSign 增强型 (EV)SSL 证书, 21 = TrustAsia 企业型通配符多域名(OV)SSL 证书(D3), 22 = GlobalSign 企业型多域名(OV)SSL 证书, 23 = GlobalSign 企业型通配符多域名(OV)SSL 证书, 24 = GlobalSign 增强型多域名(EV)SSL 证书。
683
+ * COS实例列表
663
684
  注意:此字段可能返回 null,表示取不到有效值。
664
685
  */
665
- PackageType?: string;
686
+ InstanceList: Array<CosInstanceDetail>;
666
687
  /**
667
- * 证书颁发者名称。
688
+ * 总数
668
689
  注意:此字段可能返回 null,表示取不到有效值。
669
690
  */
670
- ProductZhName?: string;
691
+ TotalCount: number;
671
692
  /**
672
- * 域名。
693
+ * 异步刷新总数
673
694
  注意:此字段可能返回 null,表示取不到有效值。
674
695
  */
675
- Domain?: string;
696
+ AsyncTotalNum: number;
676
697
  /**
677
- * 备注名称。
698
+ * 异步刷新当前执行数
678
699
  注意:此字段可能返回 null,表示取不到有效值。
679
700
  */
680
- Alias?: string;
701
+ AsyncOffset: number;
681
702
  /**
682
- * 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函。
683
- 注意:此字段可能返回 null,表示取不到有效值。
684
- */
685
- Status?: number;
703
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
704
+ */
705
+ RequestId?: string;
706
+ }
707
+ /**
708
+ * 云资源配置详情
709
+ */
710
+ export interface CertHostingInfo {
686
711
  /**
687
- * 状态信息。
688
- 注意:此字段可能返回 null,表示取不到有效值。
689
- */
690
- StatusMsg?: string;
712
+ * 证书ID
713
+ */
714
+ CertId: string;
691
715
  /**
692
- * 验证类型:DNS_AUTO = 自动DNS验证,DNS = 手动DNS验证,FILE = 文件验证,EMAIL = 邮件验证。
716
+ * 已替换的新证书ID
693
717
  注意:此字段可能返回 null,表示取不到有效值。
694
718
  */
695
- VerifyType?: string;
719
+ RenewCertId: string;
696
720
  /**
697
- * 漏洞扫描状态。
721
+ * 云资源托管 ,CDN或CLB:部分开启,CDN,CLB:已开启,null:未开启托管
698
722
  注意:此字段可能返回 null,表示取不到有效值。
699
723
  */
700
- VulnerabilityStatus?: string;
724
+ ResourceType: string;
701
725
  /**
702
- * 证书生效时间。
726
+ * 创建时间
703
727
  注意:此字段可能返回 null,表示取不到有效值。
704
728
  */
705
- CertBeginTime?: string;
729
+ CreateTime: string;
730
+ }
731
+ /**
732
+ * 返回参数键为 DvAuths 的内容。
733
+ */
734
+ export interface DvAuths {
706
735
  /**
707
- * 证书失效时间。
736
+ * DV 认证密钥。
708
737
  注意:此字段可能返回 null,表示取不到有效值。
709
738
  */
710
- CertEndTime?: string;
739
+ DvAuthKey: string;
711
740
  /**
712
- * 证书有效期:单位(月)。
741
+ * DV 认证值。
713
742
  注意:此字段可能返回 null,表示取不到有效值。
714
743
  */
715
- ValidityPeriod?: string;
744
+ DvAuthValue: string;
716
745
  /**
717
- * 申请时间。
746
+ * DV 认证值域名。
718
747
  注意:此字段可能返回 null,表示取不到有效值。
719
748
  */
720
- InsertTime?: string;
749
+ DvAuthDomain: string;
721
750
  /**
722
- * 订单 ID。
751
+ * DV 认证值路径。
723
752
  注意:此字段可能返回 null,表示取不到有效值。
724
753
  */
725
- OrderId?: string;
754
+ DvAuthPath: string;
726
755
  /**
727
- * 证书扩展信息。
756
+ * DV 认证子域名,
728
757
  注意:此字段可能返回 null,表示取不到有效值。
729
758
  */
730
- CertificateExtra?: CertificateExtra;
759
+ DvAuthSubDomain: string;
731
760
  /**
732
- * DV 认证信息。
761
+ * DV 认证类型。
733
762
  注意:此字段可能返回 null,表示取不到有效值。
734
763
  */
735
- DvAuthDetail?: DvAuthDetail;
764
+ DvAuthVerifyType: string;
765
+ }
766
+ /**
767
+ * ModifyCertificateAlias请求参数结构体
768
+ */
769
+ export interface ModifyCertificateAliasRequest {
736
770
  /**
737
- * 漏洞扫描评估报告。
738
- 注意:此字段可能返回 null,表示取不到有效值。
739
- */
740
- VulnerabilityReport?: string;
771
+ * 证书 ID。
772
+ */
773
+ CertificateId: string;
741
774
  /**
742
- * 证书 ID。
743
- 注意:此字段可能返回 null,表示取不到有效值。
744
- */
745
- CertificateId?: string;
775
+ * 备注名称。
776
+ */
777
+ Alias?: string;
778
+ }
779
+ /**
780
+ * DescribeManagerDetail请求参数结构体
781
+ */
782
+ export interface DescribeManagerDetailRequest {
746
783
  /**
747
- * 证书类型名称。
748
- 注意:此字段可能返回 null,表示取不到有效值。
749
- */
750
- PackageTypeName?: string;
784
+ * 管理人ID
785
+ */
786
+ ManagerId: number;
751
787
  /**
752
- * 状态描述。
753
- 注意:此字段可能返回 null,表示取不到有效值。
754
- */
755
- StatusName?: string;
788
+ * 分页每页数量
789
+ */
790
+ Limit?: number;
756
791
  /**
757
- * 证书包含的多个域名(包含主域名)。
792
+ * 分页偏移量
793
+ */
794
+ Offset?: number;
795
+ }
796
+ /**
797
+ * CLB监听器规则
798
+ */
799
+ export interface ClbListenerRule {
800
+ /**
801
+ * 规则ID
802
+ */
803
+ LocationId: string;
804
+ /**
805
+ * 规则绑定的域名
806
+ */
807
+ Domain: string;
808
+ /**
809
+ * 规则是否匹配待绑定证书的域名
810
+ */
811
+ IsMatch: boolean;
812
+ /**
813
+ * 规则已绑定的证书数据
758
814
  注意:此字段可能返回 null,表示取不到有效值。
759
815
  */
760
- SubjectAltName?: Array<string>;
816
+ Certificate: Certificate;
761
817
  /**
762
- * 是否为 VIP 客户。
818
+ * 不匹配域名列表
763
819
  注意:此字段可能返回 null,表示取不到有效值。
764
820
  */
765
- IsVip?: boolean;
766
- /**
767
- * 是否为泛域名证书。
768
- 注意:此字段可能返回 null,表示取不到有效值。
769
- */
770
- IsWildcard?: boolean;
771
- /**
772
- * 是否为 DV 版证书。
773
- 注意:此字段可能返回 null,表示取不到有效值。
774
- */
775
- IsDv?: boolean;
776
- /**
777
- * 是否启用了漏洞扫描功能。
778
- 注意:此字段可能返回 null,表示取不到有效值。
779
- */
780
- IsVulnerability?: boolean;
821
+ NoMatchDomains?: Array<string>;
822
+ }
823
+ /**
824
+ * Lighthouse实例
825
+ */
826
+ export interface LighthouseInstanceDetail {
781
827
  /**
782
- * 是否可重颁发证书。
783
- 注意:此字段可能返回 null,表示取不到有效值。
784
- */
785
- RenewAble?: boolean;
828
+ * 实例ID
829
+ */
830
+ InstanceId: string;
786
831
  /**
787
- * 提交的资料信息。
788
- 注意:此字段可能返回 null,表示取不到有效值。
789
- */
790
- SubmittedData?: SubmittedData;
832
+ * 实例名称
833
+ */
834
+ InstanceName: string;
791
835
  /**
792
- * 是否可部署。
793
- 注意:此字段可能返回 null,表示取不到有效值。
794
- */
795
- Deployable?: boolean;
836
+ * IP地址
837
+ */
838
+ IP: Array<string>;
796
839
  /**
797
- * 标签列表
798
- 注意:此字段可能返回 null,表示取不到有效值。
799
- */
800
- Tags?: Array<Tags>;
840
+ * 可选择域名
841
+ */
842
+ Domain: Array<string>;
843
+ }
844
+ /**
845
+ * DescribeCertificateOperateLogs请求参数结构体
846
+ */
847
+ export interface DescribeCertificateOperateLogsRequest {
801
848
  /**
802
- * CA证书的所有加密方式
803
- 注意:此字段可能返回 null,表示取不到有效值。
804
- */
805
- CAEncryptAlgorithms?: Array<string>;
849
+ * 偏移量,默认为0。
850
+ */
851
+ Offset?: number;
806
852
  /**
807
- * CA证书的所有通用名称
808
- 注意:此字段可能返回 null,表示取不到有效值。
809
- */
810
- CACommonNames?: Array<string>;
853
+ * 请求日志数量,默认为20。
854
+ */
855
+ Limit?: number;
811
856
  /**
812
- * CA证书所有的到期时间
813
- 注意:此字段可能返回 null,表示取不到有效值。
814
- */
815
- CAEndTimes?: Array<string>;
857
+ * 开始时间,默认15天前。
858
+ */
859
+ StartTime?: string;
816
860
  /**
817
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
861
+ * 结束时间,默认现在时间。
818
862
  */
819
- RequestId?: string;
863
+ EndTime?: string;
820
864
  }
821
865
  /**
822
- * HostCertificate返回参数结构体
866
+ * CancelCertificateOrder返回参数结构体
823
867
  */
824
- export interface HostCertificateResponse {
868
+ export interface CancelCertificateOrderResponse {
825
869
  /**
826
- * 云资源配置详情
870
+ * 取消订单成功的证书 ID。
827
871
  */
828
- CertHostingInfo: CertHostingInfo;
872
+ CertificateId?: string;
829
873
  /**
830
874
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
831
875
  */
832
876
  RequestId?: string;
833
877
  }
834
878
  /**
835
- * UploadCertificate返回参数结构体
879
+ * ModifyCertificatesExpiringNotificationSwitch返回参数结构体
836
880
  */
837
- export interface UploadCertificateResponse {
881
+ export interface ModifyCertificatesExpiringNotificationSwitchResponse {
838
882
  /**
839
- * 证书 ID
883
+ * 证书ID列表
840
884
  */
841
- CertificateId?: string;
842
- /**
843
- * 重复证书的ID
844
- 注意:此字段可能返回 null,表示取不到有效值。
845
- */
846
- RepeatCertId?: string;
885
+ CertificateIds?: Array<string>;
847
886
  /**
848
887
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
849
888
  */
850
889
  RequestId?: string;
851
890
  }
852
891
  /**
853
- * 权益包转出详情
892
+ * 权益包基本信息
854
893
  */
855
- export interface PackageTransferOutInfo {
894
+ export interface PackageInfo {
856
895
  /**
857
896
  * 权益包ID。
858
897
  */
859
898
  PackageId: string;
860
899
  /**
861
- * 转移码。
900
+ * 权益包内权益点总量。
862
901
  */
863
- TransferCode: string;
902
+ Total: number;
864
903
  /**
865
- * 本次转移点数。
904
+ * 权益包内权益点余量。
866
905
  */
867
- TransferCount: number;
906
+ Balance: number;
868
907
  /**
869
- * 转入的PackageID。
908
+ * 权益包名称。
909
+ */
910
+ Type: string;
911
+ /**
912
+ * 权益点是转入时,来源信息。
870
913
  注意:此字段可能返回 null,表示取不到有效值。
871
914
  */
872
- ReceivePackageId: string;
915
+ SourceUin: number;
873
916
  /**
874
- * 本次转移过期时间。
917
+ * 权益点状态。
875
918
  */
876
- ExpireTime: string;
919
+ Status: string;
877
920
  /**
878
- * 本次转移生成时间。
921
+ * 过期时间。
879
922
  */
880
- CreateTime: string;
923
+ ExpireTime: string;
881
924
  /**
882
- * 本次转移更新时间。
925
+ * 更新时间。
883
926
  */
884
927
  UpdateTime: string;
885
928
  /**
886
- * 转移状态。
929
+ * 生成时间。
887
930
  */
888
- TransferStatus: string;
931
+ CreateTime: string;
889
932
  /**
890
- * 接收者uin。
891
- 注意:此字段可能返回 null,表示取不到有效值。
892
- */
893
- ReceiverUin: number;
933
+ * 来源类型。
934
+ */
935
+ SourceType: string;
894
936
  /**
895
- * 接收时间。
937
+ * 转移信息。
896
938
  注意:此字段可能返回 null,表示取不到有效值。
897
939
  */
898
- ReceiveTime: string;
940
+ TransferOutInfos: Array<PackageTransferOutInfo>;
899
941
  }
900
942
  /**
901
- * 证书操作日志。
943
+ * DescribeHostLiveInstanceList请求参数结构体
902
944
  */
903
- export interface OperationLog {
945
+ export interface DescribeHostLiveInstanceListRequest {
904
946
  /**
905
- * 操作证书动作。
947
+ * 待部署的证书ID
906
948
  */
907
- Action: string;
949
+ CertificateId: string;
908
950
  /**
909
- * 操作时间。
951
+ * 部署资源类型
910
952
  */
911
- CreatedOn: string;
912
- }
913
- /**
914
- * VerifyManager返回参数结构体
915
- */
916
- export interface VerifyManagerResponse {
953
+ ResourceType: string;
917
954
  /**
918
- * 管理人ID
955
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
919
956
  */
920
- ManagerId: number;
957
+ IsCache?: number;
921
958
  /**
922
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
959
+ * 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
923
960
  */
924
- RequestId?: string;
925
- }
926
- /**
927
- * DescribeCertificateDetail请求参数结构体
928
- */
929
- export interface DescribeCertificateDetailRequest {
961
+ Filters?: Array<Filter>;
930
962
  /**
931
- * 证书 ID
963
+ * 已部署的证书ID
932
964
  */
933
- CertificateId: string;
965
+ OldCertificateId?: string;
934
966
  }
935
967
  /**
936
- * 标签
968
+ * DescribeHostDdosInstanceList返回参数结构体
937
969
  */
938
- export interface Tags {
970
+ export interface DescribeHostDdosInstanceListResponse {
939
971
  /**
940
- * 标签键
941
- */
942
- TagKey: string;
972
+ * DDOS实例列表
973
+ 注意:此字段可能返回 null,表示取不到有效值。
974
+ */
975
+ InstanceList?: Array<DdosInstanceDetail>;
943
976
  /**
944
- * 标签值
977
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
945
978
  */
946
- TagValue: string;
979
+ RequestId?: string;
947
980
  }
948
981
  /**
949
- * SubmitAuditManager请求参数结构体
982
+ * 更新记录详情列表
950
983
  */
951
- export interface SubmitAuditManagerRequest {
984
+ export interface UpdateRecordDetails {
952
985
  /**
953
- * 管理人ID
986
+ * 部署资源类型
954
987
  */
955
- ManagerId: number;
956
- }
957
- /**
958
- * DeleteManager请求参数结构体
959
- */
960
- export interface DeleteManagerRequest {
988
+ ResourceType: string;
961
989
  /**
962
- * 管理人ID
990
+ * 部署资源详情列表
963
991
  */
964
- ManagerId: number;
992
+ List: Array<UpdateRecordDetail>;
965
993
  }
966
994
  /**
967
- * ApplyCertificate请求参数结构体
995
+ * DescribeCertificateDetail返回参数结构体
968
996
  */
969
- export interface ApplyCertificateRequest {
997
+ export interface DescribeCertificateDetailResponse {
970
998
  /**
971
- * 验证方式:DNS_AUTO = 自动DNS验证,DNS = 手动DNS验证,FILE = 文件验证。
972
- */
973
- DvAuthMethod: string;
999
+ * 用户 UIN。
1000
+ 注意:此字段可能返回 null,表示取不到有效值。
1001
+ */
1002
+ OwnerUin?: string;
974
1003
  /**
975
- * 域名。
976
- */
977
- DomainName: string;
1004
+ * 项目 ID。
1005
+ 注意:此字段可能返回 null,表示取不到有效值。
1006
+ */
1007
+ ProjectId?: string;
978
1008
  /**
979
- * 项目 ID。
980
- */
981
- ProjectId?: number;
1009
+ * 证书来源:trustasia = 亚洲诚信,upload = 用户上传。
1010
+ 注意:此字段可能返回 null,表示取不到有效值。
1011
+ */
1012
+ From?: string;
982
1013
  /**
983
- * 证书类型,目前仅支持类型2。2 = TrustAsia TLS RSA CA。
984
- */
1014
+ * 证书类型:CA = 客户端证书,SVR = 服务器证书。
1015
+ 注意:此字段可能返回 null,表示取不到有效值。
1016
+ */
1017
+ CertificateType?: string;
1018
+ /**
1019
+ * 证书套餐类型:null = 用户上传证书(没有套餐类型),1 = GeoTrust DV SSL CA - G3, 2 = TrustAsia TLS RSA CA, 3 = SecureSite 增强型企业版(EV Pro), 4 = SecureSite 增强型(EV), 5 = SecureSite 企业型专业版(OV Pro), 6 = SecureSite 企业型(OV), 7 = SecureSite 企业型(OV)通配符, 8 = Geotrust 增强型(EV), 9 = Geotrust 企业型(OV), 10 = Geotrust 企业型(OV)通配符, 11 = TrustAsia 域名型多域名 SSL 证书, 12 = TrustAsia 域名型(DV)通配符, 13 = TrustAsia 企业型通配符(OV)SSL 证书(D3), 14 = TrustAsia 企业型(OV)SSL 证书(D3), 15 = TrustAsia 企业型多域名 (OV)SSL 证书(D3), 16 = TrustAsia 增强型 (EV)SSL 证书(D3), 17 = TrustAsia 增强型多域名(EV)SSL 证书(D3), 18 = GlobalSign 企业型(OV)SSL 证书, 19 = GlobalSign 企业型通配符 (OV)SSL 证书, 20 = GlobalSign 增强型 (EV)SSL 证书, 21 = TrustAsia 企业型通配符多域名(OV)SSL 证书(D3), 22 = GlobalSign 企业型多域名(OV)SSL 证书, 23 = GlobalSign 企业型通配符多域名(OV)SSL 证书, 24 = GlobalSign 增强型多域名(EV)SSL 证书,25 = Wotrus 域名型证书,26 = Wotrus 域名型多域名证书,27 = Wotrus 域名型通配符证书,28 = Wotrus 企业型证书,29 = Wotrus 企业型多域名证书,30 = Wotrus 企业型通配符证书,31 = Wotrus 增强型证书,32 = Wotrus 增强型多域名证书,33 = DNSPod 国密域名型证书,34 = DNSPod 国密域名型多域名证书,35 = DNSPod 国密域名型通配符证书,37 = DNSPod 国密企业型证书,38 = DNSPod 国密企业型多域名证书,39 = DNSPod 国密企业型通配符证书,40 = DNSPod 国密增强型证书,41 = DNSPod 国密增强型多域名证书,42 = TrustAsia 域名型通配符多域名证书。
1020
+ 注意:此字段可能返回 null,表示取不到有效值。
1021
+ */
985
1022
  PackageType?: string;
986
1023
  /**
987
- * 邮箱。
988
- */
989
- ContactEmail?: string;
1024
+ * 颁发者。
1025
+ 注意:此字段可能返回 null,表示取不到有效值。
1026
+ */
1027
+ ProductZhName?: string;
990
1028
  /**
991
- * 手机。
992
- */
993
- ContactPhone?: string;
1029
+ * 域名。
1030
+ 注意:此字段可能返回 null,表示取不到有效值。
1031
+ */
1032
+ Domain?: string;
994
1033
  /**
995
- * 有效期,默认12个月,目前仅支持12个月。
996
- */
997
- ValidityPeriod?: string;
1034
+ * 备注名称。
1035
+ 注意:此字段可能返回 null,表示取不到有效值。
1036
+ */
1037
+ Alias?: string;
998
1038
  /**
999
- * 加密算法,仅支持 RSA。
1000
- */
1001
- CsrEncryptAlgo?: string;
1039
+ * 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。
1040
+ 注意:此字段可能返回 null,表示取不到有效值。
1041
+ */
1042
+ Status?: number;
1002
1043
  /**
1003
- * 密钥对参数,仅支持2048。
1004
- */
1005
- CsrKeyParameter?: string;
1006
- /**
1007
- * CSR 的加密密码。
1008
- */
1009
- CsrKeyPassword?: string;
1010
- /**
1011
- * 备注名称。
1012
- */
1013
- Alias?: string;
1014
- /**
1015
- * 原证书 ID,用于重新申请。
1016
- */
1017
- OldCertificateId?: string;
1018
- /**
1019
- * 权益包ID,用于免费证书扩容包使用
1020
- */
1021
- PackageId?: string;
1022
- /**
1023
- * 签发后是否删除自动域名验证记录, 默认为否;仅域名为DNS_AUTO验证类型支持传参
1024
- */
1025
- DeleteDnsAutoRecord?: boolean;
1026
- }
1027
- /**
1028
- * ReplaceCertificate请求参数结构体
1029
- */
1030
- export interface ReplaceCertificateRequest {
1031
- /**
1032
- * 证书 ID。
1033
- */
1034
- CertificateId: string;
1035
- /**
1036
- * 验证类型:DNS_AUTO = 自动DNS验证(仅支持在腾讯云解析且解析状态正常的域名使用该验证类型),DNS = 手动DNS验证,FILE = 文件验证。
1037
- */
1038
- ValidType: string;
1039
- /**
1040
- * 类型,默认 Original。可选项:Original = 原证书 CSR,Upload = 手动上传,Online = 在线生成。
1041
- */
1042
- CsrType?: string;
1043
- /**
1044
- * CSR 内容。
1045
- */
1046
- CsrContent?: string;
1047
- /**
1048
- * KEY 密码。
1049
- */
1050
- CsrkeyPassword?: string;
1051
- /**
1052
- * 重颁发原因。
1053
- */
1054
- Reason?: string;
1055
- }
1056
- /**
1057
- * UploadRevokeLetter返回参数结构体
1058
- */
1059
- export interface UploadRevokeLetterResponse {
1060
- /**
1061
- * 证书 ID。
1062
- */
1063
- CertificateId: string;
1064
- /**
1065
- * 是否成功。
1066
- */
1067
- IsSuccess: boolean;
1068
- /**
1069
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1070
- */
1071
- RequestId?: string;
1072
- }
1073
- /**
1074
- * DescribeDeployedResources请求参数结构体
1075
- */
1076
- export interface DescribeDeployedResourcesRequest {
1077
- /**
1078
- * 证书ID
1079
- */
1080
- CertificateIds: Array<string>;
1081
- /**
1082
- * 资源类型:clb,cdn,live,waf,antiddos
1083
- */
1084
- ResourceType: string;
1085
- }
1086
- /**
1087
- * CreateCertificate返回参数结构体
1088
- */
1089
- export interface CreateCertificateResponse {
1090
- /**
1091
- * 证书ID列表
1092
- */
1093
- CertificateIds: Array<string>;
1094
- /**
1095
- * 订单号列表
1096
- */
1097
- DealIds: Array<string>;
1098
- /**
1099
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1100
- */
1101
- RequestId?: string;
1102
- }
1103
- /**
1104
- * UploadRevokeLetter请求参数结构体
1105
- */
1106
- export interface UploadRevokeLetterRequest {
1107
- /**
1108
- * 证书 ID。
1109
- */
1110
- CertificateId: string;
1111
- /**
1112
- * base64编码后的证书确认函文件,格式应为jpg、jpeg、png、pdf,大小应在1kb与1.4M之间。
1113
- */
1114
- RevokeLetter: string;
1115
- }
1116
- /**
1117
- * DeleteCertificate返回参数结构体
1118
- */
1119
- export interface DeleteCertificateResponse {
1120
- /**
1121
- * 删除结果(true:删除成功,false:删除失败)
1122
- */
1123
- DeleteResult?: boolean;
1124
- /**
1125
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1126
- */
1127
- RequestId?: string;
1128
- }
1129
- /**
1130
- * RevokeCertificate返回参数结构体
1131
- */
1132
- export interface RevokeCertificateResponse {
1133
- /**
1134
- * 吊销证书域名验证信息。
1135
- 注意:此字段可能返回 null,表示取不到有效值。
1136
- */
1137
- RevokeDomainValidateAuths?: Array<RevokeDomainValidateAuths>;
1138
- /**
1139
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1140
- */
1141
- RequestId?: string;
1142
- }
1143
- /**
1144
- * 资源详情
1145
- */
1146
- export interface DeployedResources {
1147
- /**
1148
- * 证书ID
1149
- */
1150
- CertificateId: string;
1151
- /**
1152
- * 数量
1153
- */
1154
- Count: number;
1155
- /**
1156
- * 资源标识:clb,cdn,live,waf,antiddos
1157
- */
1158
- Type: string;
1159
- /**
1160
- * 不建议使用。字段返回和Resources相同。本字段后续只返回null
1161
- 注意:此字段可能返回 null,表示取不到有效值。
1162
- */
1163
- ResourceIds: Array<string>;
1164
- /**
1165
- * 关联资源ID或关联域名。
1166
- 注意:此字段可能返回 null,表示取不到有效值。
1167
- */
1168
- Resources: Array<string>;
1169
- }
1170
- /**
1171
- * DescribeCertificateDetail返回参数结构体
1172
- */
1173
- export interface DescribeCertificateDetailResponse {
1174
- /**
1175
- * 用户 UIN。
1176
- 注意:此字段可能返回 null,表示取不到有效值。
1177
- */
1178
- OwnerUin?: string;
1179
- /**
1180
- * 项目 ID。
1181
- 注意:此字段可能返回 null,表示取不到有效值。
1182
- */
1183
- ProjectId?: string;
1184
- /**
1185
- * 证书来源:trustasia = 亚洲诚信,upload = 用户上传。
1186
- 注意:此字段可能返回 null,表示取不到有效值。
1187
- */
1188
- From?: string;
1189
- /**
1190
- * 证书类型:CA = 客户端证书,SVR = 服务器证书。
1191
- 注意:此字段可能返回 null,表示取不到有效值。
1192
- */
1193
- CertificateType?: string;
1194
- /**
1195
- * 证书套餐类型:null = 用户上传证书(没有套餐类型),1 = GeoTrust DV SSL CA - G3, 2 = TrustAsia TLS RSA CA, 3 = SecureSite 增强型企业版(EV Pro), 4 = SecureSite 增强型(EV), 5 = SecureSite 企业型专业版(OV Pro), 6 = SecureSite 企业型(OV), 7 = SecureSite 企业型(OV)通配符, 8 = Geotrust 增强型(EV), 9 = Geotrust 企业型(OV), 10 = Geotrust 企业型(OV)通配符, 11 = TrustAsia 域名型多域名 SSL 证书, 12 = TrustAsia 域名型(DV)通配符, 13 = TrustAsia 企业型通配符(OV)SSL 证书(D3), 14 = TrustAsia 企业型(OV)SSL 证书(D3), 15 = TrustAsia 企业型多域名 (OV)SSL 证书(D3), 16 = TrustAsia 增强型 (EV)SSL 证书(D3), 17 = TrustAsia 增强型多域名(EV)SSL 证书(D3), 18 = GlobalSign 企业型(OV)SSL 证书, 19 = GlobalSign 企业型通配符 (OV)SSL 证书, 20 = GlobalSign 增强型 (EV)SSL 证书, 21 = TrustAsia 企业型通配符多域名(OV)SSL 证书(D3), 22 = GlobalSign 企业型多域名(OV)SSL 证书, 23 = GlobalSign 企业型通配符多域名(OV)SSL 证书, 24 = GlobalSign 增强型多域名(EV)SSL 证书,25 = Wotrus 域名型证书,26 = Wotrus 域名型多域名证书,27 = Wotrus 域名型通配符证书,28 = Wotrus 企业型证书,29 = Wotrus 企业型多域名证书,30 = Wotrus 企业型通配符证书,31 = Wotrus 增强型证书,32 = Wotrus 增强型多域名证书,33 = DNSPod 国密域名型证书,34 = DNSPod 国密域名型多域名证书,35 = DNSPod 国密域名型通配符证书,37 = DNSPod 国密企业型证书,38 = DNSPod 国密企业型多域名证书,39 = DNSPod 国密企业型通配符证书,40 = DNSPod 国密增强型证书,41 = DNSPod 国密增强型多域名证书,42 = TrustAsia 域名型通配符多域名证书。
1196
- 注意:此字段可能返回 null,表示取不到有效值。
1197
- */
1198
- PackageType?: string;
1199
- /**
1200
- * 颁发者。
1201
- 注意:此字段可能返回 null,表示取不到有效值。
1202
- */
1203
- ProductZhName?: string;
1204
- /**
1205
- * 域名。
1206
- 注意:此字段可能返回 null,表示取不到有效值。
1207
- */
1208
- Domain?: string;
1209
- /**
1210
- * 备注名称。
1211
- 注意:此字段可能返回 null,表示取不到有效值。
1212
- */
1213
- Alias?: string;
1214
- /**
1215
- * 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。
1216
- 注意:此字段可能返回 null,表示取不到有效值。
1217
- */
1218
- Status?: number;
1219
- /**
1220
- * 状态信息。
1221
- 注意:此字段可能返回 null,表示取不到有效值。
1222
- */
1223
- StatusMsg?: string;
1044
+ * 状态信息。
1045
+ 注意:此字段可能返回 null,表示取不到有效值。
1046
+ */
1047
+ StatusMsg?: string;
1224
1048
  /**
1225
1049
  * 验证类型:DNS_AUTO = 自动DNS验证,DNS = 手动DNS验证,FILE = 文件验证,EMAIL = 邮件验证。
1226
1050
  注意:此字段可能返回 null,表示取不到有效值。
@@ -1377,668 +1201,2542 @@ export interface DescribeCertificateDetailResponse {
1377
1201
  RequestId?: string;
1378
1202
  }
1379
1203
  /**
1380
- * CheckCertificateChain返回参数结构体
1204
+ * DescribeHostDeployRecordDetail请求参数结构体
1381
1205
  */
1382
- export interface CheckCertificateChainResponse {
1206
+ export interface DescribeHostDeployRecordDetailRequest {
1383
1207
  /**
1384
- * true为通过检查,false为未通过检查。
1208
+ * 待部署的证书ID
1385
1209
  */
1386
- IsValid?: boolean;
1210
+ DeployRecordId: string;
1387
1211
  /**
1388
- * true为可信CA,false为不可信CA。
1212
+ * 分页偏移量,从0开始。
1389
1213
  */
1390
- IsTrustedCA?: boolean;
1214
+ Offset?: number;
1391
1215
  /**
1392
- * 包含证书链中每一段证书的通用名称。
1216
+ * 每页数量,默认10。
1393
1217
  */
1394
- Chains?: Array<string>;
1218
+ Limit?: number;
1219
+ }
1220
+ /**
1221
+ * DescribeHostTkeInstanceList返回参数结构体
1222
+ */
1223
+ export interface DescribeHostTkeInstanceListResponse {
1224
+ /**
1225
+ * 总数
1226
+ 注意:此字段可能返回 null,表示取不到有效值。
1227
+ */
1228
+ TotalCount?: number;
1229
+ /**
1230
+ * CLB实例监听器列表
1231
+ 注意:此字段可能返回 null,表示取不到有效值。
1232
+ */
1233
+ InstanceList?: Array<TkeInstanceDetail>;
1234
+ /**
1235
+ * 异步刷新总数
1236
+ 注意:此字段可能返回 null,表示取不到有效值。
1237
+ */
1238
+ AsyncTotalNum?: number;
1239
+ /**
1240
+ * 异步刷新当前执行数
1241
+ 注意:此字段可能返回 null,表示取不到有效值。
1242
+ */
1243
+ AsyncOffset?: number;
1395
1244
  /**
1396
1245
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1397
1246
  */
1398
1247
  RequestId?: string;
1399
1248
  }
1400
1249
  /**
1401
- * ModifyCertificateProject请求参数结构体
1250
+ * 更新记录详情
1402
1251
  */
1403
- export interface ModifyCertificateProjectRequest {
1252
+ export interface UpdateRecordDetail {
1404
1253
  /**
1405
- * 需要修改所属项目的证书 ID 集合,最多100个证书。
1254
+ * 详情记录id
1406
1255
  */
1407
- CertificateIdList: Array<string>;
1256
+ Id: number;
1408
1257
  /**
1409
- * 项目 ID
1258
+ * 新证书ID
1410
1259
  */
1411
- ProjectId: number;
1412
- }
1413
- /**
1414
- * 云资源配置详情
1415
- */
1416
- export interface CertHostingInfo {
1260
+ CertId: string;
1417
1261
  /**
1418
- * 证书ID
1262
+ * 旧证书ID
1419
1263
  */
1420
- CertId: string;
1264
+ OldCertId: string;
1421
1265
  /**
1422
- * 已替换的新证书ID
1266
+ * 部署域名列表
1423
1267
  注意:此字段可能返回 null,表示取不到有效值。
1424
1268
  */
1425
- RenewCertId: string;
1269
+ Domains: Array<string>;
1426
1270
  /**
1427
- * 云资源托管 ,CDN或CLB:部分开启,CDN,CLB:已开启,null:未开启托管
1271
+ * 部署资源类型
1272
+ */
1273
+ ResourceType: string;
1274
+ /**
1275
+ * 部署地域
1428
1276
  注意:此字段可能返回 null,表示取不到有效值。
1429
1277
  */
1430
- ResourceType: string;
1278
+ Region: string;
1431
1279
  /**
1432
- * 创建时间
1280
+ * 部署状态
1281
+ */
1282
+ Status: number;
1283
+ /**
1284
+ * 部署错误信息
1433
1285
  注意:此字段可能返回 null,表示取不到有效值。
1434
1286
  */
1287
+ ErrorMsg: string;
1288
+ /**
1289
+ * 部署时间
1290
+ */
1435
1291
  CreateTime: string;
1436
- }
1437
- /**
1438
- * 返回参数键为 DvAuths 的内容。
1439
- */
1440
- export interface DvAuths {
1441
1292
  /**
1442
- * DV 认证密钥。
1293
+ * 最后一次更新时间
1294
+ */
1295
+ UpdateTime: string;
1296
+ /**
1297
+ * 部署实例ID
1443
1298
  注意:此字段可能返回 null,表示取不到有效值。
1444
1299
  */
1445
- DvAuthKey: string;
1300
+ InstanceId: string;
1446
1301
  /**
1447
- * DV 认证值。
1302
+ * 部署实例名称
1448
1303
  注意:此字段可能返回 null,表示取不到有效值。
1449
1304
  */
1450
- DvAuthValue: string;
1305
+ InstanceName: string;
1451
1306
  /**
1452
- * DV 认证值域名。
1307
+ * 部署监听器ID
1453
1308
  注意:此字段可能返回 null,表示取不到有效值。
1454
1309
  */
1455
- DvAuthDomain: string;
1310
+ ListenerId: string;
1456
1311
  /**
1457
- * DV 认证值路径。
1312
+ * 部署监听器名称
1458
1313
  注意:此字段可能返回 null,表示取不到有效值。
1459
1314
  */
1460
- DvAuthPath: string;
1315
+ ListenerName: string;
1461
1316
  /**
1462
- * DV 认证子域名,
1317
+ * 协议
1463
1318
  注意:此字段可能返回 null,表示取不到有效值。
1464
1319
  */
1465
- DvAuthSubDomain: string;
1320
+ Protocol: string;
1466
1321
  /**
1467
- * DV 认证类型。
1322
+ * 是否开启SNI
1468
1323
  注意:此字段可能返回 null,表示取不到有效值。
1469
1324
  */
1470
- DvAuthVerifyType: string;
1325
+ SniSwitch: number;
1326
+ /**
1327
+ * bucket名称
1328
+ 注意:此字段可能返回 null,表示取不到有效值。
1329
+ */
1330
+ Bucket: string;
1471
1331
  }
1472
1332
  /**
1473
- * HostCertificate请求参数结构体
1333
+ * ApplyCertificate返回参数结构体
1474
1334
  */
1475
- export interface HostCertificateRequest {
1335
+ export interface ApplyCertificateResponse {
1476
1336
  /**
1477
- * 证书ID
1337
+ * 证书 ID
1478
1338
  */
1479
1339
  CertificateId: string;
1480
1340
  /**
1481
- * 资源类型:目前仅限于CLB,CDN
1341
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1482
1342
  */
1483
- ResourceType?: Array<string>;
1343
+ RequestId?: string;
1484
1344
  }
1485
1345
  /**
1486
- * DescribeCertificate请求参数结构体
1346
+ * DescribeHostDeployRecord请求参数结构体
1487
1347
  */
1488
- export interface DescribeCertificateRequest {
1348
+ export interface DescribeHostDeployRecordRequest {
1489
1349
  /**
1490
- * 证书 ID
1350
+ * 待部署的证书ID
1491
1351
  */
1492
1352
  CertificateId: string;
1493
- }
1494
- /**
1495
- * DescribeManagerDetail请求参数结构体
1496
- */
1497
- export interface DescribeManagerDetailRequest {
1498
1353
  /**
1499
- * 管理人ID
1354
+ * 分页偏移量,从0开始。
1500
1355
  */
1501
- ManagerId: number;
1356
+ Offset?: number;
1502
1357
  /**
1503
- * 分页每页数量
1358
+ * 每页数量,默认10。
1504
1359
  */
1505
1360
  Limit?: number;
1506
1361
  /**
1507
- * 分页偏移量
1362
+ * 资源类型
1508
1363
  */
1509
- Offset?: number;
1364
+ ResourceType?: string;
1510
1365
  }
1511
1366
  /**
1512
- * DescribeCompanies返回参数结构体
1367
+ * COS实例详情
1513
1368
  */
1514
- export interface DescribeCompaniesResponse {
1515
- /**
1516
- * 公司列表
1517
- */
1518
- Companies: Array<CompanyInfo>;
1519
- /**
1520
- * 公司总数
1521
- */
1522
- TotalCount: number;
1369
+ export interface CosInstanceDetail {
1523
1370
  /**
1524
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1371
+ * 域名
1525
1372
  */
1526
- RequestId?: string;
1527
- }
1528
- /**
1529
- * 获取证书列表(DescribeCertificate)返回参数键为 DvAuthDetail 的内容。
1530
- */
1531
- export interface DvAuthDetail {
1532
- /**
1533
- * DV 认证密钥。
1534
- 注意:此字段可能返回 null,表示取不到有效值。
1535
- */
1536
- DvAuthKey?: string;
1537
- /**
1538
- * DV 认证值。
1539
- 注意:此字段可能返回 null,表示取不到有效值。
1540
- */
1541
- DvAuthValue?: string;
1373
+ Domain: string;
1542
1374
  /**
1543
- * DV 认证值域名。
1375
+ * 已绑定的证书ID
1544
1376
  注意:此字段可能返回 null,表示取不到有效值。
1545
1377
  */
1546
- DvAuthDomain: string;
1378
+ CertId: string;
1547
1379
  /**
1548
- * DV 认证值路径。
1549
- 注意:此字段可能返回 null,表示取不到有效值。
1380
+ * ENABLED: 域名上线状态
1381
+ DISABLED:域名下线状态
1550
1382
  */
1551
- DvAuthPath: string;
1383
+ Status: string;
1552
1384
  /**
1553
- * DV 认证子域名。
1385
+ * 存储桶名称
1554
1386
  注意:此字段可能返回 null,表示取不到有效值。
1555
1387
  */
1556
- DvAuthKeySubDomain: string;
1388
+ Bucket: string;
1557
1389
  /**
1558
- * DV 认证信息。
1390
+ * 存储桶地域
1559
1391
  注意:此字段可能返回 null,表示取不到有效值。
1560
1392
  */
1561
- DvAuths: Array<DvAuths>;
1393
+ Region: string;
1562
1394
  }
1563
1395
  /**
1564
- * 获取证书列表(DescribeCertificates)返回参数键为 Certificates 下,key为 ProjectInfo 的内容。
1396
+ * UploadConfirmLetter返回参数结构体
1565
1397
  */
1566
- export interface ProjectInfo {
1567
- /**
1568
- * 项目名称。
1569
- 注意:此字段可能返回 null,表示取不到有效值。
1570
- */
1571
- ProjectName: string;
1572
- /**
1573
- * 项目创建用户 UIN。
1574
- 注意:此字段可能返回 null,表示取不到有效值。
1575
- */
1576
- ProjectCreatorUin: number;
1577
- /**
1578
- * 项目创建时间。
1579
- 注意:此字段可能返回 null,表示取不到有效值。
1580
- */
1581
- ProjectCreateTime: string;
1398
+ export interface UploadConfirmLetterResponse {
1582
1399
  /**
1583
- * 项目信息简述。
1584
- 注意:此字段可能返回 null,表示取不到有效值。
1585
- */
1586
- ProjectResume: string;
1400
+ * 证书ID
1401
+ */
1402
+ CertificateId?: string;
1587
1403
  /**
1588
- * 用户 UIN。
1589
- 注意:此字段可能返回 null,表示取不到有效值。
1590
- */
1591
- OwnerUin: number;
1404
+ * 是否成功
1405
+ */
1406
+ IsSuccess?: boolean;
1592
1407
  /**
1593
- * 项目 ID。
1594
- 注意:此字段可能返回 null,表示取不到有效值。
1595
- */
1596
- ProjectId: string;
1408
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
1409
+ */
1410
+ RequestId?: string;
1597
1411
  }
1598
1412
  /**
1599
- * ModifyCertificatesExpiringNotificationSwitch请求参数结构体
1413
+ * DescribeHostUpdateRecordDetail请求参数结构体
1600
1414
  */
1601
- export interface ModifyCertificatesExpiringNotificationSwitchRequest {
1602
- /**
1603
- * 证书ID列表。最多50个
1604
- */
1605
- CertificateIds: Array<string>;
1415
+ export interface DescribeHostUpdateRecordDetailRequest {
1606
1416
  /**
1607
- * 0:不忽略通知。1:忽略通知
1417
+ * 待部署的证书ID
1608
1418
  */
1609
- SwitchStatus: number;
1419
+ DeployRecordId: string;
1610
1420
  }
1611
1421
  /**
1612
- * DescribeDeployedResources返回参数结构体
1422
+ * ReplaceCertificate返回参数结构体
1613
1423
  */
1614
- export interface DescribeDeployedResourcesResponse {
1424
+ export interface ReplaceCertificateResponse {
1615
1425
  /**
1616
- * 资源详情
1426
+ * 证书 ID。
1617
1427
  */
1618
- DeployedResources?: Array<DeployedResources>;
1428
+ CertificateId?: string;
1619
1429
  /**
1620
1430
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1621
1431
  */
1622
1432
  RequestId?: string;
1623
1433
  }
1624
1434
  /**
1625
- * DescribeCertificateOperateLogs请求参数结构体
1435
+ * clb实例详情
1626
1436
  */
1627
- export interface DescribeCertificateOperateLogsRequest {
1628
- /**
1629
- * 偏移量,默认为0。
1630
- */
1631
- Offset?: number;
1437
+ export interface ClbInstanceDetail {
1632
1438
  /**
1633
- * 请求日志数量,默认为20。
1439
+ * CLB实例ID
1634
1440
  */
1635
- Limit?: number;
1441
+ LoadBalancerId: string;
1636
1442
  /**
1637
- * 开始时间,默认15天前。
1443
+ * CLB实例名称
1638
1444
  */
1639
- StartTime?: string;
1445
+ LoadBalancerName: string;
1640
1446
  /**
1641
- * 结束时间,默认现在时间。
1642
- */
1643
- EndTime?: string;
1447
+ * CLB监听器列表
1448
+ 注意:此字段可能返回 null,表示取不到有效值。
1449
+ */
1450
+ Listeners: Array<ClbListener>;
1644
1451
  }
1645
1452
  /**
1646
- * CancelCertificateOrder返回参数结构体
1453
+ * 证书操作日志。
1647
1454
  */
1648
- export interface CancelCertificateOrderResponse {
1455
+ export interface OperationLog {
1649
1456
  /**
1650
- * 取消订单成功的证书 ID。
1457
+ * 操作证书动作。
1651
1458
  */
1652
- CertificateId?: string;
1459
+ Action: string;
1653
1460
  /**
1654
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1461
+ * 操作时间。
1655
1462
  */
1656
- RequestId?: string;
1463
+ CreatedOn: string;
1657
1464
  }
1658
1465
  /**
1659
- * CreateCertificate请求参数结构体
1466
+ * Vod实例
1660
1467
  */
1661
- export interface CreateCertificateRequest {
1662
- /**
1663
- * 证书商品ID,3 = SecureSite 增强型企业版(EV Pro), 4 = SecureSite 增强型(EV), 5 = SecureSite 企业型专业版(OV Pro), 6 = SecureSite 企业型(OV), 7 = SecureSite 企业型(OV)通配符, 8 = Geotrust 增强型(EV), 9 = Geotrust 企业型(OV), 10 = Geotrust 企业型(OV)通配符, 11 = TrustAsia 域名型多域名 SSL 证书, 12 = TrustAsia 域名型(DV)通配符, 13 = TrustAsia 企业型通配符(OV)SSL 证书(D3), 14 = TrustAsia 企业型(OV)SSL 证书(D3), 15 = TrustAsia 企业型多域名 (OV)SSL 证书(D3), 16 = TrustAsia 增强型 (EV)SSL 证书(D3), 17 = TrustAsia 增强型多域名(EV)SSL 证书(D3), 18 = GlobalSign 企业型(OV)SSL 证书, 19 = GlobalSign 企业型通配符 (OV)SSL 证书, 20 = GlobalSign 增强型 (EV)SSL 证书, 21 = TrustAsia 企业型通配符多域名(OV)SSL 证书(D3), 22 = GlobalSign 企业型多域名(OV)SSL 证书, 23 = GlobalSign 企业型通配符多域名(OV)SSL 证书, 24 = GlobalSign 增强型多域名(EV)SSL 证书,25 = Wotrus 域名型证书,26 = Wotrus 域名型多域名证书,27 = Wotrus 域名型通配符证书,28 = Wotrus 企业型证书,29 = Wotrus 企业型多域名证书,30 = Wotrus 企业型通配符证书,31 = Wotrus 增强型证书,32 = Wotrus 增强型多域名证书,33 = DNSPod 国密域名型证书,34 = DNSPod 国密域名型多域名证书,35 = DNSPod 国密域名型通配符证书,37 = DNSPod 国密企业型证书,38 = DNSPod 国密企业型多域名证书,39 = DNSPod 国密企业型通配符证书,40 = DNSPod 国密增强型证书,41 = DNSPod 国密增强型多域名证书,42 = TrustAsia 域名型通配符多域名证书。
1664
- */
1665
- ProductId: number;
1468
+ export interface VodInstanceDetail {
1666
1469
  /**
1667
- * 证书包含的域名数量
1470
+ * 域名
1668
1471
  */
1669
- DomainNum: number;
1472
+ Domain: string;
1670
1473
  /**
1671
- * 证书年限,当前只支持 1 年证书的购买
1474
+ * 证书ID
1672
1475
  */
1673
- TimeSpan: number;
1476
+ CertId: string;
1674
1477
  }
1675
1478
  /**
1676
- * DescribeCertificates返回参数结构体
1479
+ * DescribeCertificate返回参数结构体
1677
1480
  */
1678
- export interface DescribeCertificatesResponse {
1481
+ export interface DescribeCertificateResponse {
1679
1482
  /**
1680
- * 总数量。
1483
+ * 用户 UIN。
1681
1484
  注意:此字段可能返回 null,表示取不到有效值。
1682
1485
  */
1683
- TotalCount?: number;
1486
+ OwnerUin?: string;
1684
1487
  /**
1685
- * 列表。
1488
+ * 项目 ID。
1686
1489
  注意:此字段可能返回 null,表示取不到有效值。
1687
1490
  */
1688
- Certificates?: Array<Certificates>;
1491
+ ProjectId?: string;
1689
1492
  /**
1690
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1691
- */
1692
- RequestId?: string;
1693
- }
1694
- /**
1695
- * CommitCertificateInformation返回参数结构体
1696
- */
1697
- export interface CommitCertificateInformationResponse {
1493
+ * 证书来源:trustasia = 亚洲诚信,upload = 用户上传。
1494
+ 注意:此字段可能返回 null,表示取不到有效值。
1495
+ */
1496
+ From?: string;
1698
1497
  /**
1699
- * CA机构侧订单号。
1700
- */
1701
- OrderId?: string;
1498
+ * 证书类型:CA = 客户端证书,SVR = 服务器证书。
1499
+ 注意:此字段可能返回 null,表示取不到有效值。
1500
+ */
1501
+ CertificateType?: string;
1702
1502
  /**
1703
- * 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。
1704
- */
1705
- Status?: number;
1503
+ * 证书套餐类型:1 = GeoTrust DV SSL CA - G3, 2 = TrustAsia TLS RSA CA, 3 = SecureSite 增强型企业版(EV Pro), 4 = SecureSite 增强型(EV), 5 = SecureSite 企业型专业版(OV Pro), 6 = SecureSite 企业型(OV), 7 = SecureSite 企业型(OV)通配符, 8 = Geotrust 增强型(EV), 9 = Geotrust 企业型(OV), 10 = Geotrust 企业型(OV)通配符, 11 = TrustAsia 域名型多域名 SSL 证书, 12 = TrustAsia 域名型(DV)通配符, 13 = TrustAsia 企业型通配符(OV)SSL 证书(D3), 14 = TrustAsia 企业型(OV)SSL 证书(D3), 15 = TrustAsia 企业型多域名 (OV)SSL 证书(D3), 16 = TrustAsia 增强型 (EV)SSL 证书(D3), 17 = TrustAsia 增强型多域名(EV)SSL 证书(D3), 18 = GlobalSign 企业型(OV)SSL 证书, 19 = GlobalSign 企业型通配符 (OV)SSL 证书, 20 = GlobalSign 增强型 (EV)SSL 证书, 21 = TrustAsia 企业型通配符多域名(OV)SSL 证书(D3), 22 = GlobalSign 企业型多域名(OV)SSL 证书, 23 = GlobalSign 企业型通配符多域名(OV)SSL 证书, 24 = GlobalSign 增强型多域名(EV)SSL 证书。
1504
+ 注意:此字段可能返回 null,表示取不到有效值。
1505
+ */
1506
+ PackageType?: string;
1706
1507
  /**
1707
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1708
- */
1709
- RequestId?: string;
1710
- }
1711
- /**
1712
- * UploadConfirmLetter返回参数结构体
1713
- */
1714
- export interface UploadConfirmLetterResponse {
1508
+ * 证书颁发者名称。
1509
+ 注意:此字段可能返回 null,表示取不到有效值。
1510
+ */
1511
+ ProductZhName?: string;
1715
1512
  /**
1716
- * 证书ID
1717
- */
1718
- CertificateId?: string;
1513
+ * 域名。
1514
+ 注意:此字段可能返回 null,表示取不到有效值。
1515
+ */
1516
+ Domain?: string;
1719
1517
  /**
1720
- * 是否成功
1721
- */
1722
- IsSuccess?: boolean;
1518
+ * 备注名称。
1519
+ 注意:此字段可能返回 null,表示取不到有效值。
1520
+ */
1521
+ Alias?: string;
1522
+ /**
1523
+ * 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函。
1524
+ 注意:此字段可能返回 null,表示取不到有效值。
1525
+ */
1526
+ Status?: number;
1527
+ /**
1528
+ * 状态信息。
1529
+ 注意:此字段可能返回 null,表示取不到有效值。
1530
+ */
1531
+ StatusMsg?: string;
1532
+ /**
1533
+ * 验证类型:DNS_AUTO = 自动DNS验证,DNS = 手动DNS验证,FILE = 文件验证,EMAIL = 邮件验证。
1534
+ 注意:此字段可能返回 null,表示取不到有效值。
1535
+ */
1536
+ VerifyType?: string;
1537
+ /**
1538
+ * 漏洞扫描状态。
1539
+ 注意:此字段可能返回 null,表示取不到有效值。
1540
+ */
1541
+ VulnerabilityStatus?: string;
1542
+ /**
1543
+ * 证书生效时间。
1544
+ 注意:此字段可能返回 null,表示取不到有效值。
1545
+ */
1546
+ CertBeginTime?: string;
1547
+ /**
1548
+ * 证书失效时间。
1549
+ 注意:此字段可能返回 null,表示取不到有效值。
1550
+ */
1551
+ CertEndTime?: string;
1552
+ /**
1553
+ * 证书有效期:单位(月)。
1554
+ 注意:此字段可能返回 null,表示取不到有效值。
1555
+ */
1556
+ ValidityPeriod?: string;
1557
+ /**
1558
+ * 申请时间。
1559
+ 注意:此字段可能返回 null,表示取不到有效值。
1560
+ */
1561
+ InsertTime?: string;
1562
+ /**
1563
+ * 订单 ID。
1564
+ 注意:此字段可能返回 null,表示取不到有效值。
1565
+ */
1566
+ OrderId?: string;
1567
+ /**
1568
+ * 证书扩展信息。
1569
+ 注意:此字段可能返回 null,表示取不到有效值。
1570
+ */
1571
+ CertificateExtra?: CertificateExtra;
1572
+ /**
1573
+ * DV 认证信息。
1574
+ 注意:此字段可能返回 null,表示取不到有效值。
1575
+ */
1576
+ DvAuthDetail?: DvAuthDetail;
1577
+ /**
1578
+ * 漏洞扫描评估报告。
1579
+ 注意:此字段可能返回 null,表示取不到有效值。
1580
+ */
1581
+ VulnerabilityReport?: string;
1582
+ /**
1583
+ * 证书 ID。
1584
+ 注意:此字段可能返回 null,表示取不到有效值。
1585
+ */
1586
+ CertificateId?: string;
1587
+ /**
1588
+ * 证书类型名称。
1589
+ 注意:此字段可能返回 null,表示取不到有效值。
1590
+ */
1591
+ PackageTypeName?: string;
1592
+ /**
1593
+ * 状态描述。
1594
+ 注意:此字段可能返回 null,表示取不到有效值。
1595
+ */
1596
+ StatusName?: string;
1597
+ /**
1598
+ * 证书包含的多个域名(包含主域名)。
1599
+ 注意:此字段可能返回 null,表示取不到有效值。
1600
+ */
1601
+ SubjectAltName?: Array<string>;
1602
+ /**
1603
+ * 是否为 VIP 客户。
1604
+ 注意:此字段可能返回 null,表示取不到有效值。
1605
+ */
1606
+ IsVip?: boolean;
1607
+ /**
1608
+ * 是否为泛域名证书。
1609
+ 注意:此字段可能返回 null,表示取不到有效值。
1610
+ */
1611
+ IsWildcard?: boolean;
1612
+ /**
1613
+ * 是否为 DV 版证书。
1614
+ 注意:此字段可能返回 null,表示取不到有效值。
1615
+ */
1616
+ IsDv?: boolean;
1617
+ /**
1618
+ * 是否启用了漏洞扫描功能。
1619
+ 注意:此字段可能返回 null,表示取不到有效值。
1620
+ */
1621
+ IsVulnerability?: boolean;
1622
+ /**
1623
+ * 是否可重颁发证书。
1624
+ 注意:此字段可能返回 null,表示取不到有效值。
1625
+ */
1626
+ RenewAble?: boolean;
1627
+ /**
1628
+ * 提交的资料信息。
1629
+ 注意:此字段可能返回 null,表示取不到有效值。
1630
+ */
1631
+ SubmittedData?: SubmittedData;
1632
+ /**
1633
+ * 是否可部署。
1634
+ 注意:此字段可能返回 null,表示取不到有效值。
1635
+ */
1636
+ Deployable?: boolean;
1637
+ /**
1638
+ * 标签列表
1639
+ 注意:此字段可能返回 null,表示取不到有效值。
1640
+ */
1641
+ Tags?: Array<Tags>;
1642
+ /**
1643
+ * CA证书的所有加密方式
1644
+ 注意:此字段可能返回 null,表示取不到有效值。
1645
+ */
1646
+ CAEncryptAlgorithms?: Array<string>;
1647
+ /**
1648
+ * CA证书的所有通用名称
1649
+ 注意:此字段可能返回 null,表示取不到有效值。
1650
+ */
1651
+ CACommonNames?: Array<string>;
1652
+ /**
1653
+ * CA证书所有的到期时间
1654
+ 注意:此字段可能返回 null,表示取不到有效值。
1655
+ */
1656
+ CAEndTimes?: Array<string>;
1723
1657
  /**
1724
1658
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1725
1659
  */
1726
1660
  RequestId?: string;
1727
1661
  }
1728
1662
  /**
1729
- * DeleteManager返回参数结构体
1663
+ * 权益包转出详情
1730
1664
  */
1731
- export interface DeleteManagerResponse {
1665
+ export interface PackageTransferOutInfo {
1666
+ /**
1667
+ * 权益包ID。
1668
+ */
1669
+ PackageId: string;
1670
+ /**
1671
+ * 转移码。
1672
+ */
1673
+ TransferCode: string;
1674
+ /**
1675
+ * 本次转移点数。
1676
+ */
1677
+ TransferCount: number;
1678
+ /**
1679
+ * 转入的PackageID。
1680
+ 注意:此字段可能返回 null,表示取不到有效值。
1681
+ */
1682
+ ReceivePackageId: string;
1683
+ /**
1684
+ * 本次转移过期时间。
1685
+ */
1686
+ ExpireTime: string;
1687
+ /**
1688
+ * 本次转移生成时间。
1689
+ */
1690
+ CreateTime: string;
1691
+ /**
1692
+ * 本次转移更新时间。
1693
+ */
1694
+ UpdateTime: string;
1695
+ /**
1696
+ * 转移状态。
1697
+ */
1698
+ TransferStatus: string;
1699
+ /**
1700
+ * 接收者uin。
1701
+ 注意:此字段可能返回 null,表示取不到有效值。
1702
+ */
1703
+ ReceiverUin: number;
1704
+ /**
1705
+ * 接收时间。
1706
+ 注意:此字段可能返回 null,表示取不到有效值。
1707
+ */
1708
+ ReceiveTime: string;
1709
+ }
1710
+ /**
1711
+ * DeleteManager请求参数结构体
1712
+ */
1713
+ export interface DeleteManagerRequest {
1732
1714
  /**
1733
1715
  * 管理人ID
1734
1716
  */
1735
1717
  ManagerId: number;
1718
+ }
1719
+ /**
1720
+ * DescribeHostUpdateRecord返回参数结构体
1721
+ */
1722
+ export interface DescribeHostUpdateRecordResponse {
1723
+ /**
1724
+ * 总数
1725
+ 注意:此字段可能返回 null,表示取不到有效值。
1726
+ */
1727
+ TotalCount: number;
1728
+ /**
1729
+ * 证书部署记录列表
1730
+ 注意:此字段可能返回 null,表示取不到有效值。
1731
+ */
1732
+ DeployRecordList: Array<UpdateRecordInfo>;
1736
1733
  /**
1737
1734
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1738
1735
  */
1739
1736
  RequestId?: string;
1740
1737
  }
1741
1738
  /**
1742
- * VerifyManager请求参数结构体
1739
+ * UpdateCertificateRecordRollback返回参数结构体
1743
1740
  */
1744
- export interface VerifyManagerRequest {
1741
+ export interface UpdateCertificateRecordRollbackResponse {
1745
1742
  /**
1746
- * 管理人ID
1743
+ * 回滚部署记录ID
1747
1744
  */
1748
- ManagerId: number;
1745
+ DeployRecordId: number;
1746
+ /**
1747
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1748
+ */
1749
+ RequestId?: string;
1749
1750
  }
1750
1751
  /**
1751
- * RevokeCertificate请求参数结构体
1752
+ * DescribeHostVodInstanceList请求参数结构体
1752
1753
  */
1753
- export interface RevokeCertificateRequest {
1754
+ export interface DescribeHostVodInstanceListRequest {
1754
1755
  /**
1755
- * 证书 ID
1756
+ * 待部署的证书ID
1756
1757
  */
1757
1758
  CertificateId: string;
1758
1759
  /**
1759
- * 吊销证书原因。
1760
+ * 部署资源类型 vod
1760
1761
  */
1761
- Reason?: string;
1762
+ ResourceType: string;
1763
+ /**
1764
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
1765
+ */
1766
+ IsCache?: number;
1767
+ /**
1768
+ * 过滤参数列表
1769
+ */
1770
+ Filters?: Array<Filter>;
1771
+ /**
1772
+ * 已部署的证书ID
1773
+ */
1774
+ OldCertificateId?: string;
1762
1775
  }
1763
1776
  /**
1764
- * 返回参数键为 RevokeDomainValidateAuths 的内容。
1777
+ * DeployCertificateRecordRetry返回参数结构体
1765
1778
  */
1766
- export interface RevokeDomainValidateAuths {
1779
+ export interface DeployCertificateRecordRetryResponse {
1767
1780
  /**
1768
- * DV 认证值路径。
1781
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1782
+ */
1783
+ RequestId?: string;
1784
+ }
1785
+ /**
1786
+ * 获取证书列表(DescribeCertificate)返回参数键为 DvAuthDetail 的内容。
1787
+ */
1788
+ export interface DvAuthDetail {
1789
+ /**
1790
+ * DV 认证密钥。
1769
1791
  注意:此字段可能返回 null,表示取不到有效值。
1770
1792
  */
1771
- DomainValidateAuthPath: string;
1793
+ DvAuthKey?: string;
1772
1794
  /**
1773
- * DV 认证 KEY。
1795
+ * DV 认证值。
1774
1796
  注意:此字段可能返回 null,表示取不到有效值。
1775
1797
  */
1776
- DomainValidateAuthKey: string;
1798
+ DvAuthValue?: string;
1777
1799
  /**
1778
- * DV 认证值。
1800
+ * DV 认证值域名。
1779
1801
  注意:此字段可能返回 null,表示取不到有效值。
1780
1802
  */
1781
- DomainValidateAuthValue: string;
1803
+ DvAuthDomain: string;
1782
1804
  /**
1783
- * DV 认证域名。
1805
+ * DV 认证值路径。
1784
1806
  注意:此字段可能返回 null,表示取不到有效值。
1785
1807
  */
1786
- DomainValidateAuthDomain: string;
1808
+ DvAuthPath: string;
1809
+ /**
1810
+ * DV 认证子域名。
1811
+ 注意:此字段可能返回 null,表示取不到有效值。
1812
+ */
1813
+ DvAuthKeySubDomain: string;
1814
+ /**
1815
+ * DV 认证信息。
1816
+ 注意:此字段可能返回 null,表示取不到有效值。
1817
+ */
1818
+ DvAuths: Array<DvAuths>;
1819
+ }
1820
+ /**
1821
+ * UpdateCertificateRecordRetry请求参数结构体
1822
+ */
1823
+ export interface UpdateCertificateRecordRetryRequest {
1824
+ /**
1825
+ * 待重试部署记录ID
1826
+ */
1827
+ DeployRecordId?: number;
1828
+ /**
1829
+ * 待重试部署记录详情ID
1830
+ */
1831
+ DeployRecordDetailId?: number;
1832
+ }
1833
+ /**
1834
+ * ddos复杂类型
1835
+ */
1836
+ export interface DdosInstanceDetail {
1837
+ /**
1838
+ * 域名
1839
+ */
1840
+ Domain: string;
1841
+ /**
1842
+ * 实例ID
1843
+ */
1844
+ InstanceId: string;
1845
+ /**
1846
+ * 协议类型
1847
+ */
1848
+ Protocol: string;
1849
+ /**
1850
+ * 证书ID
1851
+ 注意:此字段可能返回 null,表示取不到有效值。
1852
+ */
1853
+ CertId: string;
1854
+ /**
1855
+ * 转发端口
1856
+ */
1857
+ VirtualPort: string;
1858
+ }
1859
+ /**
1860
+ * DescribeHostWafInstanceList返回参数结构体
1861
+ */
1862
+ export interface DescribeHostWafInstanceListResponse {
1863
+ /**
1864
+ * WAF实例列表
1865
+ 注意:此字段可能返回 null,表示取不到有效值。
1866
+ */
1867
+ InstanceList?: Array<LiveInstanceDetail>;
1868
+ /**
1869
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1870
+ */
1871
+ RequestId?: string;
1872
+ }
1873
+ /**
1874
+ * DescribeDeployedResources返回参数结构体
1875
+ */
1876
+ export interface DescribeDeployedResourcesResponse {
1877
+ /**
1878
+ * 资源详情
1879
+ */
1880
+ DeployedResources?: Array<DeployedResources>;
1881
+ /**
1882
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1883
+ */
1884
+ RequestId?: string;
1885
+ }
1886
+ /**
1887
+ * CreateCertificate请求参数结构体
1888
+ */
1889
+ export interface CreateCertificateRequest {
1890
+ /**
1891
+ * 证书商品ID,3 = SecureSite 增强型企业版(EV Pro), 4 = SecureSite 增强型(EV), 5 = SecureSite 企业型专业版(OV Pro), 6 = SecureSite 企业型(OV), 7 = SecureSite 企业型(OV)通配符, 8 = Geotrust 增强型(EV), 9 = Geotrust 企业型(OV), 10 = Geotrust 企业型(OV)通配符, 11 = TrustAsia 域名型多域名 SSL 证书, 12 = TrustAsia 域名型(DV)通配符, 13 = TrustAsia 企业型通配符(OV)SSL 证书(D3), 14 = TrustAsia 企业型(OV)SSL 证书(D3), 15 = TrustAsia 企业型多域名 (OV)SSL 证书(D3), 16 = TrustAsia 增强型 (EV)SSL 证书(D3), 17 = TrustAsia 增强型多域名(EV)SSL 证书(D3), 18 = GlobalSign 企业型(OV)SSL 证书, 19 = GlobalSign 企业型通配符 (OV)SSL 证书, 20 = GlobalSign 增强型 (EV)SSL 证书, 21 = TrustAsia 企业型通配符多域名(OV)SSL 证书(D3), 22 = GlobalSign 企业型多域名(OV)SSL 证书, 23 = GlobalSign 企业型通配符多域名(OV)SSL 证书, 24 = GlobalSign 增强型多域名(EV)SSL 证书,25 = Wotrus 域名型证书,26 = Wotrus 域名型多域名证书,27 = Wotrus 域名型通配符证书,28 = Wotrus 企业型证书,29 = Wotrus 企业型多域名证书,30 = Wotrus 企业型通配符证书,31 = Wotrus 增强型证书,32 = Wotrus 增强型多域名证书,33 = DNSPod 国密域名型证书,34 = DNSPod 国密域名型多域名证书,35 = DNSPod 国密域名型通配符证书,37 = DNSPod 国密企业型证书,38 = DNSPod 国密企业型多域名证书,39 = DNSPod 国密企业型通配符证书,40 = DNSPod 国密增强型证书,41 = DNSPod 国密增强型多域名证书,42 = TrustAsia 域名型通配符多域名证书。
1892
+ */
1893
+ ProductId: number;
1894
+ /**
1895
+ * 证书包含的域名数量
1896
+ */
1897
+ DomainNum: number;
1898
+ /**
1899
+ * 证书年限,当前只支持 1 年证书的购买
1900
+ */
1901
+ TimeSpan: number;
1902
+ }
1903
+ /**
1904
+ * DescribeCertificates返回参数结构体
1905
+ */
1906
+ export interface DescribeCertificatesResponse {
1907
+ /**
1908
+ * 总数量。
1909
+ 注意:此字段可能返回 null,表示取不到有效值。
1910
+ */
1911
+ TotalCount?: number;
1912
+ /**
1913
+ * 列表。
1914
+ 注意:此字段可能返回 null,表示取不到有效值。
1915
+ */
1916
+ Certificates?: Array<Certificates>;
1917
+ /**
1918
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1919
+ */
1920
+ RequestId?: string;
1921
+ }
1922
+ /**
1923
+ * CommitCertificateInformation返回参数结构体
1924
+ */
1925
+ export interface CommitCertificateInformationResponse {
1926
+ /**
1927
+ * CA机构侧订单号。
1928
+ */
1929
+ OrderId?: string;
1930
+ /**
1931
+ * 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。
1932
+ */
1933
+ Status?: number;
1934
+ /**
1935
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1936
+ */
1937
+ RequestId?: string;
1938
+ }
1939
+ /**
1940
+ * DeleteManager返回参数结构体
1941
+ */
1942
+ export interface DeleteManagerResponse {
1943
+ /**
1944
+ * 管理人ID
1945
+ */
1946
+ ManagerId: number;
1947
+ /**
1948
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1949
+ */
1950
+ RequestId?: string;
1951
+ }
1952
+ /**
1953
+ * UploadCertificate返回参数结构体
1954
+ */
1955
+ export interface UploadCertificateResponse {
1956
+ /**
1957
+ * 证书 ID。
1958
+ */
1959
+ CertificateId?: string;
1960
+ /**
1961
+ * 重复证书的ID
1962
+ 注意:此字段可能返回 null,表示取不到有效值。
1963
+ */
1964
+ RepeatCertId?: string;
1965
+ /**
1966
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1967
+ */
1968
+ RequestId?: string;
1969
+ }
1970
+ /**
1971
+ * DeployCertificateInstance返回参数结构体
1972
+ */
1973
+ export interface DeployCertificateInstanceResponse {
1974
+ /**
1975
+ * 云资源部署任务ID
1976
+ 注意:此字段可能返回 null,表示取不到有效值。
1977
+ */
1978
+ DeployRecordId: number;
1979
+ /**
1980
+ * 部署状态,1表示部署成功,0表示部署失败
1981
+ */
1982
+ DeployStatus: number;
1983
+ /**
1984
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1985
+ */
1986
+ RequestId?: string;
1987
+ }
1988
+ /**
1989
+ * live实例详情
1990
+ */
1991
+ export interface LiveInstanceDetail {
1992
+ /**
1993
+ * 域名
1994
+ */
1995
+ Domain: string;
1996
+ /**
1997
+ * 已绑定的证书ID
1998
+ 注意:此字段可能返回 null,表示取不到有效值。
1999
+ */
2000
+ CertId: string;
2001
+ /**
2002
+ * -1:域名未关联证书。
2003
+ 1: 域名https已开启。
2004
+ 0: 域名https已关闭。
2005
+ */
2006
+ Status: number;
2007
+ }
2008
+ /**
2009
+ * SubmitCertificateInformation请求参数结构体
2010
+ */
2011
+ export interface SubmitCertificateInformationRequest {
2012
+ /**
2013
+ * 证书 ID。
2014
+ */
2015
+ CertificateId: string;
2016
+ /**
2017
+ * CSR 生成方式:online = 在线生成, parse = 手动上传。
2018
+ */
2019
+ CsrType?: string;
2020
+ /**
2021
+ * 上传的 CSR 内容。
2022
+ */
2023
+ CsrContent?: string;
2024
+ /**
2025
+ * 绑定证书的域名。
2026
+ */
2027
+ CertificateDomain?: string;
2028
+ /**
2029
+ * 上传的域名数组(多域名证书可以上传)。
2030
+ */
2031
+ DomainList?: Array<string>;
2032
+ /**
2033
+ * 私钥密码(非必填)。
2034
+ */
2035
+ KeyPassword?: string;
2036
+ /**
2037
+ * 公司名称。
2038
+ */
2039
+ OrganizationName?: string;
2040
+ /**
2041
+ * 部门名称。
2042
+ */
2043
+ OrganizationDivision?: string;
2044
+ /**
2045
+ * 公司详细地址。
2046
+ */
2047
+ OrganizationAddress?: string;
2048
+ /**
2049
+ * 国家名称,如中国:CN 。
2050
+ */
2051
+ OrganizationCountry?: string;
2052
+ /**
2053
+ * 公司所在城市。
2054
+ */
2055
+ OrganizationCity?: string;
2056
+ /**
2057
+ * 公司所在省份。
2058
+ */
2059
+ OrganizationRegion?: string;
2060
+ /**
2061
+ * 公司邮编。
2062
+ */
2063
+ PostalCode?: string;
2064
+ /**
2065
+ * 公司座机区号。
2066
+ */
2067
+ PhoneAreaCode?: string;
2068
+ /**
2069
+ * 公司座机号码。
2070
+ */
2071
+ PhoneNumber?: string;
2072
+ /**
2073
+ * 证书验证方式。验证类型:DNS_AUTO = 自动DNS验证(仅支持在腾讯云解析且解析状态正常的域名使用该验证类型),DNS = 手动DNS验证,FILE = 文件验证。
2074
+ */
2075
+ VerifyType?: string;
2076
+ /**
2077
+ * 管理人名。
2078
+ */
2079
+ AdminFirstName?: string;
2080
+ /**
2081
+ * 管理人姓。
2082
+ */
2083
+ AdminLastName?: string;
2084
+ /**
2085
+ * 管理人手机号码。
2086
+ */
2087
+ AdminPhoneNum?: string;
2088
+ /**
2089
+ * 管理人邮箱地址。
2090
+ */
2091
+ AdminEmail?: string;
2092
+ /**
2093
+ * 管理人职位。
2094
+ */
2095
+ AdminPosition?: string;
2096
+ /**
2097
+ * 联系人名。
2098
+ */
2099
+ ContactFirstName?: string;
2100
+ /**
2101
+ * 联系人姓。
2102
+ */
2103
+ ContactLastName?: string;
2104
+ /**
2105
+ * 联系人邮箱地址。
2106
+ */
2107
+ ContactEmail?: string;
2108
+ /**
2109
+ * 联系人手机号码。
2110
+ */
2111
+ ContactNumber?: string;
2112
+ /**
2113
+ * 联系人职位。
2114
+ */
2115
+ ContactPosition?: string;
2116
+ }
2117
+ /**
2118
+ * DescribeCertificates请求参数结构体
2119
+ */
2120
+ export interface DescribeCertificatesRequest {
2121
+ /**
2122
+ * 分页偏移量,从0开始。
2123
+ */
2124
+ Offset?: number;
2125
+ /**
2126
+ * 每页数量,默认20。最大1000
2127
+ */
2128
+ Limit?: number;
2129
+ /**
2130
+ * 搜索关键词,可搜索证书 ID、备注名称、域名。例如: a8xHcaIs。
2131
+ */
2132
+ SearchKey?: string;
2133
+ /**
2134
+ * 证书类型:CA = 客户端证书,SVR = 服务器证书。
2135
+ */
2136
+ CertificateType?: string;
2137
+ /**
2138
+ * 项目 ID。
2139
+ */
2140
+ ProjectId?: number;
2141
+ /**
2142
+ * 按到期时间排序:DESC = 降序, ASC = 升序。
2143
+ */
2144
+ ExpirationSort?: string;
2145
+ /**
2146
+ * 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。
2147
+ */
2148
+ CertificateStatus?: Array<number>;
2149
+ /**
2150
+ * 是否可部署,可选值:1 = 可部署,0 = 不可部署。
2151
+ */
2152
+ Deployable?: number;
2153
+ /**
2154
+ * 是否筛选上传托管的 1筛选,0不筛选
2155
+ */
2156
+ Upload?: number;
2157
+ /**
2158
+ * 是否筛选可续期证书 1筛选 0不筛选
2159
+ */
2160
+ Renew?: number;
2161
+ /**
2162
+ * 筛选来源, upload:上传证书, buy:腾讯云证书, 不传默认全部
2163
+ */
2164
+ FilterSource?: string;
2165
+ /**
2166
+ * 是否筛选国密证书。1:筛选 0:不筛选
2167
+ */
2168
+ IsSM?: number;
2169
+ /**
2170
+ * 筛选证书是否即将过期,传1是筛选,0不筛选
2171
+ */
2172
+ FilterExpiring?: number;
2173
+ }
2174
+ /**
2175
+ * UpdateCertificateRecordRollback请求参数结构体
2176
+ */
2177
+ export interface UpdateCertificateRecordRollbackRequest {
2178
+ /**
2179
+ * 待重试部署记录ID
2180
+ */
2181
+ DeployRecordId?: number;
2182
+ }
2183
+ /**
2184
+ * teo实例详情
2185
+ */
2186
+ export interface TeoInstanceDetail {
2187
+ /**
2188
+ * 域名
2189
+ */
2190
+ Host: string;
2191
+ /**
2192
+ * 证书ID
2193
+ */
2194
+ CertId: string;
2195
+ }
2196
+ /**
2197
+ * DescribeHostClbInstanceList返回参数结构体
2198
+ */
2199
+ export interface DescribeHostClbInstanceListResponse {
2200
+ /**
2201
+ * 总数
2202
+ 注意:此字段可能返回 null,表示取不到有效值。
2203
+ */
2204
+ TotalCount?: number;
2205
+ /**
2206
+ * CLB实例监听器列表
2207
+ 注意:此字段可能返回 null,表示取不到有效值。
2208
+ */
2209
+ InstanceList?: Array<ClbInstanceDetail>;
2210
+ /**
2211
+ * 异步刷新总数
2212
+ 注意:此字段可能返回 null,表示取不到有效值。
2213
+ */
2214
+ AsyncTotalNum?: number;
2215
+ /**
2216
+ * 异步刷新当前执行数
2217
+ 注意:此字段可能返回 null,表示取不到有效值。
2218
+ */
2219
+ AsyncOffset?: number;
2220
+ /**
2221
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2222
+ */
2223
+ RequestId?: string;
2224
+ }
2225
+ /**
2226
+ * RevokeCertificate请求参数结构体
2227
+ */
2228
+ export interface RevokeCertificateRequest {
2229
+ /**
2230
+ * 证书 ID。
2231
+ */
2232
+ CertificateId: string;
2233
+ /**
2234
+ * 吊销证书原因。
2235
+ */
2236
+ Reason?: string;
2237
+ }
2238
+ /**
2239
+ * 预审核信息列表
2240
+ */
2241
+ export interface PreAuditInfo {
2242
+ /**
2243
+ * 证书总年限
2244
+ 注意:此字段可能返回 null,表示取不到有效值。
2245
+ */
2246
+ TotalPeriod: number;
2247
+ /**
2248
+ * 证书当前年限
2249
+ 注意:此字段可能返回 null,表示取不到有效值。
2250
+ */
2251
+ NowPeriod: number;
2252
+ /**
2253
+ * 证书预审核管理人ID
2254
+ 注意:此字段可能返回 null,表示取不到有效值。
2255
+ */
2256
+ ManagerId: string;
2257
+ }
2258
+ /**
2259
+ * DescribeManagerDetail返回参数结构体
2260
+ */
2261
+ export interface DescribeManagerDetailResponse {
2262
+ /**
2263
+ * 状态: audit: 审核中 ok: 审核通过 invalid: 失效 expiring: 即将过期 expired: 已过期
2264
+ */
2265
+ Status: string;
2266
+ /**
2267
+ * 管理人姓名
2268
+ */
2269
+ ManagerFirstName: string;
2270
+ /**
2271
+ * 管理人邮箱
2272
+ */
2273
+ ManagerMail: string;
2274
+ /**
2275
+ * 联系人姓名
2276
+ */
2277
+ ContactFirstName: string;
2278
+ /**
2279
+ * 管理人姓名
2280
+ */
2281
+ ManagerLastName: string;
2282
+ /**
2283
+ * 联系人职位
2284
+ */
2285
+ ContactPosition: string;
2286
+ /**
2287
+ * 管理人职位
2288
+ */
2289
+ ManagerPosition: string;
2290
+ /**
2291
+ * 核验通过时间
2292
+ 注意:此字段可能返回 null,表示取不到有效值。
2293
+ */
2294
+ VerifyTime: string;
2295
+ /**
2296
+ * 创建时间
2297
+ */
2298
+ CreateTime: string;
2299
+ /**
2300
+ * 核验过期时间
2301
+ 注意:此字段可能返回 null,表示取不到有效值。
2302
+ */
2303
+ ExpireTime: string;
2304
+ /**
2305
+ * 联系人姓名
2306
+ */
2307
+ ContactLastName: string;
2308
+ /**
2309
+ * 管理人电话
2310
+ */
2311
+ ManagerPhone: string;
2312
+ /**
2313
+ * 联系人电话
2314
+ */
2315
+ ContactPhone: string;
2316
+ /**
2317
+ * 联系人邮箱
2318
+ */
2319
+ ContactMail: string;
2320
+ /**
2321
+ * 管理人所属部门
2322
+ */
2323
+ ManagerDepartment: string;
2324
+ /**
2325
+ * 管理人所属公司信息
2326
+ */
2327
+ CompanyInfo: CompanyInfo;
2328
+ /**
2329
+ * 管理人公司ID
2330
+ */
2331
+ CompanyId: number;
2332
+ /**
2333
+ * 管理人ID
2334
+ */
2335
+ ManagerId: number;
2336
+ /**
2337
+ * 审核状态详细信息
2338
+ */
2339
+ StatusInfo: Array<ManagerStatusInfo>;
2340
+ /**
2341
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2342
+ */
2343
+ RequestId?: string;
2344
+ }
2345
+ /**
2346
+ * HostCertificate返回参数结构体
2347
+ */
2348
+ export interface HostCertificateResponse {
2349
+ /**
2350
+ * 云资源配置详情
2351
+ */
2352
+ CertHostingInfo: CertHostingInfo;
2353
+ /**
2354
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2355
+ */
2356
+ RequestId?: string;
2357
+ }
2358
+ /**
2359
+ * CLB证书详情
2360
+ */
2361
+ export interface Certificate {
2362
+ /**
2363
+ * 证书ID
2364
+ */
2365
+ CertId: string;
2366
+ /**
2367
+ * 证书绑定的域名
2368
+ */
2369
+ DnsNames: Array<string>;
2370
+ }
2371
+ /**
2372
+ * CommitCertificateInformation请求参数结构体
2373
+ */
2374
+ export interface CommitCertificateInformationRequest {
2375
+ /**
2376
+ * 证书 ID。
2377
+ */
2378
+ CertificateId: string;
2379
+ }
2380
+ /**
2381
+ * SubmitAuditManager返回参数结构体
2382
+ */
2383
+ export interface SubmitAuditManagerResponse {
2384
+ /**
2385
+ * 管理人ID
2386
+ */
2387
+ ManagerId: number;
2388
+ /**
2389
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2390
+ */
2391
+ RequestId?: string;
2392
+ }
2393
+ /**
2394
+ * DownloadCertificate请求参数结构体
2395
+ */
2396
+ export interface DownloadCertificateRequest {
2397
+ /**
2398
+ * 证书 ID。
2399
+ */
2400
+ CertificateId: string;
2401
+ }
2402
+ /**
2403
+ * UpdateCertificateInstance请求参数结构体
2404
+ */
2405
+ export interface UpdateCertificateInstanceRequest {
2406
+ /**
2407
+ * 一键更新新证书ID
2408
+ */
2409
+ CertificateId: string;
2410
+ /**
2411
+ * 一键更新原证书ID
2412
+ */
2413
+ OldCertificateId: string;
2414
+ /**
2415
+ * 需要部署的资源类型
2416
+ */
2417
+ ResourceTypes: Array<string>;
2418
+ /**
2419
+ * 需要部署的地域列表(废弃)
2420
+ */
2421
+ Regions?: Array<string>;
2422
+ /**
2423
+ * 云资源需要部署的地域列表
2424
+ */
2425
+ ResourceTypesRegions?: Array<ResourceTypeRegions>;
2426
+ }
2427
+ /**
2428
+ * ReplaceCertificate请求参数结构体
2429
+ */
2430
+ export interface ReplaceCertificateRequest {
2431
+ /**
2432
+ * 证书 ID。
2433
+ */
2434
+ CertificateId: string;
2435
+ /**
2436
+ * 验证类型:DNS_AUTO = 自动DNS验证(仅支持在腾讯云解析且解析状态正常的域名使用该验证类型),DNS = 手动DNS验证,FILE = 文件验证。
2437
+ */
2438
+ ValidType: string;
2439
+ /**
2440
+ * 类型,默认 Original。可选项:Original = 原证书 CSR,Upload = 手动上传,Online = 在线生成。
2441
+ */
2442
+ CsrType?: string;
2443
+ /**
2444
+ * CSR 内容。
2445
+ */
2446
+ CsrContent?: string;
2447
+ /**
2448
+ * KEY 密码。
2449
+ */
2450
+ CsrkeyPassword?: string;
2451
+ /**
2452
+ * 重颁发原因。
2453
+ */
2454
+ Reason?: string;
2455
+ }
2456
+ /**
2457
+ * 公司信息
2458
+ */
2459
+ export interface CompanyInfo {
2460
+ /**
2461
+ * 公司名称
2462
+ */
2463
+ CompanyName: string;
2464
+ /**
2465
+ * 公司ID
2466
+ */
2467
+ CompanyId: number;
2468
+ /**
2469
+ * 公司所在国家
2470
+ */
2471
+ CompanyCountry: string;
2472
+ /**
2473
+ * 公司所在省份
2474
+ */
2475
+ CompanyProvince: string;
2476
+ /**
2477
+ * 公司所在城市
2478
+ */
2479
+ CompanyCity: string;
2480
+ /**
2481
+ * 公司所在详细地址
2482
+ */
2483
+ CompanyAddress: string;
2484
+ /**
2485
+ * 公司电话
2486
+ */
2487
+ CompanyPhone: string;
2488
+ /**
2489
+ * 类型
2490
+ 注意:此字段可能返回 null,表示取不到有效值。
2491
+ */
2492
+ IdType?: string;
2493
+ /**
2494
+ * ID号
2495
+ 注意:此字段可能返回 null,表示取不到有效值。
2496
+ */
2497
+ IdNumber?: string;
2498
+ }
2499
+ /**
2500
+ * tke secret详情
2501
+ */
2502
+ export interface TkeSecretDetail {
2503
+ /**
2504
+ * secret名称
2505
+ */
2506
+ Name: string;
2507
+ /**
2508
+ * 证书ID
2509
+ */
2510
+ CertId: string;
2511
+ /**
2512
+ * ingress列表
2513
+ */
2514
+ IngressList: Array<TkeIngressDetail>;
2515
+ /**
2516
+ * 和新证书不匹配的域名列表
2517
+ 注意:此字段可能返回 null,表示取不到有效值。
2518
+ */
2519
+ NoMatchDomains: Array<string>;
2520
+ }
2521
+ /**
2522
+ * DescribeHostDeployRecord返回参数结构体
2523
+ */
2524
+ export interface DescribeHostDeployRecordResponse {
2525
+ /**
2526
+ * 总数
2527
+ 注意:此字段可能返回 null,表示取不到有效值。
2528
+ */
2529
+ TotalCount: number;
2530
+ /**
2531
+ * 证书部署记录列表
2532
+ 注意:此字段可能返回 null,表示取不到有效值。
2533
+ */
2534
+ DeployRecordList: Array<DeployRecordInfo>;
2535
+ /**
2536
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2537
+ */
2538
+ RequestId?: string;
2539
+ }
2540
+ /**
2541
+ * 标签
2542
+ */
2543
+ export interface Tags {
2544
+ /**
2545
+ * 标签键
2546
+ */
2547
+ TagKey: string;
2548
+ /**
2549
+ * 标签值
2550
+ */
2551
+ TagValue: string;
2552
+ }
2553
+ /**
2554
+ * SubmitAuditManager请求参数结构体
2555
+ */
2556
+ export interface SubmitAuditManagerRequest {
2557
+ /**
2558
+ * 管理人ID
2559
+ */
2560
+ ManagerId: number;
2561
+ }
2562
+ /**
2563
+ * DescribeHostTkeInstanceList请求参数结构体
2564
+ */
2565
+ export interface DescribeHostTkeInstanceListRequest {
2566
+ /**
2567
+ * 待部署的证书ID
2568
+ */
2569
+ CertificateId: string;
2570
+ /**
2571
+ * 分页偏移量,从0开始。
2572
+ */
2573
+ Offset?: number;
2574
+ /**
2575
+ * 每页数量,默认10。
2576
+ */
2577
+ Limit?: number;
2578
+ /**
2579
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
2580
+ */
2581
+ IsCache?: number;
2582
+ /**
2583
+ * 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
2584
+ */
2585
+ Filters?: Array<Filter>;
2586
+ /**
2587
+ * 是否异步缓存
2588
+ */
2589
+ AsyncCache?: number;
2590
+ /**
2591
+ * 原证书ID
2592
+ */
2593
+ OldCertificateId?: string;
2594
+ }
2595
+ /**
2596
+ * DeployCertificateRecordRollback请求参数结构体
2597
+ */
2598
+ export interface DeployCertificateRecordRollbackRequest {
2599
+ /**
2600
+ * 待重试部署记录ID
2601
+ */
2602
+ DeployRecordId?: number;
2603
+ }
2604
+ /**
2605
+ * DeleteCertificate返回参数结构体
2606
+ */
2607
+ export interface DeleteCertificateResponse {
2608
+ /**
2609
+ * 删除结果(true:删除成功,false:删除失败)
2610
+ */
2611
+ DeleteResult?: boolean;
2612
+ /**
2613
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2614
+ */
2615
+ RequestId?: string;
2616
+ }
2617
+ /**
2618
+ * RevokeCertificate返回参数结构体
2619
+ */
2620
+ export interface RevokeCertificateResponse {
2621
+ /**
2622
+ * 吊销证书域名验证信息。
2623
+ 注意:此字段可能返回 null,表示取不到有效值。
2624
+ */
2625
+ RevokeDomainValidateAuths?: Array<RevokeDomainValidateAuths>;
2626
+ /**
2627
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2628
+ */
2629
+ RequestId?: string;
2630
+ }
2631
+ /**
2632
+ * 资源详情
2633
+ */
2634
+ export interface DeployedResources {
2635
+ /**
2636
+ * 证书ID
2637
+ */
2638
+ CertificateId: string;
2639
+ /**
2640
+ * 数量
2641
+ */
2642
+ Count: number;
2643
+ /**
2644
+ * 资源标识:clb,cdn,live,waf,antiddos
2645
+ */
2646
+ Type: string;
2647
+ /**
2648
+ * 不建议使用。字段返回和Resources相同。本字段后续只返回null
2649
+ 注意:此字段可能返回 null,表示取不到有效值。
2650
+ */
2651
+ ResourceIds: Array<string>;
2652
+ /**
2653
+ * 关联资源ID或关联域名。
2654
+ 注意:此字段可能返回 null,表示取不到有效值。
2655
+ */
2656
+ Resources: Array<string>;
2657
+ }
2658
+ /**
2659
+ * ModifyCertificateProject请求参数结构体
2660
+ */
2661
+ export interface ModifyCertificateProjectRequest {
2662
+ /**
2663
+ * 需要修改所属项目的证书 ID 集合,最多100个证书。
2664
+ */
2665
+ CertificateIdList: Array<string>;
2666
+ /**
2667
+ * 项目 ID。
2668
+ */
2669
+ ProjectId: number;
2670
+ }
2671
+ /**
2672
+ * DescribeCertificate请求参数结构体
2673
+ */
2674
+ export interface DescribeCertificateRequest {
2675
+ /**
2676
+ * 证书 ID。
2677
+ */
2678
+ CertificateId: string;
2679
+ }
2680
+ /**
2681
+ * DescribeHostVodInstanceList返回参数结构体
2682
+ */
2683
+ export interface DescribeHostVodInstanceListResponse {
2684
+ /**
2685
+ * Vod实例列表
2686
+ 注意:此字段可能返回 null,表示取不到有效值。
2687
+ */
2688
+ InstanceList?: Array<VodInstanceDetail>;
2689
+ /**
2690
+ * 总数
2691
+ 注意:此字段可能返回 null,表示取不到有效值。
2692
+ */
2693
+ TotalCount?: number;
2694
+ /**
2695
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2696
+ */
2697
+ RequestId?: string;
2698
+ }
2699
+ /**
2700
+ * ModifyCertificatesExpiringNotificationSwitch请求参数结构体
2701
+ */
2702
+ export interface ModifyCertificatesExpiringNotificationSwitchRequest {
2703
+ /**
2704
+ * 证书ID列表。最多50个
2705
+ */
2706
+ CertificateIds: Array<string>;
2707
+ /**
2708
+ * 0:不忽略通知。1:忽略通知
2709
+ */
2710
+ SwitchStatus: number;
2711
+ }
2712
+ /**
2713
+ * 过滤参数列表
2714
+ */
2715
+ export interface Filter {
2716
+ /**
2717
+ * 过滤参数key
2718
+ */
2719
+ FilterKey: string;
2720
+ /**
2721
+ * 过滤参数值
2722
+ */
2723
+ FilterValue: string;
2724
+ }
2725
+ /**
2726
+ * 返回参数键为 RevokeDomainValidateAuths 的内容。
2727
+ */
2728
+ export interface RevokeDomainValidateAuths {
2729
+ /**
2730
+ * DV 认证值路径。
2731
+ 注意:此字段可能返回 null,表示取不到有效值。
2732
+ */
2733
+ DomainValidateAuthPath: string;
2734
+ /**
2735
+ * DV 认证 KEY。
2736
+ 注意:此字段可能返回 null,表示取不到有效值。
2737
+ */
2738
+ DomainValidateAuthKey: string;
2739
+ /**
2740
+ * DV 认证值。
2741
+ 注意:此字段可能返回 null,表示取不到有效值。
2742
+ */
2743
+ DomainValidateAuthValue: string;
2744
+ /**
2745
+ * DV 认证域名。
2746
+ 注意:此字段可能返回 null,表示取不到有效值。
2747
+ */
2748
+ DomainValidateAuthDomain: string;
2749
+ }
2750
+ /**
2751
+ * DescribeHostUpdateRecordDetail返回参数结构体
2752
+ */
2753
+ export interface DescribeHostUpdateRecordDetailResponse {
2754
+ /**
2755
+ * 总数
2756
+ 注意:此字段可能返回 null,表示取不到有效值。
2757
+ */
2758
+ TotalCount: number;
2759
+ /**
2760
+ * 证书部署记录列表
2761
+ 注意:此字段可能返回 null,表示取不到有效值。
2762
+ */
2763
+ RecordDetailList: Array<UpdateRecordDetails>;
2764
+ /**
2765
+ * 成功总数
2766
+ 注意:此字段可能返回 null,表示取不到有效值。
2767
+ */
2768
+ SuccessTotalCount: number;
2769
+ /**
2770
+ * 失败总数
2771
+ 注意:此字段可能返回 null,表示取不到有效值。
2772
+ */
2773
+ FailedTotalCount: number;
2774
+ /**
2775
+ * 部署中总数
2776
+ 注意:此字段可能返回 null,表示取不到有效值。
2777
+ */
2778
+ RunningTotalCount: number;
2779
+ /**
2780
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2781
+ */
2782
+ RequestId?: string;
2783
+ }
2784
+ /**
2785
+ * DescribeHostUpdateRecord请求参数结构体
2786
+ */
2787
+ export interface DescribeHostUpdateRecordRequest {
2788
+ /**
2789
+ * 分页偏移量,从0开始。
2790
+ */
2791
+ Offset?: number;
2792
+ /**
2793
+ * 每页数量,默认10。
2794
+ */
2795
+ Limit?: number;
2796
+ /**
2797
+ * 新证书ID
2798
+ */
2799
+ CertificateId?: string;
2800
+ /**
2801
+ * 原证书ID
2802
+ */
2803
+ OldCertificateId?: string;
2804
+ }
2805
+ /**
2806
+ * DescribeHostClbInstanceList请求参数结构体
2807
+ */
2808
+ export interface DescribeHostClbInstanceListRequest {
2809
+ /**
2810
+ * 待部署的证书ID
2811
+ */
2812
+ CertificateId: string;
2813
+ /**
2814
+ * 分页偏移量,从0开始。
2815
+ */
2816
+ Offset?: number;
2817
+ /**
2818
+ * 每页数量,默认10。
2819
+ */
2820
+ Limit?: number;
2821
+ /**
2822
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
2823
+ */
2824
+ IsCache?: number;
2825
+ /**
2826
+ * 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
2827
+ */
2828
+ Filters?: Array<Filter>;
2829
+ /**
2830
+ * 是否异步缓存
2831
+ */
2832
+ AsyncCache?: number;
2833
+ /**
2834
+ * 原证书ID
2835
+ */
2836
+ OldCertificateId?: string;
2837
+ }
2838
+ /**
2839
+ * CLB实例监听器
2840
+ */
2841
+ export interface ClbListener {
2842
+ /**
2843
+ * 监听器ID
2844
+ */
2845
+ ListenerId: string;
2846
+ /**
2847
+ * 监听器名称
2848
+ */
2849
+ ListenerName: string;
2850
+ /**
2851
+ * 是否开启SNI,1为开启,0为关闭
2852
+ */
2853
+ SniSwitch: number;
2854
+ /**
2855
+ * 监听器协议类型, HTTPS|TCP_SSL
2856
+ */
2857
+ Protocol: string;
2858
+ /**
2859
+ * 监听器绑定的证书数据
2860
+ 注意:此字段可能返回 null,表示取不到有效值。
2861
+ */
2862
+ Certificate: Certificate;
2863
+ /**
2864
+ * 监听器规则列表
2865
+ 注意:此字段可能返回 null,表示取不到有效值。
2866
+ */
2867
+ Rules: Array<ClbListenerRule>;
2868
+ /**
2869
+ * 不匹配域名列表
2870
+ 注意:此字段可能返回 null,表示取不到有效值。
2871
+ */
2872
+ NoMatchDomains?: Array<string>;
2873
+ }
2874
+ /**
2875
+ * DescribeHostLiveInstanceList返回参数结构体
2876
+ */
2877
+ export interface DescribeHostLiveInstanceListResponse {
2878
+ /**
2879
+ * live实例列表
2880
+ 注意:此字段可能返回 null,表示取不到有效值。
2881
+ */
2882
+ InstanceList?: Array<LiveInstanceDetail>;
2883
+ /**
2884
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2885
+ */
2886
+ RequestId?: string;
2887
+ }
2888
+ /**
2889
+ * DescribeHostApiGatewayInstanceList请求参数结构体
2890
+ */
2891
+ export interface DescribeHostApiGatewayInstanceListRequest {
2892
+ /**
2893
+ * 待部署的证书ID
2894
+ */
2895
+ CertificateId: string;
2896
+ /**
2897
+ * 部署资源类型
2898
+ */
2899
+ ResourceType: string;
2900
+ /**
2901
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
2902
+ */
2903
+ IsCache?: number;
2904
+ /**
2905
+ * 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
2906
+ */
2907
+ Filters?: Array<Filter>;
2908
+ /**
2909
+ * 已部署的证书ID
2910
+ */
2911
+ OldCertificateId?: string;
2912
+ }
2913
+ /**
2914
+ * 获取证书列表(DescribeCertificate)返回参数键为 SubmittedData 的内容。
2915
+ */
2916
+ export interface SubmittedData {
2917
+ /**
2918
+ * CSR 类型,(online = 在线生成CSR,parse = 粘贴 CSR)。
2919
+ 注意:此字段可能返回 null,表示取不到有效值。
2920
+ */
2921
+ CsrType?: string;
2922
+ /**
2923
+ * CSR 内容。
2924
+ 注意:此字段可能返回 null,表示取不到有效值。
2925
+ */
2926
+ CsrContent?: string;
2927
+ /**
2928
+ * 域名信息。
2929
+ 注意:此字段可能返回 null,表示取不到有效值。
2930
+ */
2931
+ CertificateDomain?: string;
2932
+ /**
2933
+ * DNS 信息。
2934
+ 注意:此字段可能返回 null,表示取不到有效值。
2935
+ */
2936
+ DomainList?: Array<string>;
2937
+ /**
2938
+ * 私钥密码。
2939
+ 注意:此字段可能返回 null,表示取不到有效值。
2940
+ */
2941
+ KeyPassword?: string;
2942
+ /**
2943
+ * 企业或单位名称。
2944
+ 注意:此字段可能返回 null,表示取不到有效值。
2945
+ */
2946
+ OrganizationName?: string;
2947
+ /**
2948
+ * 部门。
2949
+ 注意:此字段可能返回 null,表示取不到有效值。
2950
+ */
2951
+ OrganizationDivision?: string;
2952
+ /**
2953
+ * 地址。
2954
+ 注意:此字段可能返回 null,表示取不到有效值。
2955
+ */
2956
+ OrganizationAddress?: string;
2957
+ /**
2958
+ * 国家。
2959
+ 注意:此字段可能返回 null,表示取不到有效值。
2960
+ */
2961
+ OrganizationCountry?: string;
2962
+ /**
2963
+ * 市。
2964
+ 注意:此字段可能返回 null,表示取不到有效值。
2965
+ */
2966
+ OrganizationCity?: string;
2967
+ /**
2968
+ * 省。
2969
+ 注意:此字段可能返回 null,表示取不到有效值。
2970
+ */
2971
+ OrganizationRegion?: string;
2972
+ /**
2973
+ * 邮政编码。
2974
+ 注意:此字段可能返回 null,表示取不到有效值。
2975
+ */
2976
+ PostalCode?: string;
2977
+ /**
2978
+ * 座机区号。
2979
+ 注意:此字段可能返回 null,表示取不到有效值。
2980
+ */
2981
+ PhoneAreaCode?: string;
2982
+ /**
2983
+ * 座机号码。
2984
+ 注意:此字段可能返回 null,表示取不到有效值。
2985
+ */
2986
+ PhoneNumber?: string;
2987
+ /**
2988
+ * 管理员名。
2989
+ 注意:此字段可能返回 null,表示取不到有效值。
2990
+ */
2991
+ AdminFirstName?: string;
2992
+ /**
2993
+ * 管理员姓。
2994
+ 注意:此字段可能返回 null,表示取不到有效值。
2995
+ */
2996
+ AdminLastName?: string;
2997
+ /**
2998
+ * 管理员电话号码。
2999
+ 注意:此字段可能返回 null,表示取不到有效值。
3000
+ */
3001
+ AdminPhoneNum?: string;
3002
+ /**
3003
+ * 管理员邮箱地址。
3004
+ 注意:此字段可能返回 null,表示取不到有效值。
3005
+ */
3006
+ AdminEmail?: string;
3007
+ /**
3008
+ * 管理员职位。
3009
+ 注意:此字段可能返回 null,表示取不到有效值。
3010
+ */
3011
+ AdminPosition?: string;
3012
+ /**
3013
+ * 联系人名。
3014
+ 注意:此字段可能返回 null,表示取不到有效值。
3015
+ */
3016
+ ContactFirstName?: string;
3017
+ /**
3018
+ * 联系人姓。
3019
+ 注意:此字段可能返回 null,表示取不到有效值。
3020
+ */
3021
+ ContactLastName?: string;
3022
+ /**
3023
+ * 联系人电话号码。
3024
+ 注意:此字段可能返回 null,表示取不到有效值。
3025
+ */
3026
+ ContactNumber?: string;
3027
+ /**
3028
+ * 联系人邮箱地址,
3029
+ 注意:此字段可能返回 null,表示取不到有效值。
3030
+ */
3031
+ ContactEmail?: string;
3032
+ /**
3033
+ * 联系人职位。
3034
+ 注意:此字段可能返回 null,表示取不到有效值。
3035
+ */
3036
+ ContactPosition?: string;
3037
+ /**
3038
+ * 验证类型。
3039
+ 注意:此字段可能返回 null,表示取不到有效值。
3040
+ */
3041
+ VerifyType?: string;
3042
+ }
3043
+ /**
3044
+ * DescribeCompanies请求参数结构体
3045
+ */
3046
+ export interface DescribeCompaniesRequest {
3047
+ /**
3048
+ * 分页偏移量
3049
+ */
3050
+ Offset?: number;
3051
+ /**
3052
+ * 分页每页限制数
3053
+ */
3054
+ Limit?: number;
3055
+ /**
3056
+ * 公司ID
3057
+ */
3058
+ CompanyId?: number;
3059
+ }
3060
+ /**
3061
+ * DescribeHostCosInstanceList请求参数结构体
3062
+ */
3063
+ export interface DescribeHostCosInstanceListRequest {
3064
+ /**
3065
+ * 待部署的证书ID
3066
+ */
3067
+ CertificateId: string;
3068
+ /**
3069
+ * 部署资源类型 cos
3070
+ */
3071
+ ResourceType: string;
3072
+ /**
3073
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
3074
+ */
3075
+ IsCache?: number;
3076
+ /**
3077
+ * 过滤参数列表
3078
+ */
3079
+ Filters?: Array<Filter>;
3080
+ }
3081
+ /**
3082
+ * DescribeHostCdnInstanceList返回参数结构体
3083
+ */
3084
+ export interface DescribeHostCdnInstanceListResponse {
3085
+ /**
3086
+ * CDN实例列表
3087
+ 注意:此字段可能返回 null,表示取不到有效值。
3088
+ */
3089
+ InstanceList?: Array<CdnInstanceDetail>;
3090
+ /**
3091
+ * CDN域名总数
3092
+ 注意:此字段可能返回 null,表示取不到有效值。
3093
+ */
3094
+ TotalCount?: number;
3095
+ /**
3096
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3097
+ */
3098
+ RequestId?: string;
3099
+ }
3100
+ /**
3101
+ * HostCertificate请求参数结构体
3102
+ */
3103
+ export interface HostCertificateRequest {
3104
+ /**
3105
+ * 证书ID
3106
+ */
3107
+ CertificateId: string;
3108
+ /**
3109
+ * 资源类型:目前仅限于CLB,CDN
3110
+ */
3111
+ ResourceType?: Array<string>;
3112
+ }
3113
+ /**
3114
+ * tke ingress实例详情
3115
+ */
3116
+ export interface TkeIngressDetail {
3117
+ /**
3118
+ * ingress名称
3119
+ */
3120
+ IngressName: string;
3121
+ /**
3122
+ * tls域名列表
3123
+ */
3124
+ TlsDomains: Array<string>;
3125
+ /**
3126
+ * ingress域名列表
3127
+ */
3128
+ Domains: Array<string>;
3129
+ }
3130
+ /**
3131
+ * DeployCertificateInstance请求参数结构体
3132
+ */
3133
+ export interface DeployCertificateInstanceRequest {
3134
+ /**
3135
+ * 待部署的证书ID
3136
+ */
3137
+ CertificateId: string;
3138
+ /**
3139
+ * 需要部署实例列表
3140
+ */
3141
+ InstanceIdList: Array<string>;
3142
+ /**
3143
+ * 部署的云资源类型
3144
+ */
3145
+ ResourceType?: string;
3146
+ /**
3147
+ * 部署云资源状态:
3148
+ 云直播:
3149
+ -1:域名未关联证书。
3150
+ 1: 域名https已开启。
3151
+ 0: 域名https已关闭。
3152
+ */
3153
+ Status?: number;
3154
+ }
3155
+ /**
3156
+ * apiGateway实例详情
3157
+ */
3158
+ export interface ApiGatewayInstanceDetail {
3159
+ /**
3160
+ * 实例ID
3161
+ */
3162
+ ServiceId: string;
3163
+ /**
3164
+ * 实例名称
3165
+ */
3166
+ ServiceName: string;
3167
+ /**
3168
+ * 域名
3169
+ */
3170
+ Domain: string;
3171
+ /**
3172
+ * 证书ID
3173
+ 注意:此字段可能返回 null,表示取不到有效值。
3174
+ */
3175
+ CertId: string;
3176
+ /**
3177
+ * 使用协议
3178
+ */
3179
+ Protocol: string;
3180
+ }
3181
+ /**
3182
+ * DeleteCertificate请求参数结构体
3183
+ */
3184
+ export interface DeleteCertificateRequest {
3185
+ /**
3186
+ * 证书 ID。
3187
+ */
3188
+ CertificateId: string;
3189
+ }
3190
+ /**
3191
+ * DescribeCertificateOperateLogs返回参数结构体
3192
+ */
3193
+ export interface DescribeCertificateOperateLogsResponse {
3194
+ /**
3195
+ * 当前查询条件日志总数。
3196
+ */
3197
+ AllTotal?: number;
3198
+ /**
3199
+ * 本次请求返回的日志数量。
3200
+ */
3201
+ TotalCount?: number;
3202
+ /**
3203
+ * 证书操作日志列表。
3204
+ 注意:此字段可能返回 null,表示取不到有效值。
3205
+ */
3206
+ OperateLogs?: Array<OperationLog>;
3207
+ /**
3208
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3209
+ */
3210
+ RequestId?: string;
3211
+ }
3212
+ /**
3213
+ * DescribeHostLighthouseInstanceList请求参数结构体
3214
+ */
3215
+ export interface DescribeHostLighthouseInstanceListRequest {
3216
+ /**
3217
+ * 待部署的证书ID
3218
+ */
3219
+ CertificateId: string;
3220
+ /**
3221
+ * 部署资源类型 lighthouse
3222
+ */
3223
+ ResourceType: string;
3224
+ /**
3225
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
3226
+ */
3227
+ IsCache?: number;
3228
+ /**
3229
+ * 过滤参数列表
3230
+ */
3231
+ Filters?: Array<Filter>;
3232
+ }
3233
+ /**
3234
+ * DescribeHostCdnInstanceList请求参数结构体
3235
+ */
3236
+ export interface DescribeHostCdnInstanceListRequest {
3237
+ /**
3238
+ * 待部署的证书ID
3239
+ */
3240
+ CertificateId: string;
3241
+ /**
3242
+ * 部署资源类型
3243
+ */
3244
+ ResourceType: string;
3245
+ /**
3246
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
3247
+ */
3248
+ IsCache?: number;
3249
+ /**
3250
+ * 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
3251
+ */
3252
+ Filters?: Array<Filter>;
3253
+ /**
3254
+ * 原证书ID
3255
+ */
3256
+ OldCertificateId?: string;
3257
+ /**
3258
+ * 分页偏移量,从0开始。
3259
+ */
3260
+ Offset?: number;
3261
+ /**
3262
+ * 每页数量,默认10。
3263
+ */
3264
+ Limit?: number;
3265
+ }
3266
+ /**
3267
+ * DescribeHostTeoInstanceList返回参数结构体
3268
+ */
3269
+ export interface DescribeHostTeoInstanceListResponse {
3270
+ /**
3271
+ * teo实例列表
3272
+ 注意:此字段可能返回 null,表示取不到有效值。
3273
+ */
3274
+ InstanceList?: Array<TeoInstanceDetail>;
3275
+ /**
3276
+ * 总数
3277
+ */
3278
+ TotalCount?: number;
3279
+ /**
3280
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3281
+ */
3282
+ RequestId?: string;
3283
+ }
3284
+ /**
3285
+ * DescribeHostWafInstanceList请求参数结构体
3286
+ */
3287
+ export interface DescribeHostWafInstanceListRequest {
3288
+ /**
3289
+ * 待部署的证书ID
3290
+ */
3291
+ CertificateId: string;
3292
+ /**
3293
+ * 部署资源类型
3294
+ */
3295
+ ResourceType: string;
3296
+ /**
3297
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
3298
+ */
3299
+ IsCache?: number;
3300
+ /**
3301
+ * 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
3302
+ */
3303
+ Filters?: Array<Filter>;
3304
+ /**
3305
+ * 已部署的证书ID
3306
+ */
3307
+ OldCertificateId?: string;
3308
+ }
3309
+ /**
3310
+ * UploadRevokeLetter返回参数结构体
3311
+ */
3312
+ export interface UploadRevokeLetterResponse {
3313
+ /**
3314
+ * 证书 ID。
3315
+ */
3316
+ CertificateId: string;
3317
+ /**
3318
+ * 是否成功。
3319
+ */
3320
+ IsSuccess: boolean;
3321
+ /**
3322
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3323
+ */
3324
+ RequestId?: string;
3325
+ }
3326
+ /**
3327
+ * UpdateCertificateInstance返回参数结构体
3328
+ */
3329
+ export interface UpdateCertificateInstanceResponse {
3330
+ /**
3331
+ * 云资源部署任务ID
3332
+ 注意:此字段可能返回 null,表示取不到有效值。
3333
+ */
3334
+ DeployRecordId?: number;
3335
+ /**
3336
+ * 部署状态,1表示部署成功,0表示部署失败
3337
+ */
3338
+ DeployStatus?: number;
3339
+ /**
3340
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3341
+ */
3342
+ RequestId?: string;
3343
+ }
3344
+ /**
3345
+ * UploadCertificate请求参数结构体
3346
+ */
3347
+ export interface UploadCertificateRequest {
3348
+ /**
3349
+ * 证书内容。
3350
+ */
3351
+ CertificatePublicKey: string;
3352
+ /**
3353
+ * 私钥内容,证书类型为 SVR 时必填,为 CA 时可不填。
3354
+ */
3355
+ CertificatePrivateKey?: string;
3356
+ /**
3357
+ * 证书类型,默认 SVR。CA = CA证书,SVR = 服务器证书。
3358
+ */
3359
+ CertificateType?: string;
3360
+ /**
3361
+ * 备注名称。
3362
+ */
3363
+ Alias?: string;
3364
+ /**
3365
+ * 项目 ID。
3366
+ */
3367
+ ProjectId?: number;
3368
+ /**
3369
+ * 证书用途/证书来源。“CLB,CDN,WAF,LIVE,DDOS”
3370
+ */
3371
+ CertificateUse?: string;
3372
+ /**
3373
+ * 相同的证书是否允许重复上传
3374
+ */
3375
+ Repeatable?: boolean;
3376
+ }
3377
+ /**
3378
+ * ModifyCertificateAlias返回参数结构体
3379
+ */
3380
+ export interface ModifyCertificateAliasResponse {
3381
+ /**
3382
+ * 修改成功的证书 ID。
3383
+ */
3384
+ CertificateId: string;
3385
+ /**
3386
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3387
+ */
3388
+ RequestId?: string;
3389
+ }
3390
+ /**
3391
+ * ApplyCertificate请求参数结构体
3392
+ */
3393
+ export interface ApplyCertificateRequest {
3394
+ /**
3395
+ * 验证方式:DNS_AUTO = 自动DNS验证,DNS = 手动DNS验证,FILE = 文件验证。
3396
+ */
3397
+ DvAuthMethod: string;
3398
+ /**
3399
+ * 域名。
3400
+ */
3401
+ DomainName: string;
3402
+ /**
3403
+ * 项目 ID。
3404
+ */
3405
+ ProjectId?: number;
3406
+ /**
3407
+ * 证书类型,目前仅支持类型2。2 = TrustAsia TLS RSA CA。
3408
+ */
3409
+ PackageType?: string;
3410
+ /**
3411
+ * 邮箱。
3412
+ */
3413
+ ContactEmail?: string;
3414
+ /**
3415
+ * 手机。
3416
+ */
3417
+ ContactPhone?: string;
3418
+ /**
3419
+ * 有效期,默认12个月,目前仅支持12个月。
3420
+ */
3421
+ ValidityPeriod?: string;
3422
+ /**
3423
+ * 加密算法,仅支持 RSA。
3424
+ */
3425
+ CsrEncryptAlgo?: string;
3426
+ /**
3427
+ * 密钥对参数,仅支持2048。
3428
+ */
3429
+ CsrKeyParameter?: string;
3430
+ /**
3431
+ * CSR 的加密密码。
3432
+ */
3433
+ CsrKeyPassword?: string;
3434
+ /**
3435
+ * 备注名称。
3436
+ */
3437
+ Alias?: string;
3438
+ /**
3439
+ * 原证书 ID,用于重新申请。
3440
+ */
3441
+ OldCertificateId?: string;
3442
+ /**
3443
+ * 权益包ID,用于免费证书扩容包使用
3444
+ */
3445
+ PackageId?: string;
3446
+ /**
3447
+ * 签发后是否删除自动域名验证记录, 默认为否;仅域名为DNS_AUTO验证类型支持传参
3448
+ */
3449
+ DeleteDnsAutoRecord?: boolean;
3450
+ }
3451
+ /**
3452
+ * CreateCertificate返回参数结构体
3453
+ */
3454
+ export interface CreateCertificateResponse {
3455
+ /**
3456
+ * 证书ID列表
3457
+ */
3458
+ CertificateIds: Array<string>;
3459
+ /**
3460
+ * 订单号列表
3461
+ */
3462
+ DealIds: Array<string>;
3463
+ /**
3464
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3465
+ */
3466
+ RequestId?: string;
1787
3467
  }
1788
3468
  /**
1789
- * DescribePackages请求参数结构体
3469
+ * 部署记录信息
1790
3470
  */
1791
- export interface DescribePackagesRequest {
3471
+ export interface UpdateRecordInfo {
1792
3472
  /**
1793
- * 偏移量,默认0。
3473
+ * 记录ID
1794
3474
  */
1795
- Offset?: number;
3475
+ Id: number;
1796
3476
  /**
1797
- * 限制数目,默认20。
3477
+ * 新证书ID
1798
3478
  */
1799
- Limit?: number;
3479
+ CertId: string;
1800
3480
  /**
1801
- * 按状态筛选。
3481
+ * 原证书ID
1802
3482
  */
1803
- Status?: string;
3483
+ OldCertId: string;
1804
3484
  /**
1805
- * 按过期时间升序或降序排列。
3485
+ * 部署资源类型列表
1806
3486
  */
1807
- ExpireTime?: string;
3487
+ ResourceTypes: Array<string>;
1808
3488
  /**
1809
- * 按权益包ID搜索。
1810
- */
1811
- PackageId?: string;
3489
+ * 部署地域列表
3490
+ 注意:此字段可能返回 null,表示取不到有效值。
3491
+ */
3492
+ Regions: Array<string>;
1812
3493
  /**
1813
- * 按权益包类型搜索。
3494
+ * 部署状态
1814
3495
  */
1815
- Type?: string;
3496
+ Status: number;
1816
3497
  /**
1817
- * 子产品编号
3498
+ * 部署时间
1818
3499
  */
1819
- Pid?: number;
1820
- }
1821
- /**
1822
- * CheckCertificateChain请求参数结构体
1823
- */
1824
- export interface CheckCertificateChainRequest {
3500
+ CreateTime: string;
1825
3501
  /**
1826
- * 待检查的证书链
3502
+ * 最后一次更新时间
1827
3503
  */
1828
- CertificateChain: string;
3504
+ UpdateTime: string;
1829
3505
  }
1830
3506
  /**
1831
- * ModifyCertificateAlias返回参数结构体
3507
+ * DescribeHostApiGatewayInstanceList返回参数结构体
1832
3508
  */
1833
- export interface ModifyCertificateAliasResponse {
3509
+ export interface DescribeHostApiGatewayInstanceListResponse {
1834
3510
  /**
1835
- * 修改成功的证书 ID。
3511
+ * apiGateway实例列表
3512
+ 注意:此字段可能返回 null,表示取不到有效值。
3513
+ */
3514
+ InstanceList?: Array<ApiGatewayInstanceDetail>;
3515
+ /**
3516
+ * 总数
1836
3517
  */
1837
- CertificateId: string;
3518
+ TotalCount?: number;
1838
3519
  /**
1839
3520
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1840
3521
  */
1841
3522
  RequestId?: string;
1842
3523
  }
1843
3524
  /**
1844
- * UploadConfirmLetter请求参数结构体
3525
+ * DeployCertificateRecordRetry请求参数结构体
1845
3526
  */
1846
- export interface UploadConfirmLetterRequest {
3527
+ export interface DeployCertificateRecordRetryRequest {
1847
3528
  /**
1848
- * 证书ID
3529
+ * 待重试部署记录ID
1849
3530
  */
1850
- CertificateId: string;
3531
+ DeployRecordId?: number;
1851
3532
  /**
1852
- * base64编码后的证书确认函文件,格式应为jpg、jpeg、png、pdf,大小应在1kb与1.4M之间。
3533
+ * 待重试部署记录详情ID
1853
3534
  */
1854
- ConfirmLetter: string;
3535
+ DeployRecordDetailId?: number;
1855
3536
  }
1856
3537
  /**
1857
- * DescribeCompanies请求参数结构体
3538
+ * 获取证书列表(DescribeCertificates)返回参数键为 Certificates 下,key为 ProjectInfo 的内容。
1858
3539
  */
1859
- export interface DescribeCompaniesRequest {
3540
+ export interface ProjectInfo {
1860
3541
  /**
1861
- * 分页偏移量
1862
- */
1863
- Offset?: number;
3542
+ * 项目名称。
3543
+ 注意:此字段可能返回 null,表示取不到有效值。
3544
+ */
3545
+ ProjectName: string;
1864
3546
  /**
1865
- * 分页每页限制数
1866
- */
1867
- Limit?: number;
3547
+ * 项目创建用户 UIN。
3548
+ 注意:此字段可能返回 null,表示取不到有效值。
3549
+ */
3550
+ ProjectCreatorUin: number;
1868
3551
  /**
1869
- * 公司ID
1870
- */
1871
- CompanyId?: number;
3552
+ * 项目创建时间。
3553
+ 注意:此字段可能返回 null,表示取不到有效值。
3554
+ */
3555
+ ProjectCreateTime: string;
3556
+ /**
3557
+ * 项目信息简述。
3558
+ 注意:此字段可能返回 null,表示取不到有效值。
3559
+ */
3560
+ ProjectResume: string;
3561
+ /**
3562
+ * 用户 UIN。
3563
+ 注意:此字段可能返回 null,表示取不到有效值。
3564
+ */
3565
+ OwnerUin: number;
3566
+ /**
3567
+ * 项目 ID。
3568
+ 注意:此字段可能返回 null,表示取不到有效值。
3569
+ */
3570
+ ProjectId: string;
1872
3571
  }
1873
3572
  /**
1874
- * 管理人的四种审核状态
1875
- */
1876
- export declare type ManagerStatusInfo = null;
1877
- /**
1878
- * SubmitCertificateInformation请求参数结构体
3573
+ * DescribeHostTeoInstanceList请求参数结构体
1879
3574
  */
1880
- export interface SubmitCertificateInformationRequest {
3575
+ export interface DescribeHostTeoInstanceListRequest {
1881
3576
  /**
1882
- * 证书 ID
3577
+ * 待部署的证书ID
1883
3578
  */
1884
3579
  CertificateId: string;
1885
3580
  /**
1886
- * CSR 生成方式:online = 在线生成, parse = 手动上传。
1887
- */
1888
- CsrType?: string;
1889
- /**
1890
- * 上传的 CSR 内容。
1891
- */
1892
- CsrContent?: string;
1893
- /**
1894
- * 绑定证书的域名。
1895
- */
1896
- CertificateDomain?: string;
1897
- /**
1898
- * 上传的域名数组(多域名证书可以上传)。
1899
- */
1900
- DomainList?: Array<string>;
1901
- /**
1902
- * 私钥密码(非必填)。
1903
- */
1904
- KeyPassword?: string;
1905
- /**
1906
- * 公司名称。
1907
- */
1908
- OrganizationName?: string;
1909
- /**
1910
- * 部门名称。
3581
+ * 部署资源类型
1911
3582
  */
1912
- OrganizationDivision?: string;
3583
+ ResourceType: string;
1913
3584
  /**
1914
- * 公司详细地址。
3585
+ * 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
1915
3586
  */
1916
- OrganizationAddress?: string;
3587
+ IsCache?: number;
1917
3588
  /**
1918
- * 国家名称,如中国:CN
3589
+ * 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
1919
3590
  */
1920
- OrganizationCountry?: string;
3591
+ Filters?: Array<Filter>;
1921
3592
  /**
1922
- * 公司所在城市。
3593
+ * 已部署的证书ID
1923
3594
  */
1924
- OrganizationCity?: string;
3595
+ OldCertificateId?: string;
3596
+ }
3597
+ /**
3598
+ * tke实例详情
3599
+ */
3600
+ export interface TkeInstanceDetail {
1925
3601
  /**
1926
- * 公司所在省份。
3602
+ * 集群ID
1927
3603
  */
1928
- OrganizationRegion?: string;
3604
+ ClusterId: string;
1929
3605
  /**
1930
- * 公司邮编。
3606
+ * 集群名称
1931
3607
  */
1932
- PostalCode?: string;
3608
+ ClusterName: string;
1933
3609
  /**
1934
- * 公司座机区号。
3610
+ * 集群命名空间列表
1935
3611
  */
1936
- PhoneAreaCode?: string;
3612
+ NamespaceList: Array<TkeNameSpaceDetail>;
3613
+ }
3614
+ /**
3615
+ * UploadConfirmLetter请求参数结构体
3616
+ */
3617
+ export interface UploadConfirmLetterRequest {
1937
3618
  /**
1938
- * 公司座机号码。
3619
+ * 证书ID
1939
3620
  */
1940
- PhoneNumber?: string;
3621
+ CertificateId: string;
1941
3622
  /**
1942
- * 证书验证方式。验证类型:DNS_AUTO = 自动DNS验证(仅支持在腾讯云解析且解析状态正常的域名使用该验证类型),DNS = 手动DNS验证,FILE = 文件验证。
3623
+ * base64编码后的证书确认函文件,格式应为jpg、jpeg、png、pdf,大小应在1kb与1.4M之间。
1943
3624
  */
1944
- VerifyType?: string;
3625
+ ConfirmLetter: string;
3626
+ }
3627
+ /**
3628
+ * SubmitCertificateInformation返回参数结构体
3629
+ */
3630
+ export interface SubmitCertificateInformationResponse {
1945
3631
  /**
1946
- * 管理人名。
3632
+ * 证书 ID。
1947
3633
  */
1948
- AdminFirstName?: string;
3634
+ CertificateId?: string;
1949
3635
  /**
1950
- * 管理人姓。
3636
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1951
3637
  */
1952
- AdminLastName?: string;
3638
+ RequestId?: string;
3639
+ }
3640
+ /**
3641
+ * UpdateCertificateRecordRetry返回参数结构体
3642
+ */
3643
+ export interface UpdateCertificateRecordRetryResponse {
1953
3644
  /**
1954
- * 管理人手机号码。
3645
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1955
3646
  */
1956
- AdminPhoneNum?: string;
3647
+ RequestId?: string;
3648
+ }
3649
+ /**
3650
+ * DescribePackages请求参数结构体
3651
+ */
3652
+ export interface DescribePackagesRequest {
1957
3653
  /**
1958
- * 管理人邮箱地址。
3654
+ * 偏移量,默认0。
1959
3655
  */
1960
- AdminEmail?: string;
3656
+ Offset?: number;
1961
3657
  /**
1962
- * 管理人职位。
3658
+ * 限制数目,默认20。
1963
3659
  */
1964
- AdminPosition?: string;
3660
+ Limit?: number;
1965
3661
  /**
1966
- * 联系人名。
3662
+ * 按状态筛选。
1967
3663
  */
1968
- ContactFirstName?: string;
3664
+ Status?: string;
1969
3665
  /**
1970
- * 联系人姓。
3666
+ * 按过期时间升序或降序排列。
1971
3667
  */
1972
- ContactLastName?: string;
3668
+ ExpireTime?: string;
1973
3669
  /**
1974
- * 联系人邮箱地址。
3670
+ * 按权益包ID搜索。
1975
3671
  */
1976
- ContactEmail?: string;
3672
+ PackageId?: string;
1977
3673
  /**
1978
- * 联系人手机号码。
3674
+ * 按权益包类型搜索。
1979
3675
  */
1980
- ContactNumber?: string;
3676
+ Type?: string;
1981
3677
  /**
1982
- * 联系人职位。
3678
+ * 子产品编号
1983
3679
  */
1984
- ContactPosition?: string;
3680
+ Pid?: number;
1985
3681
  }
1986
3682
  /**
1987
- * DescribeCertificates请求参数结构体
3683
+ * CheckCertificateChain请求参数结构体
1988
3684
  */
1989
- export interface DescribeCertificatesRequest {
1990
- /**
1991
- * 分页偏移量,从0开始。
1992
- */
1993
- Offset?: number;
1994
- /**
1995
- * 每页数量,默认20。最大1000
1996
- */
1997
- Limit?: number;
1998
- /**
1999
- * 搜索关键词,可搜索证书 ID、备注名称、域名。例如: a8xHcaIs。
2000
- */
2001
- SearchKey?: string;
3685
+ export interface CheckCertificateChainRequest {
2002
3686
  /**
2003
- * 证书类型:CA = 客户端证书,SVR = 服务器证书。
3687
+ * 待检查的证书链
2004
3688
  */
2005
- CertificateType?: string;
3689
+ CertificateChain: string;
3690
+ }
3691
+ /**
3692
+ * DeployCertificateRecordRollback返回参数结构体
3693
+ */
3694
+ export interface DeployCertificateRecordRollbackResponse {
2006
3695
  /**
2007
- * 项目 ID
3696
+ * 回滚部署记录ID
2008
3697
  */
2009
- ProjectId?: number;
3698
+ DeployRecordId: number;
2010
3699
  /**
2011
- * 按到期时间排序:DESC = 降序, ASC = 升序。
3700
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2012
3701
  */
2013
- ExpirationSort?: string;
3702
+ RequestId?: string;
3703
+ }
3704
+ /**
3705
+ * 管理人的四种审核状态
3706
+ */
3707
+ export declare type ManagerStatusInfo = null;
3708
+ /**
3709
+ * 部署记录信息
3710
+ */
3711
+ export interface DeployRecordInfo {
2014
3712
  /**
2015
- * 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。
3713
+ * 部署记录ID
2016
3714
  */
2017
- CertificateStatus?: Array<number>;
3715
+ Id: number;
2018
3716
  /**
2019
- * 是否可部署,可选值:1 = 可部署,0 = 不可部署。
3717
+ * 部署证书ID
2020
3718
  */
2021
- Deployable?: number;
3719
+ CertId: string;
2022
3720
  /**
2023
- * 是否筛选上传托管的 1筛选,0不筛选
3721
+ * 部署资源类型
2024
3722
  */
2025
- Upload?: number;
3723
+ ResourceType: string;
2026
3724
  /**
2027
- * 是否筛选可续期证书 1筛选 0不筛选
3725
+ * 部署地域
2028
3726
  */
2029
- Renew?: number;
3727
+ Region: string;
2030
3728
  /**
2031
- * 筛选来源, upload:上传证书, buy:腾讯云证书, 不传默认全部
3729
+ * 部署状态
2032
3730
  */
2033
- FilterSource?: string;
3731
+ Status: number;
2034
3732
  /**
2035
- * 是否筛选国密证书。1:筛选 0:不筛选
3733
+ * 部署时间
2036
3734
  */
2037
- IsSM?: number;
3735
+ CreateTime: string;
2038
3736
  /**
2039
- * 筛选证书是否即将过期,传1是筛选,0不筛选
3737
+ * 最近一次更新时间
2040
3738
  */
2041
- FilterExpiring?: number;
3739
+ UpdateTime: string;
2042
3740
  }
2043
3741
  /**
2044
3742
  * DescribePackages返回参数结构体
@@ -2102,265 +3800,34 @@ export interface DescribeManagersRequest {
2102
3800
  SearchKey?: string;
2103
3801
  }
2104
3802
  /**
2105
- * CompleteCertificate返回参数结构体
2106
- */
2107
- export interface CompleteCertificateResponse {
2108
- /**
2109
- * 证书ID
2110
- */
2111
- CertificateId?: string;
2112
- /**
2113
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2114
- */
2115
- RequestId?: string;
2116
- }
2117
- /**
2118
- * SubmitCertificateInformation返回参数结构体
2119
- */
2120
- export interface SubmitCertificateInformationResponse {
2121
- /**
2122
- * 证书 ID。
2123
- */
2124
- CertificateId?: string;
2125
- /**
2126
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2127
- */
2128
- RequestId?: string;
2129
- }
2130
- /**
2131
- * DescribeManagerDetail返回参数结构体
3803
+ * DescribeHostLighthouseInstanceList返回参数结构体
2132
3804
  */
2133
- export interface DescribeManagerDetailResponse {
2134
- /**
2135
- * 状态: audit: 审核中 ok: 审核通过 invalid: 失效 expiring: 即将过期 expired: 已过期
2136
- */
2137
- Status: string;
2138
- /**
2139
- * 管理人姓名
2140
- */
2141
- ManagerFirstName: string;
2142
- /**
2143
- * 管理人邮箱
2144
- */
2145
- ManagerMail: string;
2146
- /**
2147
- * 联系人姓名
2148
- */
2149
- ContactFirstName: string;
2150
- /**
2151
- * 管理人姓名
2152
- */
2153
- ManagerLastName: string;
2154
- /**
2155
- * 联系人职位
2156
- */
2157
- ContactPosition: string;
2158
- /**
2159
- * 管理人职位
2160
- */
2161
- ManagerPosition: string;
3805
+ export interface DescribeHostLighthouseInstanceListResponse {
2162
3806
  /**
2163
- * 核验通过时间
3807
+ * Lighthouse实例列表
2164
3808
  注意:此字段可能返回 null,表示取不到有效值。
2165
3809
  */
2166
- VerifyTime: string;
2167
- /**
2168
- * 创建时间
2169
- */
2170
- CreateTime: string;
3810
+ InstanceList: Array<LighthouseInstanceDetail>;
2171
3811
  /**
2172
- * 核验过期时间
3812
+ * 总数
2173
3813
  注意:此字段可能返回 null,表示取不到有效值。
2174
3814
  */
2175
- ExpireTime: string;
2176
- /**
2177
- * 联系人姓名
2178
- */
2179
- ContactLastName: string;
2180
- /**
2181
- * 管理人电话
2182
- */
2183
- ManagerPhone: string;
2184
- /**
2185
- * 联系人电话
2186
- */
2187
- ContactPhone: string;
2188
- /**
2189
- * 联系人邮箱
2190
- */
2191
- ContactMail: string;
2192
- /**
2193
- * 管理人所属部门
2194
- */
2195
- ManagerDepartment: string;
2196
- /**
2197
- * 管理人所属公司信息
2198
- */
2199
- CompanyInfo: CompanyInfo;
2200
- /**
2201
- * 管理人公司ID
2202
- */
2203
- CompanyId: number;
2204
- /**
2205
- * 管理人ID
2206
- */
2207
- ManagerId: number;
2208
- /**
2209
- * 审核状态详细信息
2210
- */
2211
- StatusInfo: Array<ManagerStatusInfo>;
3815
+ TotalCount: number;
2212
3816
  /**
2213
3817
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2214
3818
  */
2215
3819
  RequestId?: string;
2216
3820
  }
2217
3821
  /**
2218
- * 预审核信息列表
2219
- */
2220
- export interface PreAuditInfo {
2221
- /**
2222
- * 证书总年限
2223
- 注意:此字段可能返回 null,表示取不到有效值。
2224
- */
2225
- TotalPeriod: number;
2226
- /**
2227
- * 证书当前年限
2228
- 注意:此字段可能返回 null,表示取不到有效值。
2229
- */
2230
- NowPeriod: number;
2231
- /**
2232
- * 证书预审核管理人ID
2233
- 注意:此字段可能返回 null,表示取不到有效值。
2234
- */
2235
- ManagerId: string;
2236
- }
2237
- /**
2238
- * 获取证书列表(DescribeCertificate)返回参数键为 SubmittedData 的内容。
3822
+ * CompleteCertificate返回参数结构体
2239
3823
  */
2240
- export interface SubmittedData {
2241
- /**
2242
- * CSR 类型,(online = 在线生成CSR,parse = 粘贴 CSR)。
2243
- 注意:此字段可能返回 null,表示取不到有效值。
2244
- */
2245
- CsrType?: string;
2246
- /**
2247
- * CSR 内容。
2248
- 注意:此字段可能返回 null,表示取不到有效值。
2249
- */
2250
- CsrContent?: string;
2251
- /**
2252
- * 域名信息。
2253
- 注意:此字段可能返回 null,表示取不到有效值。
2254
- */
2255
- CertificateDomain?: string;
2256
- /**
2257
- * DNS 信息。
2258
- 注意:此字段可能返回 null,表示取不到有效值。
2259
- */
2260
- DomainList?: Array<string>;
2261
- /**
2262
- * 私钥密码。
2263
- 注意:此字段可能返回 null,表示取不到有效值。
2264
- */
2265
- KeyPassword?: string;
2266
- /**
2267
- * 企业或单位名称。
2268
- 注意:此字段可能返回 null,表示取不到有效值。
2269
- */
2270
- OrganizationName?: string;
2271
- /**
2272
- * 部门。
2273
- 注意:此字段可能返回 null,表示取不到有效值。
2274
- */
2275
- OrganizationDivision?: string;
2276
- /**
2277
- * 地址。
2278
- 注意:此字段可能返回 null,表示取不到有效值。
2279
- */
2280
- OrganizationAddress?: string;
2281
- /**
2282
- * 国家。
2283
- 注意:此字段可能返回 null,表示取不到有效值。
2284
- */
2285
- OrganizationCountry?: string;
2286
- /**
2287
- * 市。
2288
- 注意:此字段可能返回 null,表示取不到有效值。
2289
- */
2290
- OrganizationCity?: string;
2291
- /**
2292
- * 省。
2293
- 注意:此字段可能返回 null,表示取不到有效值。
2294
- */
2295
- OrganizationRegion?: string;
2296
- /**
2297
- * 邮政编码。
2298
- 注意:此字段可能返回 null,表示取不到有效值。
2299
- */
2300
- PostalCode?: string;
2301
- /**
2302
- * 座机区号。
2303
- 注意:此字段可能返回 null,表示取不到有效值。
2304
- */
2305
- PhoneAreaCode?: string;
2306
- /**
2307
- * 座机号码。
2308
- 注意:此字段可能返回 null,表示取不到有效值。
2309
- */
2310
- PhoneNumber?: string;
2311
- /**
2312
- * 管理员名。
2313
- 注意:此字段可能返回 null,表示取不到有效值。
2314
- */
2315
- AdminFirstName?: string;
2316
- /**
2317
- * 管理员姓。
2318
- 注意:此字段可能返回 null,表示取不到有效值。
2319
- */
2320
- AdminLastName?: string;
2321
- /**
2322
- * 管理员电话号码。
2323
- 注意:此字段可能返回 null,表示取不到有效值。
2324
- */
2325
- AdminPhoneNum?: string;
2326
- /**
2327
- * 管理员邮箱地址。
2328
- 注意:此字段可能返回 null,表示取不到有效值。
2329
- */
2330
- AdminEmail?: string;
2331
- /**
2332
- * 管理员职位。
2333
- 注意:此字段可能返回 null,表示取不到有效值。
2334
- */
2335
- AdminPosition?: string;
2336
- /**
2337
- * 联系人名。
2338
- 注意:此字段可能返回 null,表示取不到有效值。
2339
- */
2340
- ContactFirstName?: string;
2341
- /**
2342
- * 联系人姓。
2343
- 注意:此字段可能返回 null,表示取不到有效值。
2344
- */
2345
- ContactLastName?: string;
2346
- /**
2347
- * 联系人电话号码。
2348
- 注意:此字段可能返回 null,表示取不到有效值。
2349
- */
2350
- ContactNumber?: string;
2351
- /**
2352
- * 联系人邮箱地址,
2353
- 注意:此字段可能返回 null,表示取不到有效值。
2354
- */
2355
- ContactEmail?: string;
3824
+ export interface CompleteCertificateResponse {
2356
3825
  /**
2357
- * 联系人职位。
2358
- 注意:此字段可能返回 null,表示取不到有效值。
2359
- */
2360
- ContactPosition?: string;
3826
+ * 证书ID
3827
+ */
3828
+ CertificateId?: string;
2361
3829
  /**
2362
- * 验证类型。
2363
- 注意:此字段可能返回 null,表示取不到有效值。
2364
- */
2365
- VerifyType?: string;
3830
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3831
+ */
3832
+ RequestId?: string;
2366
3833
  }