@zowe/zos-files-for-zowe-sdk
Version:
Zowe SDK to interact with files and data sets on z/OS
32 lines • 925 B
TypeScript
/**
* This interface defines results of the download data sets matching command.
* @export
* @interface IDownloadDsmResult
*/
export interface IDownloadDsmResult {
/**
* List of data set names that have downloaded successfully.
*/
downloaded: string[];
/**
* List of data set names that failed to download because they are archived.
*/
failedArchived: string[];
/**
* List of data set names that failed to download because they are an
* unsupported type.
*/
failedUnsupported: string[];
/**
* Object containing key-value pairs of data set names and errors for data
* sets that failed to download.
*/
failedWithErrors: {
[key: string]: Error;
};
/**
* List of data set names that were skipped because they already exist locally.
*/
skippedExisting?: string[];
}
//# sourceMappingURL=IDownloadDsmResult.d.ts.map