@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
22 lines • 844 B
TypeScript
import { SslTypeEnum } from '../SslTypeEnum';
/** Ssl */
export interface Ssl {
/** Human readable name for your ssl certificate, this field is for you */
displayName?: string;
/** Expire date of your SSL certificate */
expireDate: string;
/** Fingerprint of your SSL certificate */
fingerprint: string;
/** Id of your SSL certificate */
id: number;
/** Subject Alternative Name of your SSL certificate */
san: string[];
/** @deprecated Serial of your SSL certificate (Deprecated, use fingerprint instead !) */
serial: string;
/** Subject of your SSL certificate */
subject: string;
/** Type of your SSL certificate.
'built' for SSL certificates managed by the IP Load Balancing. 'custom' for user manager certificates. */
type?: SslTypeEnum;
}
//# sourceMappingURL=Ssl.d.ts.map