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

25 lines 635 B
/** * Representation of the 'BckndArgoCDApplicationDataRequest' schema. */ export type BckndArgoCDApplicationDataRequest = { /** * URL of the repository to synchronise */ repositoryUrl: string; /** * revision to synchronise */ revision: string; /** * path within the repository to synchronise */ path: string; /** * ArgoCD application name in the request body * Max Length: 54. * Min Length: 3. * Pattern: "^[a-z0-9\\-]+$". */ applicationName?: string; } & Record<string, any>; //# sourceMappingURL=bcknd-argo-cd-application-data-request.d.ts.map