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 501 B
import type { AiScalingDetails } from './ai-scaling-details.js'; import type { AiResourcesDetails } from './ai-resources-details.js'; /** * Detail information about a deployment (including predefined sections: `scaling` and `resources`). * JSON String representation of this object is limited to 5000 characters * */ export type AiDeploymentDetails = { scaling?: AiScalingDetails; resources?: AiResourcesDetails; } & Record<string, any>; //# sourceMappingURL=ai-deployment-details.d.ts.map