UNPKG

@zowe/zos-jobs-for-zowe-sdk

Version:
32 lines 1.02 kB
import { JOB_STATUS } from "../../types/JobStatus"; import { ISubmitJclParms } from "./ISubmitJclParms"; /** * Interface for submiting jobs API * @export * @interface ISubmitJclNotifyParm */ export interface ISubmitJclNotifyParm extends ISubmitJclParms { /** * Watch delay (polling delay) that the underlying services will use * to report whenever a job is complete in milliseconds. * Default: MonitorJobs.DEFAULT_WATCHER_DELAY * @type {number} * @memberof ISubmitJclNotifyParm */ watchDelay?: number; /** * Status for which you'd like to be notified of a completed job. * Default: MonitorJobs.DEFAULT_STATUS. * @type {JOB_STATUS} * @memberof ISubmitJclNotifyParm */ status?: JOB_STATUS; /** * Number of attempts for which will poll before ending. * Default: MonitorJobs.DEFAULT_ATTEMPTS. * @type {number} * @memberof ISubmitJclNotifyParm */ attempts?: number; } //# sourceMappingURL=ISubmitJclNotifyParms.d.ts.map