Share via


UpdateConfiguration Constructors

Definition

Overloads

UpdateConfiguration()

Initializes a new instance of the UpdateConfiguration class.

UpdateConfiguration(OperatingSystemType, WindowsProperties, LinuxProperties, Nullable<TimeSpan>, IList<String>, IList<String>, TargetProperties)

Initializes a new instance of the UpdateConfiguration class.

UpdateConfiguration()

Initializes a new instance of the UpdateConfiguration class.

public UpdateConfiguration ();
Public Sub New ()

Applies to

UpdateConfiguration(OperatingSystemType, WindowsProperties, LinuxProperties, Nullable<TimeSpan>, IList<String>, IList<String>, TargetProperties)

Initializes a new instance of the UpdateConfiguration class.

public UpdateConfiguration (Microsoft.Azure.Management.Automation.Models.OperatingSystemType operatingSystem, Microsoft.Azure.Management.Automation.Models.WindowsProperties windows = default, Microsoft.Azure.Management.Automation.Models.LinuxProperties linux = default, TimeSpan? duration = default, System.Collections.Generic.IList<string> azureVirtualMachines = default, System.Collections.Generic.IList<string> nonAzureComputerNames = default, Microsoft.Azure.Management.Automation.Models.TargetProperties targets = default);
new Microsoft.Azure.Management.Automation.Models.UpdateConfiguration : Microsoft.Azure.Management.Automation.Models.OperatingSystemType * Microsoft.Azure.Management.Automation.Models.WindowsProperties * Microsoft.Azure.Management.Automation.Models.LinuxProperties * Nullable<TimeSpan> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * Microsoft.Azure.Management.Automation.Models.TargetProperties -> Microsoft.Azure.Management.Automation.Models.UpdateConfiguration
Public Sub New (operatingSystem As OperatingSystemType, Optional windows As WindowsProperties = Nothing, Optional linux As LinuxProperties = Nothing, Optional duration As Nullable(Of TimeSpan) = Nothing, Optional azureVirtualMachines As IList(Of String) = Nothing, Optional nonAzureComputerNames As IList(Of String) = Nothing, Optional targets As TargetProperties = Nothing)

Parameters

operatingSystem
OperatingSystemType

operating system of target machines. Possible values include: 'Windows', 'Linux'

windows
WindowsProperties

Windows specific update configuration.

linux
LinuxProperties

Linux specific update configuration.

duration
Nullable<TimeSpan>

Maximum time allowed for the software update configuration run. Duration needs to be specified using the format PT[n]H[n]M[n]S as per ISO8601

azureVirtualMachines
IList<String>

List of azure resource Ids for azure virtual machines targeted by the software update configuration.

nonAzureComputerNames
IList<String>

List of names of non-azure machines targeted by the software update configuration.

targets
TargetProperties

Group targets for the software update configuration.

Applies to