WindowsPatchSettings

Specifies settings related to VM Guest Patching on Windows.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
patchMode string Specifies the mode of VM Guest Patching to IaaS virtual machine.
assessmentMode string Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine.
enableHotpatching boolean Enables customers to patch their Azure VMs without requiring a reboot.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-windowspatchsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WindowsPatchSettings",
  "title": "WindowsPatchSettings",
  "type": "object",
  "description": "Specifies settings related to VM Guest Patching on Windows.",
  "properties": {
    "patchMode": {
      "type": "string",
      "description": "Specifies the mode of VM Guest Patching to IaaS virtual machine.",
      "enum": [
        "Manual",
        "AutomaticByOS",
        "AutomaticByPlatform"
      ]
    },
    "assessmentMode": {
      "type": "string",
      "description": "Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine.",
      "enum": [
        "ImageDefault",
        "AutomaticByPlatform"
      ]
    },
    "enableHotpatching": {
      "type": "boolean",
      "description": "Enables customers to patch their Azure VMs without requiring a reboot."
    }
  }
}