检索 GCP 实例的总 RAM 量

Retrieving total RAM amount of a GCP instance

我想知道是否可以通过 Google SDK 和 gcloud 命令在 linux shell 上检索总 RAM GCP 实例的数量。我已经尝试使用 gcloud compute instances describe 但它似乎并没有表明我在寻找什么。

你有什么建议吗?

谢谢。

您可以通过这种方式获取实例的机器类型

gcloud compute instances list INSTANCE --format="value(machineType.scope(machineTypes))"

并这样描述它的机器类型

gcloud compute machine-types describe NAME

因此为您提供 RAM 和其他一些特性。