GCP的Vertex AI(AI平台)PipeLineserviceClient给出了不完美的错误
尝试使用 pipelineserviceclient
list_pipeline_jobs
方法给定here, I get the following error:
_InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.UNIMPLEMENTED
details = "Received http2 header with status: 404"
...
How is the API unimplemented, how do I resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们这里缺少两件事:
端点的格式:端口
list_pipeline_jobs
。示例:对于
Asia-South1
区域,我们将写一个这样的呼叫:注意:
gapic
可以用v1 或
v1beta1
调用。There are two things we are missing here:
endpoint:port
list_pipeline_jobs
.Example: for
asia-south1
region, we would write a call like this:Note:
gapic
can be replaced withv1
orv1beta1
calls.