Share via


ScheduleCreateOrUpdateParameters Constructors

Definition

Overloads

ScheduleCreateOrUpdateParameters()

Initializes a new instance of the ScheduleCreateOrUpdateParameters class.

ScheduleCreateOrUpdateParameters(String, ScheduleCreateOrUpdateProperties)
ScheduleCreateOrUpdateParameters(String, DateTimeOffset, String, String, Nullable<DateTimeOffset>, Object, String, AdvancedSchedule)

Initializes a new instance of the ScheduleCreateOrUpdateParameters class.

ScheduleCreateOrUpdateParameters()

Initializes a new instance of the ScheduleCreateOrUpdateParameters class.

public ScheduleCreateOrUpdateParameters ();
Public Sub New ()

Applies to

ScheduleCreateOrUpdateParameters(String, ScheduleCreateOrUpdateProperties)

public ScheduleCreateOrUpdateParameters (string name, Microsoft.Azure.Management.Automation.Models.ScheduleCreateOrUpdateProperties properties);
new Microsoft.Azure.Management.Automation.Models.ScheduleCreateOrUpdateParameters : string * Microsoft.Azure.Management.Automation.Models.ScheduleCreateOrUpdateProperties -> Microsoft.Azure.Management.Automation.Models.ScheduleCreateOrUpdateParameters
Public Sub New (name As String, properties As ScheduleCreateOrUpdateProperties)

Parameters

name
String

Applies to

ScheduleCreateOrUpdateParameters(String, DateTimeOffset, String, String, Nullable<DateTimeOffset>, Object, String, AdvancedSchedule)

Initializes a new instance of the ScheduleCreateOrUpdateParameters class.

public ScheduleCreateOrUpdateParameters (string name, DateTimeOffset startTime, string frequency, string description = default, DateTimeOffset? expiryTime = default, object interval = default, string timeZone = default, Microsoft.Azure.Management.Automation.Models.AdvancedSchedule advancedSchedule = default);
new Microsoft.Azure.Management.Automation.Models.ScheduleCreateOrUpdateParameters : string * DateTimeOffset * string * string * Nullable<DateTimeOffset> * obj * string * Microsoft.Azure.Management.Automation.Models.AdvancedSchedule -> Microsoft.Azure.Management.Automation.Models.ScheduleCreateOrUpdateParameters
Public Sub New (name As String, startTime As DateTimeOffset, frequency As String, Optional description As String = Nothing, Optional expiryTime As Nullable(Of DateTimeOffset) = Nothing, Optional interval As Object = Nothing, Optional timeZone As String = Nothing, Optional advancedSchedule As AdvancedSchedule = Nothing)

Parameters

name
String

Gets or sets the name of the Schedule.

startTime
DateTimeOffset

Gets or sets the start time of the schedule.

frequency
String

Gets or sets the frequency of the schedule. Possible values include: 'OneTime', 'Day', 'Hour', 'Week', 'Month', 'Minute'

description
String

Gets or sets the description of the schedule.

expiryTime
Nullable<DateTimeOffset>

Gets or sets the end time of the schedule.

interval
Object

Gets or sets the interval of the schedule.

timeZone
String

Gets or sets the time zone of the schedule.

advancedSchedule
AdvancedSchedule

Gets or sets the AdvancedSchedule.

Applies to