JsonPatchOperations
Properties
Name | Type | Description | Notes |
---|---|---|---|
Op | Enum [ "add", "remove", "replace" ] | The operation to be performed | [required] |
Path | String | A string representing the target path to an element to be affected by the operation | [required] |
Value | JsonPatchOperationsValue | [optional] |
Examples
- Prepare the resource
$JsonPatchOperations = Initialize-PSSailpoint.BetaJsonPatchOperations -Op replace `
-Path /dismissed `
-Value null
- Convert the resource to JSON
$JsonPatchOperations | ConvertTo-JSON