Skip to content

Commit a4d10d2

Browse files
satendra-harnessHarness
authored andcommitted
feat: [CDS-114695] Add GoogleManagedInstanceGroup infrastructure type (#705)
* 102918 feat: [CDS-114695] Add GoogleManagedInstanceGroup infrastructure type
1 parent 47e5bdf commit a4d10d2

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

harness/nextgen/enum_infrastructure_deployment_types.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

2527
var 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

3639
func (e InfrastructureDeploymenType) String() string {

harness/nextgen/enum_infrastructure_types.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

3739
var 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

5457
func (e InfrastructureType) String() string {

0 commit comments

Comments
 (0)