mirror of
https://github.com/LukeHagar/sailpoint-cli.git
synced 2025-12-06 04:21:15 +00:00
14 lines
381 B
PowerShell
14 lines
381 B
PowerShell
$ENT = @(
|
|
@{
|
|
op = "replace"
|
|
path = "/privileged"
|
|
value = $false
|
|
}
|
|
)
|
|
|
|
try {
|
|
Update-BetaEntitlement -Id "2c9180848366cdc701837b78f5ce58be" -JsonPatchOperation $ENT
|
|
} catch {
|
|
Write-Host ("Exception occurred when calling Update-BetaEntitlement: {0}" -f $_.ErrorDetails)
|
|
Write-Host ("Response headers: {0}" -f $_.Exception.Response.Headers)
|
|
} |