Google 的云 SDK 没有 return `createTime`

Google's cloud SDK doesn't return `createTime`

我正在尝试使用 cloud sdk 列出有关某些实例的信息,但由于某种原因,未返回 createTime 字段。知道为什么吗?

$ gcloud compute instances list --format="table(name,createTime)" --filter="name:florin*"
NAME                         CREATE_TIME
florin-ubuntu-18-playground

这应该根据这个 https://cloud.google.com/sdk/gcloud/reference/topic/filters

命令gcloud compute instances list默认不显示实例创建时间。但是 gcloud --format flag 可以更改显示的默认输出。

gcloud compute instances list --format="table(name,creationTimestamp)"

也可以从 gcloud compute describe command:

检索实例创建时间
gcloud compute instances describe yourInstance --zone=yourInstanceZone | grep creationTimestamp

或者:

gcloud compute instances describe yourInstance --zone=yourInstanceZone --flatten=creationTimestamp