- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for stsMap (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/iam-store.go
// Load existing policy mapping var mp MappedPolicy if !isGroup { if userType == stsUser { stsMap := xsync.NewMapOf[string, MappedPolicy]() // Attempt to load parent user mapping for STS accounts store.loadMappedPolicy(context.TODO(), name, stsUser, false, stsMap) mp, _ = stsMap.Load(name) } else { mp, _ = cache.iamUserPolicyMap.Load(name) } } else {Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 87.1K bytes - Click Count (0) -
cmd/iam.go
return nil, errIAMActionNotAllowed } select { case <-sys.configLoaded: stsMap, err := sys.store.GetAllSTSUserMappings(sys.LDAPConfig.IsLDAPUserDN) if err != nil { return nil, err } ldapUsers := make(map[string]madmin.UserInfo, len(stsMap)) for user, policy := range stsMap { ldapUsers[user] = madmin.UserInfo{ PolicyName: policy, Status: statusEnabled, } }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Oct 15 17:00:45 GMT 2025 - 76.5K bytes - Click Count (0)