@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
50 lines (49 loc) • 1.02 kB
TypeScript
/**
* Interface for TSO start command z/OSMF parameters
* @export
* @interface IStartTsoParms
*/
export interface IStartTsoParms {
/**
* name of the logonProcedure for address space
* @type string
* @memberOf IStartTsoParms
*/
logonProcedure?: string;
/**
* character set for address space
* @type string
* @memberOf IStartTsoParms
*/
characterSet?: string;
/**
* code page for tso address space
* @type string
* @memberOf IStartTsoParms
*/
codePage?: string;
/**
* number of rows
* @type string
* @memberOf IStartTsoParms
*/
rows?: string;
/**
* number of columns
* @type string
* @memberOf IStartTsoParms
*/
columns?: string;
/**
* user account number
* @type string
* @memberOf IStartTsoParms
*/
account?: string;
/**
* region size for address space
* @type string
* @memberOf IStartTsoParms
*/
regionSize?: string;
}