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

18 lines 498 B
/** * Representation of the 'BckndGenericSecretDetails' schema. */ export type BckndGenericSecretDetails = { /** * Name of the secret */ name: string; /** * Timestamp at which secret was created */ createdAt: string; /** * Sync status of the replicated secrets in all resource groups of the tenant */ resourceGroupSecretsSyncStatus?: Record<string, boolean>; } & Record<string, any>; //# sourceMappingURL=bcknd-generic-secret-details.d.ts.map