@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
35 lines (34 loc) • 1.01 kB
TypeScript
import { IConsoleParms } from "./IConsoleParms";
/**
* Interface for Issue command parameters
* @export
* @interface IIssueParms
*/
export interface IIssueParms extends IConsoleParms {
/**
* The Command to issue.
* @type {string}
* @memberof IIssueParms
*/
command: string;
/**
* The system (withing the z/OSMF sysplex) to route the command.
* @type {string}
* @memberof IIssueParms
*/
sysplexSystem?: string;
/**
* The solicited keyword to check for in the response. Causes the API to return immediately when the keyword
* is found, however, it may include solicited command response messages beyond the keyword itself.
* @type {string}
* @memberof IIssueParms
*/
solicitedKeyword?: string;
/**
* Indicates the method of issuing the command is synchronous or asynchronous.
* Default value is "N" - Synchronous request.
* @type {string}
* @memberof IIssueParms
*/
async?: string;
}