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.

44 lines (43 loc) 1.34 kB
/** * Interface for downloading all spool content with DownloadJobs API * @export * @interface IDownloadAllSpoolContentParms */ export interface IDownloadAllSpoolContentParms { /** * The directory to which you would like to download the output * Default value: DownloadJobs.DEFAULT_JOBS_OUTPUT_DIR * @type {string} * @memberof IDownloadAllSpoolContentParms */ outDir?: string; /** * Name of the job for which you want to download all output * e.g. MYJOBNM * @type {string} * @memberof IDownloadAllSpoolContentParms */ jobname: string; /** * JOB ID of the job for which you want to download all output * e.g. JOB00001 * @type {string} * @memberof IDownloadAllSpoolContentParms */ jobid: string; /** * If you specify false or do not specify this field, a directory with the jobid of the job as the name * will automatically be appended to the outDir. * If you specify true, no directory will be appended to your outDir. * @type {boolean} * @memberof IDownloadAllSpoolContentParms */ omitJobidDirectory?: boolean; /** * The extension to use for the files. Defaults to `.txt` * e.g. .log * @type {string} * @memberof IDownloadAllSpoolContentParms */ extension?: string; }