Share via


AdvancedSchedule Constructors

Definition

Overloads

AdvancedSchedule()

Initializes a new instance of the AdvancedSchedule class.

AdvancedSchedule(IList<String>, IList<Int32>, IList<AdvancedScheduleMonthlyOccurrence>)

Initializes a new instance of the AdvancedSchedule class.

AdvancedSchedule()

Initializes a new instance of the AdvancedSchedule class.

public AdvancedSchedule ();
Public Sub New ()

Applies to

AdvancedSchedule(IList<String>, IList<Int32>, IList<AdvancedScheduleMonthlyOccurrence>)

Initializes a new instance of the AdvancedSchedule class.

public AdvancedSchedule (System.Collections.Generic.IList<string> weekDays = default, System.Collections.Generic.IList<int> monthDays = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence> monthlyOccurrences = default);
new Microsoft.Azure.Management.Automation.Models.AdvancedSchedule : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<int> * System.Collections.Generic.IList<Microsoft.Azure.Management.Automation.Models.AdvancedScheduleMonthlyOccurrence> -> Microsoft.Azure.Management.Automation.Models.AdvancedSchedule
Public Sub New (Optional weekDays As IList(Of String) = Nothing, Optional monthDays As IList(Of Integer) = Nothing, Optional monthlyOccurrences As IList(Of AdvancedScheduleMonthlyOccurrence) = Nothing)

Parameters

weekDays
IList<String>

Days of the week that the job should execute on.

monthDays
IList<Int32>

Days of the month that the job should execute on. Must be between 1 and 31.

monthlyOccurrences
IList<AdvancedScheduleMonthlyOccurrence>

Occurrences of days within a month.

Applies to