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.

23 lines (22 loc) 488 B
import { IDataSet } from "../../../doc/IDataSet"; /** * This interface defines the options that can be sent into the copy data set function. */ export interface ICopyDatasetOptions { /** * The dataset to copy from. * @type {IDataSet} */ fromDataSet: IDataSet; /** * Enq option * Allow values are: SHR, SHRW, EXCLU. * @type {string} */ enq?: string; /** * Replace option * @type {boolean} */ replace?: boolean; }