Skip to main content

SedPatch

Properties

NameTypeDescriptionNotes
OpStringdesired operation[optional]
PathStringfield to be patched[optional]
ValueAnyTypevalue to replace with[optional]

Examples

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

[Back to top]