@zowe/zos-files-for-zowe-sdk
Version:
Zowe SDK to interact with files and data sets on z/OS
19 lines • 536 B
TypeScript
import { IZosFilesOptions } from "../../../doc/IZosFilesOptions";
/**
* Interface for the options to the create uss file or directory API.
* @export
* @interface ICreateUssOptions
*/
export interface ICreateUssOptions extends IZosFilesOptions {
/**
* 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;
}
//# sourceMappingURL=ICreateUssOption.d.ts.map