Initialize the database plugin. This is the equivalent of a constructor for the database object itself.
(ctx context.Context, req dbplugin.InitializeRequest)
| 63 | // Initialize the database plugin. This is the equivalent of a constructor for the |
| 64 | // database object itself. |
| 65 | func (c *CloudSQL) Initialize(ctx context.Context, req dbplugin.InitializeRequest) (dbplugin.InitializeResponse, error) { |
| 66 | return c.delegateVaultPlugin.Initialize(ctx, req) |
| 67 | } |
| 68 | |
| 69 | // NewUser creates a new user within the database. This user is temporary in that it |
| 70 | // will exist until the TTL expires. |
nothing calls this directly
no outgoing calls
no test coverage detected