Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stsKeys (0.47 sec)

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

    		accessKeys := madmin.ListAccessKeysLDAPResp{}
    		if listSTSKeys {
    			stsKeys, err := globalIAMSys.ListSTSAccounts(ctx, internalDN)
    			if err != nil {
    				writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    				return
    			}
    			for _, sts := range stsKeys {
    				accessKeys.STSKeys = append(accessKeys.STSKeys, madmin.ServiceAccountInfo{
    					AccessKey:  sts.AccessKey,
    					Expiration: &sts.Expiration,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 08 02:46:04 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  2. cmd/admin-handlers-idp-openid.go

    		}
    		if accessKey.IsServiceAccount() {
    			openIDUserAccessKeys.ServiceAccounts = append(openIDUserAccessKeys.ServiceAccounts, svcAccInfo)
    		} else {
    			openIDUserAccessKeys.STSKeys = append(openIDUserAccessKeys.STSKeys, svcAccInfo)
    		}
    		cfgToUsersMap[matchingCfgName][accessKey.ParentUser] = openIDUserAccessKeys
    	}
    
    	// Convert map to slice and sort
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:38:46 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    		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 {
    				accessKeys.STSKeys = append(accessKeys.STSKeys, madmin.ServiceAccountInfo{
    					AccessKey:  sts.AccessKey,
    					Expiration: &sts.Expiration,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 90.6K bytes
    - Viewed (0)
Back to top