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

967 B

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-sed-patch SedPatch SedPatch SedPatch powershellsdk
powershell
PowerShell
sdk
SedPatch
BetaSedPatch
/tools/sdk/powershell/beta/models/sed-patch
SDK
Software Development Kit
SedPatch
BetaSedPatch

SedPatch

Properties

Name Type Description Notes
Op String desired operation [optional]
Path String field to be patched [optional]
Value [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 value to replace with [optional]

Examples

  • Prepare the resource
$SedPatch = Initialize-BetaSedPatch  -Op replace `
 -Path status `
 -Value approved
  • Convert the resource to JSON
$SedPatch | ConvertTo-JSON

[Back to top]