Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NormalizeLDAPAccessKeypairs (0.36 sec)

  1. cmd/iam.go

    				iamLogIf(GlobalContext, err)
    			}
    		}
    	}
    }
    
    // NormalizeLDAPAccessKeypairs - normalize the access key pairs (service
    // accounts) for LDAP users. This normalizes the parent user and the group names
    // whenever the parent user parses validly as a DN.
    func (sys *IAMSys) NormalizeLDAPAccessKeypairs(ctx context.Context, accessKeyMap map[string]madmin.SRSvcAccCreate,
    ) (err error) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
  2. cmd/admin-handlers-users.go

    				return
    			}
    
    			// Validations for LDAP enabled deployments.
    			if globalIAMSys.LDAPConfig.Enabled() {
    				err := globalIAMSys.NormalizeLDAPAccessKeypairs(ctx, serviceAcctReqs)
    				if err != nil {
    					writeErrorResponseJSON(ctx, w, importError(ctx, err, allSvcAcctsFile, ""), r.URL)
    					return
    				}
    			}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 77.5K bytes
    - Viewed (0)
Back to top