This repository hosts the gRPC API for the Database standard. The interfaces defined in the gRPC specification are meant to be the common interface for database object provisioning and management across various database object vendors.
-
database.proto
is generated from the specification defined inspec.md
-
In order to update the API, make changes to
spec.md
. Then, generatedatabase.proto
using:
# generates cosi.proto
make generate-spec
- Do it all in 1 step:
# generates database.proto and builds the go bindings
make all