xSAVIKx
xSAVIKx

Reputation: 483

Where can I find Protobuf definitions for Datastore Admin v1 API?

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

Answers (2)

xSAVIKx
xSAVIKx

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

Dan McGrath
Dan McGrath

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

Related Questions