UNPKG

@broadcom/endevor-bridge-for-git-for-zowe-cli

Version:

Endevor Bridge for Git plug-in for Zowe CLI

96 lines (95 loc) 1.94 kB
/** * Standard job response document * Represents the attributes and status of a z/OS batch job * @export * @interface IJob */ export interface IJob { /** * job id for a job * Uniquely identifies a job on a z/OS system * @type {string} * @memberof IJob */ jobid: string; /** * job name for a job * @type {string} * @memberof IJob */ jobname: string; /** * The primary or secondary JES subsystem. * If this value is null, the job was processed by the primary subsystem. * @type {string} * @memberof IJob */ subsystem: string; /** * owner of the job * @type {string} * @memberof IJob */ owner: string; /** * status of the job * @type {string} * @memberof IJob */ status: string; /** * type of job * @type {string} * @memberof IJob */ type: string; /** * job class * @type {string} * @memberof IJob */ class: string; /** * return code of the job * @type {string} * @memberof IJob */ retcode: string; /** * url for direct reference of job info * @type {string} * @memberof IJob */ url: string; /** * spool files url for direct reference * @type {string} * @memberof IJob */ "files-url": string; /** * unique identifier of job (substitute of job name and job id) * If this value is null, the job was submitted to JES3. * @type {string} * @memberof IJob */ "job-correlator": string; /** * job phase * @type {number} * @memberof IJob */ phase: number; /** * job phase name * @type {string} * @memberof IJob */ "phase-name": string; /** * explaination of error * @type {string} * @memberof IJob */ "reason-not-running"?: string; }