Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    		return
    	}
    
    	writeSuccessResponseJSON(w, encryptedData)
    }
    
    // AddServiceAccountLDAP adds a new service account for provided LDAP username or DN
    //
    // PUT /minio/admin/v3/idp/ldap/add-service-account
    func (a adminAPIHandlers) AddServiceAccountLDAP(w http.ResponseWriter, r *http.Request) {
    	ctx, cred, opts, createReq, targetUser, APIError := commonAddServiceAccount(r)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  2. cmd/admin-router.go

    		// LDAP specific service accounts ops
    		adminRouter.Methods(http.MethodPut).Path(adminVersion + "/idp/ldap/add-service-account").HandlerFunc(adminMiddleware(adminAPI.AddServiceAccountLDAP))
    		adminRouter.Methods(http.MethodGet).Path(adminVersion+"/idp/ldap/list-access-keys").
    			HandlerFunc(adminMiddleware(adminAPI.ListAccessKeysLDAP)).
    			Queries("userDN", "{userDN:.*}", "listType", "{listType:.*}")
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Mar 10 21:09:36 GMT 2024
    - 25.5K bytes
    - Viewed (0)
Back to top