WindowsParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
WindowsParameters() |
Initializes a new instance of the WindowsParameters class. |
WindowsParameters(IList<String>, IList<String>, IList<String>, Nullable<Boolean>, Nullable<DateTime>) |
Initializes a new instance of the WindowsParameters class. |
WindowsParameters()
Initializes a new instance of the WindowsParameters class.
public WindowsParameters ();
Public Sub New ()
Applies to
WindowsParameters(IList<String>, IList<String>, IList<String>, Nullable<Boolean>, Nullable<DateTime>)
Initializes a new instance of the WindowsParameters class.
public WindowsParameters (System.Collections.Generic.IList<string> classificationsToInclude = default, System.Collections.Generic.IList<string> kbNumbersToInclude = default, System.Collections.Generic.IList<string> kbNumbersToExclude = default, bool? excludeKbsRequiringReboot = default, DateTime? maxPatchPublishDate = default);
new Microsoft.Azure.Management.Compute.Models.WindowsParameters : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * Nullable<bool> * Nullable<DateTime> -> Microsoft.Azure.Management.Compute.Models.WindowsParameters
Public Sub New (Optional classificationsToInclude As IList(Of String) = Nothing, Optional kbNumbersToInclude As IList(Of String) = Nothing, Optional kbNumbersToExclude As IList(Of String) = Nothing, Optional excludeKbsRequiringReboot As Nullable(Of Boolean) = Nothing, Optional maxPatchPublishDate As Nullable(Of DateTime) = Nothing)
Parameters
The update classifications to select when installing patches for Windows.
Filters out Kbs that don't have an InstallationRebootBehavior of 'NeverReboots' when this is set to true.
This is used to install patches that were published on or before this given max published date.
Applies to
Azure SDK for .NET