mirror of
https://github.com/foomo/posh-providers.git
synced 2025-10-16 12:35:41 +00:00
13 lines
274 B
Go
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"`
|
|
}
|