JobRecurrenceInformation 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
JobRecurrenceInformation() |
Initializes a new instance of the JobRecurrenceInformation class. |
JobRecurrenceInformation(Nullable<Guid>, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<DateTimeOffset>) |
Initializes a new instance of the JobRecurrenceInformation class. |
JobRecurrenceInformation()
Initializes a new instance of the JobRecurrenceInformation class.
public JobRecurrenceInformation ();
Public Sub New ()
Applies to
JobRecurrenceInformation(Nullable<Guid>, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<DateTimeOffset>)
Initializes a new instance of the JobRecurrenceInformation class.
public JobRecurrenceInformation (Guid? recurrenceId = default, string recurrenceName = default, int? numJobsFailed = default, int? numJobsCanceled = default, int? numJobsSucceeded = default, double? auHoursFailed = default, double? auHoursCanceled = default, double? auHoursSucceeded = default, DateTimeOffset? lastSubmitTime = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.JobRecurrenceInformation : Nullable<Guid> * string * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<double> * Nullable<double> * Nullable<double> * Nullable<DateTimeOffset> -> Microsoft.Azure.Management.DataLake.Analytics.Models.JobRecurrenceInformation
Public Sub New (Optional recurrenceId As Nullable(Of Guid) = Nothing, Optional recurrenceName As String = Nothing, Optional numJobsFailed As Nullable(Of Integer) = Nothing, Optional numJobsCanceled As Nullable(Of Integer) = Nothing, Optional numJobsSucceeded As Nullable(Of Integer) = Nothing, Optional auHoursFailed As Nullable(Of Double) = Nothing, Optional auHoursCanceled As Nullable(Of Double) = Nothing, Optional auHoursSucceeded As Nullable(Of Double) = Nothing, Optional lastSubmitTime As Nullable(Of DateTimeOffset) = Nothing)
Parameters
The recurrence identifier (a GUID), unique per activity/script, regardless of iterations. This is something to link different occurrences of the same job together.
- recurrenceName
- String
The recurrence name, user friendly name for the correlation between jobs.
The number of job execution hours that resulted in successful jobs.
- lastSubmitTime
- Nullable<DateTimeOffset>
The last time a job in this recurrence was submitted.
Applies to
Azure SDK for .NET