Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DeleteUsers (0.59 sec)

  1. cmd/iam.go

    		// If user is set to "disabled", we will remove them
    		// subsequently.
    		if !u.Enabled {
    			expiredUsers = append(expiredUsers, parentUser)
    		}
    	}
    
    	// We ignore any errors
    	_ = sys.store.DeleteUsers(ctx, expiredUsers)
    }
    
    // purgeExpiredCredentialsForLDAP - validates if local credentials are still
    // valid by checking LDAP server if the relevant users are still present.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 75.3K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    	}
    
    	if revoked {
    		cache.updatedAt = time.Now()
    	}
    
    	return nil
    }
    
    // DeleteUsers - given a set of users or access keys, deletes them along with
    // any derived credentials (STS or service accounts) and any associated policy
    // mappings.
    func (store *IAMStoreSys) DeleteUsers(ctx context.Context, users []string) error {
    	cache := store.lock()
    	defer store.unlock()
    
    	var deleted bool
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 86.7K bytes
    - Viewed (0)
Back to top