@broadcom/mat-detect-for-zowe-cli
Version:
MAT Detect plug-in for Zowe CLI
26 lines (25 loc) • 626 B
TypeScript
/**
* Interface for submit job API
*/
export interface ISubmitParms {
/**
* USS file which should contain syntactically correct JCL
* Example value: IBMUSER.PUBLIC.CNTL(IEFBR14)
* where IEFBR14 contains statements like:
* //IEFBR14 JOB ()
* //RUN EXEC PGM=IEFBR14
*/
jclSource: string;
/**
* Returns spool content if this option used
*/
viewAllSpoolContent?: boolean;
/**
* Local directory path to download output of the job
*/
directory?: string;
/**
* A file extension to save the job output with
*/
extension?: string;
}