import * as $dara from '@darabonba/typescript'; export declare class CreateWHClientCertificateResponseBody extends $dara.Model { /** * @remarks * The certificate chain. * * @example * -----BEGIN CERTIFICATE-----\\n......\\n-----END CERTIFICATE-----\\n-----BEGIN CERTIFICATE-----\\n......\\n-----END CERTIFICATE-----\\n */ certificateChain?: string; /** * @remarks * The unique identifier of the client certificate. * * @example * 190ae6bb538d538c70c01f81dcf2**** */ identifier?: string; /** * @remarks * The content of the subordinate CA certificate. * * @example * -----BEGIN CERTIFICATE-----\\n......\\n-----END CERTIFICATE----- */ parentX509Certificate?: string; /** * @remarks * The request ID. This unique ID is generated by Alibaba Cloud for each request and can be used for troubleshooting. * * @example * 8C467B38-3910-447D-87BC-AC049166F216 */ requestId?: string; /** * @remarks * The content of the root CA certificate. * * @example * -----BEGIN CERTIFICATE-----\\n......\\n-----END CERTIFICATE----- */ rootX509Certificate?: string; /** * @remarks * The content of the client certificate. * * @example * -----BEGIN CERTIFICATE-----\\n......\\n-----END CERTIFICATE----- */ x509Certificate?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }