@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
18 lines (17 loc) • 441 B
TypeScript
/**
* Interface for submit job API
* @export
* @interface ISubmitJobParms
*/
export interface ISubmitJobParms {
/**
* z/OS data set which should contain syntactically correct JCL
* Example value: IBMUSER.PUBLIC.CNTL(IEFBR14)
* where IEFBR14 contains statements like:
* //IEFBR14 JOB ()
* //RUN EXEC PGM=IEFBR14
* @type {string}
* @memberof ISubmitJobParms
*/
jobDataSet: string;
}