Reputation: 483
I'm trying to use the Datastore Admin API v1 that was recently announced GA and wanted to wonder where can I find protobufs for the related API?
I have found some protobufs within the googleapis repository, but there are only protobufs for the Datastore Admin API v1beta1 that is already deprecated.
Moreover, I wanted to ask if anyone knows why Admin API protos are not published in Maven Central?
The general Datastore API protos are.
Upvotes: 3
Views: 137
Reputation: 483
Looks like protobuf definitions for the Admin API are now available through the googleapis repository.
But they are not yet published to the Maven Central.
Upvotes: 0
Reputation: 42038
Oops.
In the meantime, you can take that existing proto and change one line:
From:
package google.datastore.admin.v1beta1;
To:
package google.datastore.admin.v1;
Upvotes: 3