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.

17 lines (16 loc) 477 B
/** * This interface defines a few optional options that can be sent on a VSAM * delete operation. */ export interface IDeleteVsamOptions { /** * Specifies the data component of a cluster is to be * overwritten with binary zeros when the cluster is deleted. */ erase?: boolean; /** * Specifies the entry is to be deleted even if the retention period, * specified in the TO or FOR operand, has not expired. */ purge?: boolean; }