* Retrieve a secret value by key * @param key Secret identifier (typically the secret ID) * @param options Optional retrieval options such as a version override * @returns Secret value or null if not found
(
key: string,
options?: { version?: number },
)
| 55 | * @returns Secret value or null if not found |
| 56 | */ |
| 57 | get( |
| 58 | key: string, |
| 59 | options?: { version?: number }, |
| 60 | ): Promise<{ value: string; version: number } | null>; |
no outgoing calls