From 38bb6eae784db04c951a1253409b13f2c79435f7 Mon Sep 17 00:00:00 2001 From: Vault Automation Date: Fri, 30 Jan 2026 18:45:35 -0500 Subject: [PATCH] Add PasswordModify to new LDAP Connection interface wrapper (#12094) (#12113) * Add method to ldap connection interface * Move to interface wrapper Co-authored-by: Robert <17119716+robmonte@users.noreply.github.com> --- sdk/helper/ldaputil/connection.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sdk/helper/ldaputil/connection.go b/sdk/helper/ldaputil/connection.go index 4a6537b140..3aa8d38c20 100644 --- a/sdk/helper/ldaputil/connection.go +++ b/sdk/helper/ldaputil/connection.go @@ -28,3 +28,8 @@ type PagingConnection interface { Connection SearchWithPaging(searchRequest *ldap.SearchRequest, pagingSize uint32) (*ldap.SearchResult, error) } + +type PasswordModifyConnection interface { + Connection + PasswordModify(passwordModifyRequest *ldap.PasswordModifyRequest) (*ldap.PasswordModifyResult, error) +}