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 378 B
import type { BckndResourceGroup } from './bcknd-resource-group.js'; /** * Representation of the 'BckndResourceGroupList' schema. */ export type BckndResourceGroupList = { /** * Number of the resource instances in the list */ count: number; resources: BckndResourceGroup[]; } & Record<string, any>; //# sourceMappingURL=bcknd-resource-group-list.d.ts.map