@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
22 lines • 898 B
TypeScript
import { IHandlerParameters } from "@zowe/imperative";
import { ZosmfBaseHandler } from "@zowe/zosmf-for-zowe-sdk";
/**
* Common Handler for retrieving the contents of a z/OSMF workflow definition from a z/OS system.
*/
export default class ListActiveWorkflowsHandler extends ZosmfBaseHandler {
/**
* Command line arguments passed
* @private
* @type {*}
* @memberof ListHandler
*/
private arguments;
/**
* Handler process - invoked by the command processor to handle the "zos-workflows list"
* @param {IHandlerParameters} params - Command handler parameters
* @returns {Promise<void>} - Fulfilled when the command completes successfully OR rejected with imperative error
* @memberof ListHandler
*/
processCmd(commandParameters: IHandlerParameters): Promise<void>;
}
//# sourceMappingURL=RetrieveWorkflowDefinition.handler.d.ts.map