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.

74 lines (73 loc) 1.67 kB
/** * Interface for z/OSMF API response. * @export * @interface IWorkflowsInfo */ export interface IWorkflowsInfo { /** * The user ID that identifies the owner of the software. * @type {string} * @memberof IWorkflowsInfo */ owner?: string; /** * Unique workflow key. * @type {string} * @memberof IWorkflowsInfo */ workflowKey?: string; /** * Descriptive name for the workflow. * @type {string} * @memberof IWorkflowsInfo */ workflowName?: string; /** * Version of the workflow. * @type {string} * @memberof IWorkflowsInfo */ workflowVersion?: string; /** * Description of the workflow. * @type {string} * @memberof IWorkflowsInfo */ workflowDescription?: string; /** * Short ID that identifies the workflow. * @type {string} * @memberof IWorkflowsInfo */ workflowID?: string; /** * The vendor of the software. * @type {string} * @memberof IWorkflowsInfo */ vendor?: string; /** * Nickname of the system on which the workflow is to be performed. * @type {string} * @memberof IWorkflowsInfo */ system?: string; /** * The category of the software workflow. * @type {string} * @memberof IWorkflowsInfo */ category?: string; /** * Indicates the current workflow status. * @type {string} * @memberof IWorkflowsInfo */ statusName?: string; /** * Indicates the URI of archived workflow. * @type {string} * @memberof IWorkflowsInfo */ archivedInstanceURI?: string; }