Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ListSTSAccounts (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/admin-handlers-idp-ldap.go

    		// default to both
    		listType = ""
    	}
    
    	var serviceAccounts []auth.Credentials
    	var stsKeys []auth.Credentials
    
    	if listType == "" || listType == "sts-only" {
    		stsKeys, err = globalIAMSys.ListSTSAccounts(ctx, targetAccount)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    	}
    	if listType == "" || listType == "svcacc-only" {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 08 02:46:04 GMT 2025
    - 19.2K bytes
    - Click Count (0)
  2. cmd/admin-handlers-users.go

    	}
    
    	accessKeyMap := make(map[string]madmin.ListAccessKeysResp)
    	for _, user := range checkedUserList {
    		accessKeys := madmin.ListAccessKeysResp{}
    		if listSTSKeys {
    			stsKeys, err := globalIAMSys.ListSTSAccounts(ctx, user)
    			if err != nil {
    				writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    				return
    			}
    			for _, sts := range stsKeys {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 90.6K bytes
    - Click Count (0)
Back to Top