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.

18 lines 695 B
import { IHandlerParameters } from "@zowe/imperative"; import { ZosmfBaseHandler } from "@zowe/zosmf-for-zowe-sdk"; /** * Handler to list instance info * @export * @class Handler * @implements {ICommandHandler} */ export default class InstanceInfoHandler extends ZosmfBaseHandler { processCmd(commandParameters: IHandlerParameters): Promise<void>; /** * Format the output of instance summary data, options may be used to further refine the output * @param {IProvisionedInstance} instance: one or more provisioned instance * @param option: command options */ private formatProvisionedInstanceSummaryOutput; } //# sourceMappingURL=InstanceInfo.handler.d.ts.map