Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetSTSAndServiceAccounts (0.16 sec)

  1. cmd/iam-store.go

    		return err
    	}
    
    	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()
    
    	var res []auth.Credentials
    	for _, u := range cache.iamUsersMap {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Oct 14 16:35:37 UTC 2024
    - 83.2K 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 29 16:01:48 UTC 2024
    - 74.6K bytes
    - Viewed (0)
Back to top