WindowsConfiguration

Specifies Windows operating system settings on the virtual machine.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
provisionVMAgent boolean Indicates whether virtual machine agent should be provisioned on the virtual machine.
enableAutomaticUpdates boolean Indicates whether Automatic Updates is enabled for the Windows virtual machine.
timeZone string Specifies the time zone of the virtual machine.
patchSettings object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-windowsconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WindowsConfiguration",
  "title": "WindowsConfiguration",
  "type": "object",
  "description": "Specifies Windows operating system settings on the virtual machine.",
  "properties": {
    "provisionVMAgent": {
      "type": "boolean",
      "description": "Indicates whether virtual machine agent should be provisioned on the virtual machine."
    },
    "enableAutomaticUpdates": {
      "type": "boolean",
      "description": "Indicates whether Automatic Updates is enabled for the Windows virtual machine."
    },
    "timeZone": {
      "type": "string",
      "description": "Specifies the time zone of the virtual machine."
    },
    "patchSettings": {
      "$ref": "#/components/schemas/WindowsPatchSettings"
    }
  }
}