@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 398 B
TypeScript
import { SslStateEnum } from './SslStateEnum';
/** CDN Ssl */
export interface Ssl {
/** Provider of the certificate installed on CDN */
certificateProvider: string;
/** */
certificateValidFrom?: string;
/** */
certificateValidTo?: string;
/** */
cn?: string;
/** */
name: string;
/** */
status: SslStateEnum;
}
//# sourceMappingURL=Ssl.d.ts.map