Share via


TestJobCreateParameters Constructors

Definition

Overloads

TestJobCreateParameters()

Initializes a new instance of the TestJobCreateParameters class.

TestJobCreateParameters(String)
TestJobCreateParameters(IDictionary<String,String>, String)

Initializes a new instance of the TestJobCreateParameters class.

TestJobCreateParameters()

Initializes a new instance of the TestJobCreateParameters class.

public TestJobCreateParameters ();
Public Sub New ()

Applies to

TestJobCreateParameters(String)

public TestJobCreateParameters (string runbookName);
new Microsoft.Azure.Management.Automation.Models.TestJobCreateParameters : string -> Microsoft.Azure.Management.Automation.Models.TestJobCreateParameters
Public Sub New (runbookName As String)

Parameters

runbookName
String

Applies to

TestJobCreateParameters(IDictionary<String,String>, String)

Initializes a new instance of the TestJobCreateParameters class.

public TestJobCreateParameters (System.Collections.Generic.IDictionary<string,string> parameters = default, string runOn = default);
new Microsoft.Azure.Management.Automation.Models.TestJobCreateParameters : System.Collections.Generic.IDictionary<string, string> * string -> Microsoft.Azure.Management.Automation.Models.TestJobCreateParameters
Public Sub New (Optional parameters As IDictionary(Of String, String) = Nothing, Optional runOn As String = Nothing)

Parameters

parameters
IDictionary<String,String>

Gets or sets the parameters of the test job.

runOn
String

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

Applies to