Share via


ScheduleUpdate Constructors

Definition

Overloads

ScheduleUpdate()

Initializes a new instance of the ScheduleUpdate class.

ScheduleUpdate(Nullable<DateTime>, Nullable<DateTime>, RecurrencePattern, String, String)

Initializes a new instance of the ScheduleUpdate class.

ScheduleUpdate()

Initializes a new instance of the ScheduleUpdate class.

public ScheduleUpdate ();
Public Sub New ()

Applies to

ScheduleUpdate(Nullable<DateTime>, Nullable<DateTime>, RecurrencePattern, String, String)

Initializes a new instance of the ScheduleUpdate class.

public ScheduleUpdate (DateTime? startAt = default, DateTime? stopAt = default, Microsoft.Azure.Management.LabServices.Models.RecurrencePattern recurrencePattern = default, string timeZoneId = default, string notes = default);
new Microsoft.Azure.Management.LabServices.Models.ScheduleUpdate : Nullable<DateTime> * Nullable<DateTime> * Microsoft.Azure.Management.LabServices.Models.RecurrencePattern * string * string -> Microsoft.Azure.Management.LabServices.Models.ScheduleUpdate
Public Sub New (Optional startAt As Nullable(Of DateTime) = Nothing, Optional stopAt As Nullable(Of DateTime) = Nothing, Optional recurrencePattern As RecurrencePattern = Nothing, Optional timeZoneId As String = Nothing, Optional notes As String = Nothing)

Parameters

startAt
Nullable<DateTime>

When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead.

stopAt
Nullable<DateTime>

When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.

recurrencePattern
RecurrencePattern

The recurrence pattern of the scheduled actions.

timeZoneId
String

The IANA timezone id for the schedule.

notes
String

Notes for this schedule.

Applies to