posh-providers/google/gcloud/cluster.go
2023-02-14 17:31:55 +01:00

13 lines
274 B
Go

package gcloud
const (
ClusterNameDefault string = "default"
)
type Cluster struct {
Name string `json:"name" yaml:"name"`
Project string `json:"project" yaml:"project"`
Region string `json:"region" yaml:"region"`
Account string `json:"account" yaml:"account"`
}