我正在尝试使用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
标志可以更改显示的默认输出。
gcloud compute instances list --format="table(name,creationTimestamp)"
也可以从gcloud compute compertute comprice命令中检索实例创建时间:
gcloud compute instances describe yourInstance --zone=yourInstanceZone | grep creationTimestamp
或:
gcloud compute instances describe yourInstance --zone=yourInstanceZone --flatten=creationTimestamp