Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PolicyDBUpdateLDAP (0.06 sec)

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

    	if err := par.IsValid(); err != nil {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminConfigBadJSON), r.URL)
    		return
    	}
    
    	// Call IAM subsystem
    	updatedAt, addedOrRemoved, _, err := globalIAMSys.PolicyDBUpdateLDAP(ctx, isAttach, par)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	respBody := madmin.PolicyAssociationResp{
    		UpdatedAt: updatedAt,
    	}
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 08 02:46:04 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  2. cmd/iam.go

    		},
    		UpdatedAt: updatedAt,
    	}))
    
    	return updatedAt, addedOrRemoved, effectivePolicies, err
    }
    
    // PolicyDBUpdateLDAP - adds or removes policies from a user or a group verified
    // to be in the LDAP directory.
    func (sys *IAMSys) PolicyDBUpdateLDAP(ctx context.Context, isAttach bool,
    	r madmin.PolicyAssociationReq,
    ) (updatedAt time.Time, addedOrRemoved, effectivePolicies []string, err error) {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Oct 15 17:00:45 UTC 2025
    - 76.5K bytes
    - Viewed (0)
Back to top