UNPKG

@zowe/cli

Version:

Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.

26 lines (25 loc) 529 B
/** * Interface for cancel job z/OSMF API * @export * @interface ICancelJobParms */ export interface ICancelJobParms { /** * job id for the job you want to cancel * @type {string} * @memberof ICancelJobParms */ jobid: string; /** * job name for the job you want to cancel * @type {string} * @memberof ICancelJobParms */ jobname: string; /** * version of the cancel request * @type {string} * @memberof ICancelJobParms */ version?: string; }