From 97506433501e6baae2dff492fe09b594f5f22aab Mon Sep 17 00:00:00 2001 From: TechnoSavage Date: Thu, 22 Jan 2026 09:01:43 -0500 Subject: [PATCH 1/2] Better handling of Centra labels with whitespaces through when mapping to asset tags through use of strip() and replace() methods. --- akamai-guardicore-centra/custom-integration-centra-v4-api.star | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akamai-guardicore-centra/custom-integration-centra-v4-api.star b/akamai-guardicore-centra/custom-integration-centra-v4-api.star index 801cb1f..a3fe5e2 100644 --- a/akamai-guardicore-centra/custom-integration-centra-v4-api.star +++ b/akamai-guardicore-centra/custom-integration-centra-v4-api.star @@ -77,7 +77,7 @@ def build_assets(assets, token): tags = [] for label in label_names: split_label = label.split(':') - tag = split_label[0] + '=' + split_label[1] + tag = split_label[0].strip().replace(' ', '_') + '=' + split_label[1].strip().replace(' ', '_') tags.append(tag) From f19fd3f878a37d45708bf8cc4257c23033fda12a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 22 Jan 2026 14:03:19 +0000 Subject: [PATCH 2/2] Auto: update integrations JSON and README --- docs/integrations.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations.json b/docs/integrations.json index de88720..41150df 100644 --- a/docs/integrations.json +++ b/docs/integrations.json @@ -1,5 +1,5 @@ { - "lastUpdated": "2026-01-15T15:32:00.895289Z", + "lastUpdated": "2026-01-22T14:03:19.649909Z", "totalIntegrations": 32, "integrationDetails": [ {