@zowe/provisioning-for-zowe-sdk
Version:
Zowe SDK to interact with the z/OS provisioning APIs
22 lines • 660 B
TypeScript
import { IExplanationMap } from "@zowe/imperative";
/**
* z/OSMF response when to perform an action on a provisioned instance.
* @export
* @interface IPerformActionResponse
*/
export interface IPerformActionResponse {
/**
* The ID of the action object that was created by running the action.
* @type {string}
* @memberof IPerformActionResponse
*/
"action-id": string;
/**
* The URI of the new action object.
* @type {string}
* @memberof IPerformActionResponse
*/
"action-uri": string;
}
export declare const explainActionResponse: IExplanationMap;
//# sourceMappingURL=IPerformActionResponse.d.ts.map