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.

27 lines (26 loc) 617 B
import { IStartTsoParms } from "./IStartTsoParms"; /** * Interface for TSO issue command z/OSMF parameters * @export * @interface IIssueTsoParms */ export interface IIssueTsoParms { /** * Command text to issue to the TSO address space. * @type string * @memberOf IIssueTsoParms */ command: string; /** * Accounting info for Jobs * @type string * @memberOf IIssueTsoParms */ accountNumber: string; /** * Interface for TSO start command z/OSMF parameters * @type string * @memberOf IIssueTsoParms */ startParams: IStartTsoParms; }