Skip to main content

Autowritesettingresponse

Properties

NameTypeDescriptionNotes
EnabledBooleanWhether auto-write is currently enabled for the tenant[optional] [default to $false]
IncludedSourceIds[]StringSource IDs in the allowlist. Empty array means not in allowlist mode.[optional]
ExcludedSourceIds[]StringSource IDs to exclude from auto-write. Always applied.[optional]
CreatedAtSystem.DateTimeWhen settings were first created[optional]
UpdatedAtSystem.DateTimeWhen settings were last modified[optional]

Examples

  • Prepare the resource
$Autowritesettingresponse = Initialize-Autowritesettingresponse  -Enabled true `
-IncludedSourceIds [2c91808a7813090a017814552e526349, 2c91808a7813090a017814552e52634a] `
-ExcludedSourceIds [2c91808a7813090a017814552e526350] `
-CreatedAt 2026-02-15T10:30Z `
-UpdatedAt 2026-03-09T14:22Z
  • Convert the resource to JSON
$Autowritesettingresponse | ConvertTo-JSON

[Back to top]