JobSchedule Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
JobSchedule() |
Initializes a new instance of the JobSchedule class. |
JobSchedule(Nullable<DateTime>, Nullable<DateTime>, Nullable<JobScheduleType>, Nullable<Boolean>, String) |
Initializes a new instance of the JobSchedule class. |
JobSchedule()
Initializes a new instance of the JobSchedule class.
public JobSchedule ();
Public Sub New ()
Applies to
JobSchedule(Nullable<DateTime>, Nullable<DateTime>, Nullable<JobScheduleType>, Nullable<Boolean>, String)
Initializes a new instance of the JobSchedule class.
public JobSchedule (DateTime? startTime = default, DateTime? endTime = default, Microsoft.Azure.Management.Sql.Models.JobScheduleType? type = default, bool? enabled = default, string interval = default);
new Microsoft.Azure.Management.Sql.Models.JobSchedule : Nullable<DateTime> * Nullable<DateTime> * Nullable<Microsoft.Azure.Management.Sql.Models.JobScheduleType> * Nullable<bool> * string -> Microsoft.Azure.Management.Sql.Models.JobSchedule
Public Sub New (Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional type As Nullable(Of JobScheduleType) = Nothing, Optional enabled As Nullable(Of Boolean) = Nothing, Optional interval As String = Nothing)
Parameters
- type
- Nullable<JobScheduleType>
Schedule interval type. Possible values include: 'Once', 'Recurring'
- interval
- String
Value of the schedule's recurring interval, if the ScheduleType is recurring. ISO8601 duration format.
Applies to
Azure SDK for .NET