Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for GetSTSAndServiceAccounts (0.09 seconds)

  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
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 87.1K bytes
    - Click Count (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
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Oct 15 17:00:45 GMT 2025
    - 76.5K bytes
    - Click Count (0)
Back to Top