File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ var InfrastructureDeploymenTypes = struct {
1111 AZURE_WEBAPP InfrastructureDeploymenType
1212 CUSTOM InfrastructureDeploymenType
1313 ECS InfrastructureDeploymenType
14+ GOOGLE_MIG InfrastructureDeploymenType
1415}{
1516 KUBERNETES : "Kubernetes" ,
1617 NATIVE_HELM : "NativeHelm" ,
@@ -20,6 +21,7 @@ var InfrastructureDeploymenTypes = struct {
2021 AZURE_WEBAPP : "AzureWebApp" ,
2122 CUSTOM : "Custom" ,
2223 ECS : "ECS" ,
24+ GOOGLE_MIG : "GoogleManagedInstanceGroup" ,
2325}
2426
2527var InfrastructureDeploymentypeValues = []string {
@@ -31,6 +33,7 @@ var InfrastructureDeploymentypeValues = []string{
3133 InfrastructureDeploymenTypes .AZURE_WEBAPP .String (),
3234 InfrastructureDeploymenTypes .CUSTOM .String (),
3335 InfrastructureDeploymenTypes .ECS .String (),
36+ InfrastructureDeploymenTypes .GOOGLE_MIG .String (),
3437}
3538
3639func (e InfrastructureDeploymenType ) String () string {
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ var InfrastructureTypes = struct {
1717 TAS InfrastructureType
1818 KUBERNETES_RANCHER InfrastructureType
1919 AWS_SAM InfrastructureType
20+ GOOGLE_MIG InfrastructureType
2021}{
2122 KUBERNETES_DIRECT : "KubernetesDirect" ,
2223 KUBERNETES_GCP : "KubernetesGcp" ,
@@ -32,6 +33,7 @@ var InfrastructureTypes = struct {
3233 TAS : "TAS" ,
3334 KUBERNETES_RANCHER : "KubernetesRancher" ,
3435 AWS_SAM : "AWS_SAM" ,
36+ GOOGLE_MIG : "GoogleManagedInstanceGroup" ,
3537}
3638
3739var InfrastructureTypeValues = []string {
@@ -49,6 +51,7 @@ var InfrastructureTypeValues = []string{
4951 InfrastructureTypes .TAS .String (),
5052 InfrastructureTypes .KUBERNETES_RANCHER .String (),
5153 InfrastructureTypes .AWS_SAM .String (),
54+ InfrastructureTypes .GOOGLE_MIG .String (),
5255}
5356
5457func (e InfrastructureType ) String () string {
You can’t perform that action at this time.
0 commit comments