WindowsConfigurationArgs

data class WindowsConfigurationArgs(val additionalUnattendContent: Output<List<AdditionalUnattendContentArgs>>? = null, val enableAutomaticUpdates: Output<Boolean>? = null, val enableVMAgentPlatformUpdates: Output<Boolean>? = null, val patchSettings: Output<PatchSettingsArgs>? = null, val provisionVMAgent: Output<Boolean>? = null, val timeZone: Output<String>? = null, val winRM: Output<WinRMConfigurationArgs>? = null) : ConvertibleToJava<WindowsConfigurationArgs>

Specifies Windows operating system settings on the virtual machine.

Constructors

Link copied to clipboard
constructor(additionalUnattendContent: Output<List<AdditionalUnattendContentArgs>>? = null, enableAutomaticUpdates: Output<Boolean>? = null, enableVMAgentPlatformUpdates: Output<Boolean>? = null, patchSettings: Output<PatchSettingsArgs>? = null, provisionVMAgent: Output<Boolean>? = null, timeZone: Output<String>? = null, winRM: Output<WinRMConfigurationArgs>? = null)

Properties

Link copied to clipboard

Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.

Link copied to clipboard
val enableAutomaticUpdates: Output<Boolean>? = null

Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.

Link copied to clipboard

Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.

Link copied to clipboard
val patchSettings: Output<PatchSettingsArgs>? = null

Preview Feature Specifies settings related to VM Guest Patching on Windows.

Link copied to clipboard
val provisionVMAgent: Output<Boolean>? = null

Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.

Link copied to clipboard
val timeZone: Output<String>? = null

Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.

Link copied to clipboard
val winRM: Output<WinRMConfigurationArgs>? = null

Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.

Functions

Link copied to clipboard
open override fun toJava(): WindowsConfigurationArgs