@datatr-ux/ovhcloud-types
Version: 
TypeScript types for OVHCloud projects
13 lines • 393 B
TypeScript
import { SecretRef } from './SecretRef';
/** Key-manager certificate secret container */
export interface Certificate {
    /** ID of the certificate */
    id: string;
    /** Name of the certificate */
    name: string;
    /** Certificate region */
    region: string;
    /** List of secrets in certificate container */
    secrets: SecretRef[];
}
//# sourceMappingURL=Certificate.d.ts.map