MaintenanceConfigurationProperties Constructors

Definition

Overloads

Name Description
MaintenanceConfigurationProperties()

Initializes a new instance of the MaintenanceConfigurationProperties class.

MaintenanceConfigurationProperties(IList<TimeInWeek>, IList<TimeSpan>)

Initializes a new instance of the MaintenanceConfigurationProperties class.

MaintenanceConfigurationProperties(IList<TimeInWeek>, IList<TimeSpan>, MaintenanceWindow)

Initializes a new instance of the MaintenanceConfigurationProperties class.

MaintenanceConfigurationProperties()

Initializes a new instance of the MaintenanceConfigurationProperties class.

public MaintenanceConfigurationProperties();
Public Sub New ()

Applies to

MaintenanceConfigurationProperties(IList<TimeInWeek>, IList<TimeSpan>)

Initializes a new instance of the MaintenanceConfigurationProperties class.

public MaintenanceConfigurationProperties(System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.TimeInWeek> timeInWeek = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.TimeSpan> notAllowedTime = default);
new Microsoft.Azure.Management.ContainerService.Models.MaintenanceConfigurationProperties : System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.TimeInWeek> * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.TimeSpan> -> Microsoft.Azure.Management.ContainerService.Models.MaintenanceConfigurationProperties
Public Sub New (Optional timeInWeek As IList(Of TimeInWeek) = Nothing, Optional notAllowedTime As IList(Of TimeSpan) = Nothing)

Parameters

timeInWeek
IList<TimeInWeek>

If two array entries specify the same day of the week, the applied configuration is the union of times in both entries.

notAllowedTime
IList<TimeSpan>

Time slots on which upgrade is not allowed.

Applies to

MaintenanceConfigurationProperties(IList<TimeInWeek>, IList<TimeSpan>, MaintenanceWindow)

Initializes a new instance of the MaintenanceConfigurationProperties class.

public MaintenanceConfigurationProperties(System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.TimeInWeek> timeInWeek = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.TimeSpan> notAllowedTime = default, Microsoft.Azure.Management.ContainerService.Models.MaintenanceWindow maintenanceWindow = default);
new Microsoft.Azure.Management.ContainerService.Models.MaintenanceConfigurationProperties : System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.TimeInWeek> * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.TimeSpan> * Microsoft.Azure.Management.ContainerService.Models.MaintenanceWindow -> Microsoft.Azure.Management.ContainerService.Models.MaintenanceConfigurationProperties
Public Sub New (Optional timeInWeek As IList(Of TimeInWeek) = Nothing, Optional notAllowedTime As IList(Of TimeSpan) = Nothing, Optional maintenanceWindow As MaintenanceWindow = Nothing)

Parameters

timeInWeek
IList<TimeInWeek>

Time slots during the week when planned maintenance is allowed to proceed. If two array entries specify the same day of the week, the applied configuration is the union of times in both entries.

notAllowedTime
IList<TimeSpan>

Time slots on which upgrade is not allowed.

maintenanceWindow
MaintenanceWindow

Maintenance window for the maintenance configuration.

Applies to