UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

24 lines 676 B
import { DateEnum } from './database/dump/DateEnum'; import { StatusEnum } from './database/dump/StatusEnum'; /** Dump */ export interface Dump { /** Creation date of the dump */ creationDate: string; /** Source database name */ databaseName: string; /** Automatic deletion date of the dump */ deletionDate: string; /** Dump id */ id: number; /** If source database was deleted */ orphan: boolean; /** The dump status */ status: StatusEnum; /** The task ID working on this dump */ taskId?: number; /** Dump type */ type: DateEnum; /** Dump url access */ url?: string; } //# sourceMappingURL=Dump.d.ts.map