import * as $dara from '@darabonba/typescript'; export declare class UploadCsrRequest extends $dara.Model { /** * @remarks * The content of the CSR. * * This parameter is required. * * @example * -----BEGIN CERTIFICATE REQUEST----- ...... -----END CERTIFICATE REQUEST----- */ csr?: string; /** * @remarks * The content of the certificate\\"s private key in PEM format. * * @example * -----BEGIN RSA PRIVATE KEY----- MII.... -----END RSA PRIVATE KEY----- */ key?: string; /** * @remarks * The name of the CSR. The name can be up to 50 characters long and can contain uppercase letters (A–Z), lowercase letters (a–z), digits (0–9), underscores (_), and hyphens (-). * * @example * name */ name?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }