我正在尝试使用最近宣布为 GA 的 Datastore Admin API v1,我想知道在哪里可以找到相关 API 的 protobuf?
我在googleapis存储库中找到了一些 protobuf,但只有已弃用的 Datastore Admin API v1beta1 的 protobuf。
此外,我想问是否有人知道为什么 Admin API 原型没有在 Maven Central 中发布?
一般的 Datastore API 原型是.
我正在尝试使用最近宣布为 GA 的 Datastore Admin API v1,我想知道在哪里可以找到相关 API 的 protobuf?
我在googleapis存储库中找到了一些 protobuf,但只有已弃用的 Datastore Admin API v1beta1 的 protobuf。
此外,我想问是否有人知道为什么 Admin API 原型没有在 Maven Central 中发布?
一般的 Datastore API 原型是.
哎呀。
同时,您可以使用现有的原型并更改一行:
从:
package google.datastore.admin.v1beta1;
至:
package google.datastore.admin.v1;
看起来 Admin API 的 protobuf 定义现在可以通过googleapis存储库获得。
但它们尚未发布到 Maven 中心。