tencentcloud-sdk-nodejs-ssl 4.1.47 → 4.1.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -690,6 +690,10 @@ export interface Certificates {
|
|
|
690
690
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
691
691
|
*/
|
|
692
692
|
HostingConfig?: HostingConfig;
|
|
693
|
+
/**
|
|
694
|
+
* 是否是上传托管续费证书
|
|
695
|
+
*/
|
|
696
|
+
IsHostingUploadRenewCert?: boolean;
|
|
693
697
|
}
|
|
694
698
|
/**
|
|
695
699
|
* 获取证书列表(DescribeCertificates)返回参数键为 Certificates 数组下,key为CertificateExtra 的内容。
|
|
@@ -748,24 +752,21 @@ export interface TeoInstanceList {
|
|
|
748
752
|
Error?: string;
|
|
749
753
|
}
|
|
750
754
|
/**
|
|
751
|
-
*
|
|
755
|
+
* 管理人预审核的域名列表
|
|
752
756
|
*/
|
|
753
|
-
export interface
|
|
757
|
+
export interface ManagerPreAuditDomain {
|
|
754
758
|
/**
|
|
755
|
-
*
|
|
756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
759
|
+
* 预审核域名信息
|
|
757
760
|
*/
|
|
758
|
-
|
|
761
|
+
Domain: string;
|
|
759
762
|
/**
|
|
760
|
-
*
|
|
761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
763
|
+
* 预审核域名创建时间
|
|
762
764
|
*/
|
|
763
|
-
|
|
765
|
+
CreateTime: string;
|
|
764
766
|
/**
|
|
765
|
-
*
|
|
766
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
767
|
+
* 预审核域名过期时间
|
|
767
768
|
*/
|
|
768
|
-
|
|
769
|
+
ExpireTime: string;
|
|
769
770
|
}
|
|
770
771
|
/**
|
|
771
772
|
* CDN实例详情
|
|
@@ -2845,6 +2846,26 @@ export interface DeleteManagerResponse {
|
|
|
2845
2846
|
*/
|
|
2846
2847
|
RequestId?: string;
|
|
2847
2848
|
}
|
|
2849
|
+
/**
|
|
2850
|
+
* 根证书
|
|
2851
|
+
*/
|
|
2852
|
+
export interface RootCertificates {
|
|
2853
|
+
/**
|
|
2854
|
+
* 国密签名证书
|
|
2855
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2856
|
+
*/
|
|
2857
|
+
Sign: string;
|
|
2858
|
+
/**
|
|
2859
|
+
* 国密加密证书
|
|
2860
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2861
|
+
*/
|
|
2862
|
+
Encrypt: string;
|
|
2863
|
+
/**
|
|
2864
|
+
* 标准证书
|
|
2865
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2866
|
+
*/
|
|
2867
|
+
Standard: string;
|
|
2868
|
+
}
|
|
2848
2869
|
/**
|
|
2849
2870
|
* SubmitAuditManager请求参数结构体
|
|
2850
2871
|
*/
|
|
@@ -5335,6 +5356,14 @@ export interface DescribeCertificateDetailResponse {
|
|
|
5335
5356
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5336
5357
|
*/
|
|
5337
5358
|
CertChainInfo?: Array<CertBasicInfo>;
|
|
5359
|
+
/**
|
|
5360
|
+
* 证书域名类型, 1(单域名);2(多域名);3(泛域名);4(多泛域名)
|
|
5361
|
+
*/
|
|
5362
|
+
DomainType?: number;
|
|
5363
|
+
/**
|
|
5364
|
+
* 证书类型,DV(域名型);OV(企业型);EV(增强型)
|
|
5365
|
+
*/
|
|
5366
|
+
CertType?: string;
|
|
5338
5367
|
/**
|
|
5339
5368
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5340
5369
|
*/
|
|
@@ -5818,6 +5847,10 @@ export interface ManagerStatusInfo {
|
|
|
5818
5847
|
* 过期时间
|
|
5819
5848
|
*/
|
|
5820
5849
|
ExpireTime?: string;
|
|
5850
|
+
/**
|
|
5851
|
+
* 管理人预审核的域名列表
|
|
5852
|
+
*/
|
|
5853
|
+
ManagerPreAuditDomains?: Array<ManagerPreAuditDomain>;
|
|
5821
5854
|
}
|
|
5822
5855
|
/**
|
|
5823
5856
|
* CancelAuditCertificate返回参数结构体
|