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**.

12 lines 451 B
import type { AiDeploymentId } from './ai-deployment-id.js'; /** * Request object for changing the target status of a deployment ( STOPPED and DELETED are supported) */ export type AiDeploymentModificationRequestWithIdentifier = { id: AiDeploymentId; /** * Deployment target status */ targetStatus: 'STOPPED' | 'DELETED'; } & Record<string, any>; //# sourceMappingURL=ai-deployment-modification-request-with-identifier.d.ts.map