@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**.
26 lines • 533 B
TypeScript
/**
* Representation of the 'BckndService' schema.
*/
export type BckndService = {
/**
* service name
*/
name?: string;
/**
* service description
*/
description?: string;
/**
* service broker url
*/
url?: string;
/**
* aggregated status of the service
*/
status?: 'PROVISIONED' | 'ERROR' | 'PROVISIONING' | 'DEPROVISIONING';
/**
* status message
*/
statusMessage?: string;
} & Record<string, any>;
//# sourceMappingURL=bcknd-service.d.ts.map