@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**.
14 lines • 618 B
TypeScript
import type { TrckExecutionId } from './trck-execution-id.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;
metrics?: TrckGetMetricList;
tags?: TrckTagList;
customInfo?: TrckCustomInfoObjectList;
} & Record<string, any>;
//# sourceMappingURL=trck-get-metric-resource.d.ts.map