entra-powershell
entra-powershell copied to clipboard
[1.0.1] Inconsistent verbs for changing user's password
Set to change users' password. Update to change signed-in user's password.
PS> gcm *entra*user*password
Name
----
Set-EntraBetaUserPassword
Set-EntraUserPassword
Update-EntraBetaSignedInUserPassword
Update-EntraSignedInUserPassword
Just double-checking for reference: https://github.com/microsoftgraph/entra-powershell/blob/main/development-docs/design-guidelines/cmdlet-best-practices.md
Set vs. Update
If your cmdlet is performing a PATCH operation (_that is, a partial replacement on the server), then the cmdlet should use the verb Update.
If your cmdlet is performing a PUT operation (_that is, a full replacement on the server), the cmdlet should use the verb Set.
This is linked to issue: #1154 which was closed by this change #1516 . The updated naming is published under of v1.0.11