UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

14 lines 448 B
/** Input to create a certificate */ export interface CertificateCreate { /** Content of the certificate */ certificate: string; /** Content of the intermediates certificates if any */ intermediates: string; /** Name of the certificate */ name: string; /** Private key */ privateKey: string; /** Private key passphrase if any */ privateKeyPassphrase: string; } //# sourceMappingURL=CertificateCreate.d.ts.map