import * as $dara from '@darabonba/typescript'; export declare class ListCertWarehouseResponseBodyCertWarehouseList extends $dara.Model { /** * @remarks * The timestamp when the certificate application repository expires. Unit: milliseconds. * * @example * 1665819958000 */ endTime?: number; /** * @remarks * The instance ID of the certificate application repository. * * @example * 14dcc8afc7578e1f */ instanceId?: string; /** * @remarks * Indicates whether the certificate application repository has expired. Valid values: * * - **true** * * - **false** * * @example * false */ isExpired?: boolean; /** * @remarks * The name of the certificate application repository. * * @example * name */ name?: string; /** * @remarks * The instance ID of the private CA. * * @example * 14dcc8afc7578e1f */ pcaInstanceId?: string; /** * @remarks * The queries per second (QPS). * * @example * 10 */ qps?: number; /** * @remarks * The type of the certificate application repository. Valid values: * * - **ssl**: certificate application repository of SSL certificates * * - **uploadPCA**: certificate application repository of uploaded private certificates * * - **free**: certificate application repository of free certificates, available only on the China site (aliyun.com) * * - **aliyunPCA**: certificate application repository of private certificates purchased from Alibaba Cloud PCA, available only on the China site (aliyun.com) * * - **disable**: disabled certificate application repository * * @example * aliyunPCA */ type?: string; /** * @remarks * The ID of the certificate application repository. * * @example * 1 */ whId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListCertWarehouseResponseBody extends $dara.Model { /** * @remarks * The certificate application repositories. */ certWarehouseList?: ListCertWarehouseResponseBodyCertWarehouseList[]; /** * @remarks * The page number of the returned page. Default value: 1. * * @example * 1 */ currentPage?: number; /** * @remarks * The ID of the request. * * @example * 15C66C7B-671A-4297-9187-2C4477247A74 */ requestId?: string; /** * @remarks * The number of entries returned per page. Default value: 50. * * @example * 50 */ showSize?: number; /** * @remarks * The total number of entries returned. * * @example * 10 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }