I'm using Oracle database plugin, I wanted to access specific API path like `database/config/DBName` and change DB connection string within the plugin.
Is it possible to call the vault process API via the database plugin?
For example inside this method
func (o *Oracle) SetCredentials(ctx context.Context, statements dbplugin.Statements, staticUser dbplugin.StaticUserConfig) (username, password string, err error)
I want to read and write to this API path `database/config/DBName`, in other words, Do we have a client object in database plugin so we can use it to communicate through vault API with vault process?