@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
58 lines (57 loc) • 1.16 kB
TypeScript
/**
* Interface for the options to the create zos-file-system API.
* @export
* @interface ICreateZfsOptions
*/
export interface ICreateZfsOptions {
/**
* The user ID for owner of the root directory
* @type {string}
*/
owner?: string;
/**
* The group ID for the root directory
* @type {string}
*/
group?: string;
/**
* The permissions code for the root directory
* @type {number}
*/
perms?: number;
/**
* The primary space allocation
* @type {number}
*/
cylsPri: number;
/**
* The secondary space allocation
* @type {number}
*/
cylsSec?: number;
/**
* The storage class
* @type {string}
*/
storeclass?: string;
/**
* The management class
* @type {string}
*/
mgntclass?: string;
/**
* The data class
* @type {string}
*/
dataclass?: string;
/**
* The volumes on which to allocate space
* @type {string[]}
*/
volumes?: string[];
/**
* The number of seconds to wait for command to complete
* @type {number}
*/
timeout?: number;
}