UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

24 lines 710 B
import { FunctionEnum } from './task/FunctionEnum'; import { StatusEnum } from './task/StatusEnum'; /** Web Cloud Database task */ export interface Task { /** Database name on which the task is working */ databaseName?: string; /** Completion date */ doneDate?: string; /** DumpId on which the task is working */ dumpId?: number; /** Function name */ function: FunctionEnum; /** The id of the task */ id: number; /** Last update */ lastUpdate?: string; /** Task creation date */ startDate: string; /** Task status */ status: StatusEnum; /** User name on which the task is working */ userName?: string; } //# sourceMappingURL=Task.d.ts.map