@zowe/zos-files-for-zowe-sdk
Version:
Zowe SDK to interact with files and data sets on z/OS
40 lines • 1.01 kB
TypeScript
import { IZosFilesResponse } from "../../../doc/IZosFilesResponse";
/**
* Extra response data for all members download that includes result information
*/
export interface IDownloadAmResponse extends IZosFilesResponse {
apiResponse: IZosFilesResponse['apiResponse'] & {
downloadResult?: IDownloadAmResult;
};
}
/**
* This interface defines results of the download all members command.
* @export
*/
export interface IDownloadAmResult {
/**
* Number of items successfully downloaded
*/
downloaded: number;
/**
* Number of items skipped because they already exist
*/
skipped: number;
/**
* Number of items that failed to download
*/
failed: number;
/**
* Total number of items processed
*/
total: number;
/**
* Names of items that were skipped
*/
skippedMembers?: string[];
/**
* Names of items that failed
*/
failedMembers?: string[];
}
//# sourceMappingURL=IDownloadAmResult.d.ts.map