LinuxPatchSettings Constructors

Definition

Overloads

LinuxPatchSettings()

Initializes a new instance of the LinuxPatchSettings class.

LinuxPatchSettings(String, String, LinuxVMGuestPatchAutomaticByPlatformSettings)

Initializes a new instance of the LinuxPatchSettings class.

LinuxPatchSettings()

Initializes a new instance of the LinuxPatchSettings class.

public LinuxPatchSettings ();
Public Sub New ()

Applies to

LinuxPatchSettings(String, String, LinuxVMGuestPatchAutomaticByPlatformSettings)

Initializes a new instance of the LinuxPatchSettings class.

public LinuxPatchSettings (string patchMode = default, string assessmentMode = default, Microsoft.Azure.Management.Compute.Models.LinuxVMGuestPatchAutomaticByPlatformSettings automaticByPlatformSettings = default);
new Microsoft.Azure.Management.Compute.Models.LinuxPatchSettings : string * string * Microsoft.Azure.Management.Compute.Models.LinuxVMGuestPatchAutomaticByPlatformSettings -> Microsoft.Azure.Management.Compute.Models.LinuxPatchSettings
Public Sub New (Optional patchMode As String = Nothing, Optional assessmentMode As String = Nothing, Optional automaticByPlatformSettings As LinuxVMGuestPatchAutomaticByPlatformSettings = Nothing)

Parameters

patchMode
String

Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible.<br /><br /> Possible values are:<br /><br /> ImageDefault - The virtual machine's default patching configuration is used. <br /><br /> AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true. Possible values include: 'ImageDefault', 'AutomaticByPlatform'

assessmentMode
String

Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine.<br /><br /> Possible values are:<br /><br /> ImageDefault - You control the timing of patch assessments on a virtual machine. <br /><br /> AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true. Possible values include: 'ImageDefault', 'AutomaticByPlatform'

automaticByPlatformSettings
LinuxVMGuestPatchAutomaticByPlatformSettings

Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.

Applies to