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.

30 lines (29 loc) 600 B
/** * This interface defines the information that is stored in the download data set API return object */ export interface IUSSFileListResponse { /** * The name of the dataset */ name: string; /** * The block size of the dataset */ mode?: string; /** * The catalog in which the dataset entry is stored */ size?: string; /** * The dataset creation date */ uid?: string; /** * The type of the device the dataset is stored on */ user?: string; /** * The type of the dataset */ gid?: string; }