Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSTSAndServiceAccounts (0.25 sec)

  1. cmd/iam-store.go

    	return cache.updateUserWithClaims(accessKey, u)
    }
    
    // GetSTSAndServiceAccounts - returns all STS and Service account credentials.
    func (store *IAMStoreSys) GetSTSAndServiceAccounts() []auth.Credentials {
    	cache := store.rlock()
    	defer store.runlock()
    
    	return store.getSTSAndServiceAccounts(cache)
    }
    
    func (store *IAMStoreSys) getSTSAndServiceAccounts(cache *iamCache) []auth.Credentials {
    	var res []auth.Credentials
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 86.7K bytes
    - Viewed (0)
  2. cmd/iam.go

    func (sys *IAMSys) updateGroupMembershipsForLDAP(ctx context.Context) {
    	// 1. Collect all LDAP users with active creds.
    	allCreds := sys.store.GetSTSAndServiceAccounts()
    	// List of unique LDAP (parent) user DNs that have active creds
    	var parentUserActualDNList []string
    	// Map of LDAP user (internal representation) to list of active credential objects
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 75.3K bytes
    - Viewed (0)
Back to top