@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
27 lines (26 loc) • 795 B
TypeScript
import { ZosmfMigratedRecallOptions } from "../../../doc/types/ZosmfMigratedRecallOptions";
/**
* This interface defines the options that can be sent into the dwanload data set function
*/
export interface IListOptions {
/**
* The volume where the data set resides
*/
volume?: string;
/**
* The indicator that we want to show more attributes
*/
attributes?: boolean;
/**
* The indicator that we want to show less data sets or members
*/
maxLength?: number;
/**
* An optional search parameter that specifies the first data set name to return in the response document
*/
start?: string;
/**
* An optional parameter that specifies how to handle migrated data sets
*/
recall?: ZosmfMigratedRecallOptions;
}