为什么 gcloud 看不到我的托管笔记本?

Why does gcloud not see my managed notebook?

我在 europe-west1-d 有一个 Vertex AI 管理的笔记本。我都尝试了(本地和笔记本):

gcloud notebooks instances list --location=europe-west1-d
gcloud compute instances list --filter="my-notebook-name" --format "[box]"

和两个 return 什么都没有。我错过了什么?

创建 Vertex AI 托管笔记本时,预计该实例不会出现在您的项目中。按照设计,笔记本实例是在 Google 托管项目中创建的,对最终用户不可见。

但是如果您想查看托管笔记本的实例详细信息,可以使用笔记本 API 向 runtimes.list 发送请求。请参阅示例请求:

project=your-project-here
location=us-central1 #adjust based on your location

curl -X GET -H "Content-Type: application/json" \
-H "Authorization: Bearer "$(gcloud auth application-default print-access-token) \
"https://notebooks.googleapis.com/v1/projects/${project}/locations/${location}/runtimes"

响应输出: