@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
30 lines (29 loc) • 981 B
TypeScript
import { IJobFile } from "../../../../../zosjobs";
/**
* Interface for downloading single spool file with DownloadJobs API
* @export
* @interface IDownloadAllSpoolContentParms
*/
export interface IDownloadSpoolContentParms {
/**
* The directory to which you would like to download the output
* Default value: DownloadJobs.DEFAULT_JOBS_OUTPUT_DIR
* @type {string}
* @memberof IDownloadSpoolContentParms
*/
outDir?: string;
/**
* Job file document for job output we want to download
* @type {IJobFile}
* @memberof IDownloadSpoolContentParms
*/
jobFile?: IJobFile;
/**
* 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 IDownloadSpoolContentParms
*/
omitJobidDirectory?: boolean;
}