VirtualMachineInstallPatchesParameters

Input for InstallPatches as directly received by the API.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
maximumDuration string Specifies the maximum amount of time that the operation will run. It must be an ISO 8601-compliant duration string such as PT4H (4 hours).
rebootSetting string Defines when it is acceptable to reboot a VM during a software update operation.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-virtualmachineinstallpatchesparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualMachineInstallPatchesParameters",
  "title": "VirtualMachineInstallPatchesParameters",
  "type": "object",
  "description": "Input for InstallPatches as directly received by the API.",
  "required": [
    "rebootSetting"
  ],
  "properties": {
    "maximumDuration": {
      "type": "string",
      "description": "Specifies the maximum amount of time that the operation will run. It must be an ISO 8601-compliant duration string such as PT4H (4 hours)."
    },
    "rebootSetting": {
      "type": "string",
      "description": "Defines when it is acceptable to reboot a VM during a software update operation.",
      "enum": [
        "IfRequired",
        "NeverReboot",
        "AlwaysReboot"
      ]
    }
  }
}