From f4e5cad6acef4e98aadee28983feb5fda6ecd48e Mon Sep 17 00:00:00 2001 From: Anmol Maheshwari Date: Wed, 6 Nov 2024 14:58:56 +0530 Subject: [PATCH] feat:[CCM-20085]: Add Governance as feature in CCM Connector Features (#595) --- harness/nextgen/enum_ccm_features.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/harness/nextgen/enum_ccm_features.go b/harness/nextgen/enum_ccm_features.go index 22bccbc6..5348913d 100644 --- a/harness/nextgen/enum_ccm_features.go +++ b/harness/nextgen/enum_ccm_features.go @@ -6,16 +6,19 @@ var CCMFeatures = struct { Billing CCMFeature Optimization CCMFeature Visibility CCMFeature + Governance CCMFeature }{ Billing: "BILLING", Optimization: "OPTIMIZATION", Visibility: "VISIBILITY", + Governance: "GOVERNANCE", } var CCMFeaturesSlice = []string{ CCMFeatures.Billing.String(), CCMFeatures.Optimization.String(), CCMFeatures.Visibility.String(), + CCMFeatures.Governance.String(), } func (e CCMFeature) String() string {