@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
84 lines (83 loc) • 2.36 kB
TypeScript
/**
* Defaults to be used as options for the different types of data sets that can be created
*/
export declare const CreateDefaults: {
/**
* Specifies all the defaults to create non-vsam data sets
*/
DATA_SET: {
/**
* Specifies the defaults used by the Zos Files API to create a partitioned data set
* @type {ICreateDataSetOptions}
*/
PARTITIONED: {
alcunit: string;
dsorg: string;
primary: number;
dirblk: number;
recfm: string;
blksize: number;
lrecl: number;
};
/**
* Specifies the defaults used by the Zos Files API to create a sequential data set
* @type {ICreateDataSetOptions}
*/
SEQUENTIAL: {
alcunit: string;
dsorg: string;
primary: number;
recfm: string;
blksize: number;
lrecl: number;
};
/**
* Specifies the defaults used by the Zos Files API to create a classic data set
* @type {ICreateDataSetOptions}
*/
CLASSIC: {
alcunit: string;
dsorg: string;
primary: number;
recfm: string;
blksize: number;
lrecl: number;
dirblk: number;
};
/**
* Specifies the defaults used by the Zos Files API to create a data set used for C code
* @type {ICreateDataSetOptions}
*/
C: {
dsorg: string;
alcunit: string;
primary: number;
recfm: string;
blksize: number;
lrecl: number;
dirblk: number;
};
/**
* Specifies the defaults used by the Zos Files API to create a data set used for binaries
* @type {ICreateDataSetOptions}
*/
BINARY: {
dsorg: string;
alcunit: string;
primary: number;
recfm: string;
blksize: number;
lrecl: number;
dirblk: number;
};
};
/**
* Specifies the defaults used by the Zos Files API to create a VSAM cluster
* @type {ICreateVsamOptions}
*/
VSAM: {
dsorg: string;
alcunit: string;
primary: number;
};
};