Hello team!
We recently upgraded to 1.0.2 and faced an error while fetching the secrets from the list_secrets() method.
Error: TypeError: BaseSecret.init() got an unexpected keyword argument 'secretMetadata'
Potential reason: In the ListSecretsResponse model, we have secrets as secrets: List[BaseSecret](
|
secrets: List[BaseSecret] |
).
However, in the BaseSecret model, we do not have a param named secretMetadata(code), but we do get this field from the API response.
Maybe we might have to update the BaseSecret model accordingly, let me know, Cheers!