UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

16 lines (13 loc) 413 B
import { DbaasLogsEncryptionKeyAlgorithmEnum } from './DbaasLogsEncryptionKeyAlgorithmEnum.js'; type DbaasLogsEncryptionKey = { algorithm?: DbaasLogsEncryptionKeyAlgorithmEnum; content: string; createdAt?: Date; encryptionKeyId?: string; fingerprint: string; isEditable?: boolean; nbArchive?: number | null; title: string; uid?: string; }; export { DbaasLogsEncryptionKey };