Skip to main content

JsonPatchOperations

Properties

NameTypeDescriptionNotes
OpEnum [ "add", "remove", "replace" ]The operation to be performed[required]
PathStringA string representing the target path to an element to be affected by the operation[required]
ValueJsonPatchOperationsValue[optional]

Examples

  • Prepare the resource
$JsonPatchOperations = Initialize-PSSailpoint.BetaJsonPatchOperations  -Op replace `
-Path /dismissed `
-Value null
  • Convert the resource to JSON
$JsonPatchOperations | ConvertTo-JSON

[Back to top]