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.

17 lines 771 B
import { IHandlerParameters } from "@zowe/imperative"; import { ZosmfBaseHandler } from "@zowe/zosmf-for-zowe-sdk"; /** * "zos-jobs view spool-by-id" command handler. Outputs a single spool DD contents. * @export * @class SubmitJobHandler */ export default class SpoolFileByIdHandler extends ZosmfBaseHandler { /** * Command handler process - invoked by the command processor to handle the "zos-jobs view job" * @param {IHandlerParameters} params - Command handler parameters * @returns {Promise<void>} - Fulfilled when the command completes successfully OR rejected with imperative error * @memberof SubmitDataSetHandler */ processCmd(_params: IHandlerParameters): Promise<void>; } //# sourceMappingURL=SpoolFileById.handler.d.ts.map