@zowe/zos-files-for-zowe-sdk
Version:
Zowe SDK to interact with files and data sets on z/OS
32 lines • 775 B
TypeScript
import { ICopyDatasetOptions } from "./ICopyDatasetOptions";
/**
* This interface defines the options that can be sent into the copy cross lpar data set function.
*/
export interface ICrossLparCopyDatasetOptions extends ICopyDatasetOptions {
/**
* Target volser
* @type {string}
*/
targetVolser?: string;
/**
* Target management class
* @type {string}
*/
targetManagementClass?: string;
/**
* Target storage class
* @type {string}
*/
targetStorageClass?: string;
/**
* Target data class
* @type {string}
*/
targetDataClass?: string;
/**
* Overwrite option
* @type {boolean}
*/
overwrite?: boolean;
}
//# sourceMappingURL=ICrossLparCopyDatasetOptions.d.ts.map