@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
31 lines (30 loc) • 818 B
TypeScript
/**
* Interface for submit JCL APIs
* @export
* @interface ISubmitJclParms
*/
export interface ISubmitJclParms {
/**
* JCL to submit, for example:
* "//IEFBR14 JOB ()\n" +
* "//RUN EXEC PGM=IEFBR14"
* @type {string}
* @memberof ISubmitJclNotifyParm
*/
jcl: string;
/**
* Specify internal reader RECFM and corresponding http(s) headers
* will be appended to the request accordingly
* "F" (fixed) or "V" (variable)
* @type {string}
* @memberof ISubmitJclNotifyParm
*/
internalReaderRecfm?: string;
/**
* Specify internal reader LRECL and corresponding http(s) headers
* will be appended to the request accordingly
* @type {string}
* @memberof ISubmitJclNotifyParm
*/
internalReaderLrecl?: string;
}