Share via


TestJob Constructors

Definition

Overloads

TestJob()

Initializes a new instance of the TestJob class.

TestJob(DateTimeOffset, String, String, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, String, DateTimeOffset, Nullable<DateTimeOffset>, IDictionary<String,String>, Nullable<Int32>)

Initializes a new instance of the TestJob class.

TestJob()

Initializes a new instance of the TestJob class.

public TestJob ();
Public Sub New ()

Applies to

TestJob(DateTimeOffset, String, String, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, String, DateTimeOffset, Nullable<DateTimeOffset>, IDictionary<String,String>, Nullable<Int32>)

Initializes a new instance of the TestJob class.

public TestJob (DateTimeOffset creationTime = default, string status = default, string statusDetails = default, string runOn = default, DateTimeOffset? startTime = default, DateTimeOffset? endTime = default, string exception = default, DateTimeOffset lastModifiedTime = default, DateTimeOffset? lastStatusModifiedTime = default, System.Collections.Generic.IDictionary<string,string> parameters = default, int? logActivityTrace = default);
new Microsoft.Azure.Management.Automation.Models.TestJob : DateTimeOffset * string * string * string * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * string * DateTimeOffset * Nullable<DateTimeOffset> * System.Collections.Generic.IDictionary<string, string> * Nullable<int> -> Microsoft.Azure.Management.Automation.Models.TestJob
Public Sub New (Optional creationTime As DateTimeOffset = Nothing, Optional status As String = Nothing, Optional statusDetails As String = Nothing, Optional runOn As String = Nothing, Optional startTime As Nullable(Of DateTimeOffset) = Nothing, Optional endTime As Nullable(Of DateTimeOffset) = Nothing, Optional exception As String = Nothing, Optional lastModifiedTime As DateTimeOffset = Nothing, Optional lastStatusModifiedTime As Nullable(Of DateTimeOffset) = Nothing, Optional parameters As IDictionary(Of String, String) = Nothing, Optional logActivityTrace As Nullable(Of Integer) = Nothing)

Parameters

creationTime
DateTimeOffset

Gets or sets the creation time of the test job.

status
String

Gets or sets the status of the test job.

statusDetails
String

Gets or sets the status details of the test job.

runOn
String

Gets or sets the runOn which specifies the group name where the job is to be executed.

startTime
Nullable<DateTimeOffset>

Gets or sets the start time of the test job.

endTime
Nullable<DateTimeOffset>

Gets or sets the end time of the test job.

exception
String

Gets or sets the exception of the test job.

lastModifiedTime
DateTimeOffset

Gets or sets the last modified time of the test job.

lastStatusModifiedTime
Nullable<DateTimeOffset>

Gets or sets the last status modified time of the test job.

parameters
IDictionary<String,String>

Gets or sets the parameters of the test job.

logActivityTrace
Nullable<Int32>

The activity-level tracing options of the runbook.

Applies to