在 gcloud cli 中有没有办法列出最近一小时内创建的实例?
In glcoud cli is there a way to list Instance created in last one hour?
我正在寻找 gcloud CLI 命令来检索过去一小时内创建的所有实例
gcloud compute instances list
您可以像这样过滤结果。
gcloud compute instances list --filter="creationTimestamp>=2020-12-01T00:00:00"
然后,构建您想要的时间戳。
我正在寻找 gcloud CLI 命令来检索过去一小时内创建的所有实例
gcloud compute instances list
您可以像这样过滤结果。
gcloud compute instances list --filter="creationTimestamp>=2020-12-01T00:00:00"
然后,构建您想要的时间戳。