結論
~/.config/gcloud/configurations
内にあるファイルのファイル名を変更する。
補足
上記の場所にあるファイル名は接頭語として config_
が付与されています。接頭語を除いた文字列が configuration の名称となります。
例
$ ls ~/.config/gcloud/configurations config_foo config_bar $ gcloud config configurations list NAME IS_ACTIVE ACCOUNT PROJECT COMPUTE_DEFAULT_ZONE COMPUTE_DEFAULT_REGION foo ... bar ... $ mv ~/.config/gcloud/configurations/config_foo ~/.config/gcloud/configurations/config_hogehoge $ gcloud config configurations list NAME IS_ACTIVE ACCOUNT PROJECT COMPUTE_DEFAULT_ZONE COMPUTE_DEFAULT_REGION hogehoge ... bar ...
変更後はアクティベートしておきましょう。
$ gcloud config configurations activate hogehoge Activated [hogehoge].