@zowe/zos-workflows-for-zowe-sdk
Version:
Zowe SDK to interact with the z/OS workflows APIs
15 lines • 732 B
TypeScript
import { AbstractSession } from "@zowe/imperative";
/**
* Class to handle deletion of an archived z/OSMF workflow from a z/OS system
*/
export declare class ArchivedDeleteWorkflow {
/**
* Delete archived workflow
* @param {AbstractSession} session - z/OSMF connection info
* @param {string} workflowKey - Unique identifier of the workflow instance.
* @param {string} zOSMFVersion - Identifies the version of the zOSMF workflow service.
* @returns {string}
*/
static archivedDeleteWorkflow(session: AbstractSession, workflowKey: string, zOSMFVersion?: string): Promise<string>;
}
//# sourceMappingURL=ArchivedDelete.d.ts.map