@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
18 lines (17 loc) • 399 B
TypeScript
/**
* Interface for the options to the create uss file or directory API.
* @export
* @interface ICreateUssOptions
*/
export interface ICreateUssOptions {
/**
* The request type
* @type {string}
*/
type: string;
/**
* Specifies the file or directory permission bits to be used in creating the file or directory.
* @type {string}
*/
mode?: string;
}