Schedule Constructors

Definition

Overloads

Name Description
Schedule()

Initializes a new instance of the Schedule class.

Schedule(DailySchedule, WeeklySchedule, AbsoluteMonthlySchedule, RelativeMonthlySchedule)

Initializes a new instance of the Schedule class.

Schedule()

Initializes a new instance of the Schedule class.

public Schedule();
Public Sub New ()

Applies to

Schedule(DailySchedule, WeeklySchedule, AbsoluteMonthlySchedule, RelativeMonthlySchedule)

Initializes a new instance of the Schedule class.

public Schedule(Microsoft.Azure.Management.ContainerService.Models.DailySchedule daily = default, Microsoft.Azure.Management.ContainerService.Models.WeeklySchedule weekly = default, Microsoft.Azure.Management.ContainerService.Models.AbsoluteMonthlySchedule absoluteMonthly = default, Microsoft.Azure.Management.ContainerService.Models.RelativeMonthlySchedule relativeMonthly = default);
new Microsoft.Azure.Management.ContainerService.Models.Schedule : Microsoft.Azure.Management.ContainerService.Models.DailySchedule * Microsoft.Azure.Management.ContainerService.Models.WeeklySchedule * Microsoft.Azure.Management.ContainerService.Models.AbsoluteMonthlySchedule * Microsoft.Azure.Management.ContainerService.Models.RelativeMonthlySchedule -> Microsoft.Azure.Management.ContainerService.Models.Schedule
Public Sub New (Optional daily As DailySchedule = Nothing, Optional weekly As WeeklySchedule = Nothing, Optional absoluteMonthly As AbsoluteMonthlySchedule = Nothing, Optional relativeMonthly As RelativeMonthlySchedule = Nothing)

Parameters

daily
DailySchedule

For schedules like: 'recur every day' or 'recur every 3 days'.

weekly
WeeklySchedule

For schedules like: 'recur every Monday' or 'recur every 3 weeks on Wednesday'.

absoluteMonthly
AbsoluteMonthlySchedule

For schedules like: 'recur every month on the 15th' or 'recur every 3 months on the 20th'.

relativeMonthly
RelativeMonthlySchedule

For schedules like: 'recur every month on the first Monday' or 'recur every 3 months on last Friday'.

Applies to