UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

34 lines 1.09 kB
import { EngineParameter } from './EngineParameter'; import { StatusEnum } from './StatusEnum'; /** Job information */ export interface Job { /** Name of the container where the code and the log of the job is */ containerName: string; /** Creation date of the job */ creationDate?: string; /** End date of the job */ endDate?: string; /** Engine of the job */ engine: string; /** Parameters of job engine */ engineParameters: EngineParameter[]; /** Version of the engine */ engineVersion: string; /** UUID of the job */ id: string; /** Name */ name: string; /** Notebook associated to the job */ notebook?: string; /** Openstack region of the job */ region: string; /** Return code of the job */ returnCode?: number; /** Start date of the job */ startDate?: string; /** Current state of the job */ status: StatusEnum; /** Maximum "Time To Live" (in RFC3339 (duration)) of this job, after which it will be automatically terminated */ ttl?: string; } //# sourceMappingURL=Job.d.ts.map