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

17 lines 739 B
import type { TrckExecutionId } from './trck-execution-id.js'; import type { TrckTimestamp } from './trck-timestamp.js'; import type { TrckGetMetricList } from './trck-get-metric-list.js'; import type { TrckTagList } from './trck-tag-list.js'; import type { TrckCustomInfoObjectList } from './trck-custom-info-object-list.js'; /** * Collection of various metrics/tags/labels associated against some execution/deployment */ export type TrckGetMetricResource = { executionId: TrckExecutionId; createdAt?: TrckTimestamp; modifiedAt?: TrckTimestamp; metrics?: TrckGetMetricList; tags?: TrckTagList; customInfo?: TrckCustomInfoObjectList; } & Record<string, any>; //# sourceMappingURL=trck-get-metric-resource.d.ts.map