UNPKG

@zowe/provisioning-for-zowe-sdk

Version:

Zowe SDK to interact with the z/OS provisioning APIs

45 lines 1.15 kB
import { IExplanationMap } from "@zowe/imperative"; /** * Interface for the response body returned from the creation of a workflow. * @export * @interface ITemplateWorkflowInfo */ export interface ITemplateWorkflowInfo { /** * Unique workflow key. * @type {string} * @memberof ITemplateWorkflowInfo */ workflowKey: string; /** * Description of the workflow. * @type {string} * @memberof ITemplateWorkflowInfo */ workflowDescription: string; /** * ID of the workflow. * @type {string} * @memberof ITemplateWorkflowInfo */ workflowID: string; /** * Version of the workflow. * @type {string} * @memberof ITemplateWorkflowInfo */ workflowVersion: string; /** * Vendor name. * @type {string} * @memberof ITemplateWorkflowInfo */ vendor: string; } /** * Main explanation map object for workflow-info response output. * @type {IExplanationMap} * @memberof ITemplateRegistryInfo */ export declare const explainTemplateWorkflowInfoResponse: IExplanationMap; //# sourceMappingURL=ITemplateWorkflowInfo.d.ts.map