@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 440 B
TypeScript
/** Dumps */
export interface Dump {
/** Creation date of the dump */
creationDate: string;
/** Dump of this database name */
databaseName: string;
/** Automatic deletion date of the dump */
deletionDate: string;
/** Dump id */
dumpId: number;
/** Dump orphan flag (true if database does not exists) */
orphan: boolean;
/** Dump URL access */
url: string;
}
//# sourceMappingURL=Dump.d.ts.map