UNPKG

@sap-ai-sdk/prompt-registry

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

22 lines 586 B
import type { OrchestrationConfig } from './orchestration-config.js'; /** * Representation of the 'OrchestrationConfigResource' schema. */ export type OrchestrationConfigResource = { /** * Format: "uuid". */ id?: string; name?: string; version?: string; scenario?: string; /** * Format: "timestamp". */ creation_timestamp?: string; managed_by?: string; is_version_head?: boolean; resource_group_id?: string; spec?: OrchestrationConfig; } & Record<string, any>; //# sourceMappingURL=orchestration-config-resource.d.ts.map