From b04ba4b618fbf33bd59e62f2df10b4874896a2ad Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Mon, 3 Feb 2025 15:55:59 +0000 Subject: [PATCH] create cigroup now supports security label --- src/gam/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gam/__init__.py b/src/gam/__init__.py index 66e66b667..3e159c11d 100755 --- a/src/gam/__init__.py +++ b/src/gam/__init__.py @@ -31731,6 +31731,8 @@ def doCreateGroup(ciGroupsAPI=False): 'query': getString(Cmd.OB_QUERY)}) elif ciGroupsAPI and myarg == 'makeowner': initialGroupConfig = 'WITH_INITIAL_OWNER' + elif ciGroupsAPI and myarg == 'security': + body['labels'][CIGROUP_SECURITY_LABEL] = '' elif myarg == 'verifynotinvitable': verifyNotInvitable = True else: @@ -34609,6 +34611,7 @@ def doPrintShowGroupTree(): # gam create cigroup [copyfrom ] # [makeowner] [alias|aliases ] [dynamic ] +# [security] def doCreateCIGroup(): doCreateGroup(ciGroupsAPI=True)