Skip to main content

Autowritesettingpatch

Properties

NameTypeDescriptionNotes
OpEnum [ "replace" ]The operation to perform. Only ""replace"" is supported.[required]
PathStringThe field to update. Allowed values: /enabled, /includedSourceIds, /excludedSourceIds[required]
ValueAutowritesettingpatchValue[required]

Examples

  • Prepare the resource
$Autowritesettingpatch = Initialize-Autowritesettingpatch  -Op replace `
-Path /enabled `
-Value null
  • Convert the resource to JSON
$Autowritesettingpatch | ConvertTo-JSON

[Back to top]