@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
9 lines (8 loc) • 465 B
TypeScript
import { Arguments } from "yargs";
import { ICreateDataSetOptions } from "../../api/methods/create/doc/ICreateDataSetOptions";
/**
* Generate the appropriate options object to create a dataset before sending it to the z/OS MF APIs
* @param {yargs.Arguments} commandArguments - The provided command arguments
* @return {ICreateDataSetOptions} Object to be sent
*/
export declare function generateZosmfOptions(commandArguments: Arguments): ICreateDataSetOptions;