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]