mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
Update PowerShell SDK docs: 16507204442
This commit is contained in:
@@ -504,7 +504,7 @@ try {
|
||||
## patch-entitlement
|
||||
This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
|
||||
|
||||
The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description**, and **manuallyUpdatedFields**
|
||||
The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description**, **privilegeOverride/overrideLevel** and **manuallyUpdatedFields**
|
||||
|
||||
When you're patching owner, only owner type and owner id must be provided. Owner name is optional, and it won't be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY.
|
||||
|
||||
@@ -684,11 +684,11 @@ This API applies an update to every entitlement of the list.
|
||||
The number of entitlements to update is limited to 50 items maximum.
|
||||
|
||||
|
||||
The JsonPatch update follows the [JSON
|
||||
Patch](https://tools.ietf.org/html/rfc6902) standard. allowed operations :
|
||||
`**{ "op": "replace", "path": "/privileged", "value": boolean }** **{ "op":
|
||||
"replace", "path": "/requestable","value": boolean }**`
|
||||
|
||||
The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
||||
examples of allowed operations :
|
||||
`**{ "op": "replace", "path": "/privileged", "value": boolean }**`
|
||||
`**{ "op": "replace", "path": "/requestable","value": boolean }**`
|
||||
`**{ "op": "replace", "path": "/privilegeOverride/overrideLevel","value": string }**`
|
||||
|
||||
A token with ORG_ADMIN or API authority is required to call this API.
|
||||
|
||||
@@ -729,6 +729,10 @@ $EntitlementBulkUpdateRequest = @"{
|
||||
"op" : "replace",
|
||||
"path" : "/requestable",
|
||||
"value" : false
|
||||
}, {
|
||||
"op" : "replace",
|
||||
"path" : "/privilegeOverride/overrideLevel",
|
||||
"value" : "HIGH"
|
||||
} ]
|
||||
}"@
|
||||
|
||||
|
||||
Reference in New Issue
Block a user