Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/JsonPatchOperations.md
2025-05-07 14:37:48 +00:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-json-patch-operations JsonPatchOperations JsonPatchOperations JsonPatchOperations powershellsdk
powershell
PowerShell
sdk
JsonPatchOperations
BetaJsonPatchOperations
/tools/sdk/powershell/beta/models/json-patch-operations
SDK
Software Development Kit
JsonPatchOperations
BetaJsonPatchOperations

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-BetaJsonPatchOperations  -Op replace `
 -Path /dismissed `
 -Value null
  • Convert the resource to JSON
$JsonPatchOperations | ConvertTo-JSON

[Back to top]