@@ -970,7 +970,6 @@ def create_or_get_manage_api_key_for_user(self, user_id, temporary=False):
970970 # otherwise, retrieve the apikey (either it already existed, or we just created it)
971971
972972 apikey = self .get_manage_api_key_for_user (user_id )
973- self .logger .info (f"Retrieved Manage API Key for user { user_id } : { apikey } " )
974973 if apikey is None :
975974 # either create call reported that apikey already exists, or we created the api key
976975 # so we expect the get call to find it
@@ -1203,8 +1202,6 @@ def add_user_to_manage_group(self, user_id, group_name, manage_api_key):
12031202 json = payload ,
12041203 verify = self .manage_internal_ca_pem_file_path ,
12051204 )
1206- self .logger .info (f"Response status code: { response .status_code } " )
1207- self .logger .info (f"Response text: { response .text } " )
12081205 if response .status_code == 204 :
12091206 return None
12101207
@@ -1505,13 +1502,19 @@ def create_initial_user_for_saas(self, user, user_type, groupreassign=None):
15051502 Exception: If required fields are missing or user creation fails.
15061503
15071504 Note:
1505+ For version < 9.1,
15081506 PRIMARY users get:
15091507 - userAdmin permission
1508+ - PREMIUM application entitlement
1509+ - Workspace admin access
1510+ - ADMIN role for most apps, MANAGEUSER for Manage
1511+ - MAXADMIN security group membership
1512+
1513+ For version >= 9.1,
1514+ PRIMARY users get:
15101515 - apikeyAdmin permission (API Key Management)
15111516 - idpAdmin permission (IDP Management)
1512- - PREMIUM application entitlement
15131517 - Regular workspace access (not workspace admin)
1514- - ADMIN role for most apps, MANAGEUSER for Manage
15151518 - USERMANAGEMENT security group membership
15161519 - Group reassignment authorization for ALL security groups
15171520
0 commit comments