UNPKG

@sap-ai-sdk/ai-api

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

10 lines 375 B
/** * Request object for changing the target status of an execution (currently only STOPPED is supported) */ export type AiExecutionModificationRequest = { /** * Desired target status of the execution (currently only STOPPED is supported) */ targetStatus: 'STOPPED'; } & Record<string, any>; //# sourceMappingURL=ai-execution-modification-request.d.ts.map