Share via


Experiment Constructors

Definition

Overloads

Experiment()

Initializes a new instance of the Experiment class.

Experiment(String, String, String, Nullable<DateTime>, String, Nullable<DateTime>)

Initializes a new instance of the Experiment class.

Experiment()

Initializes a new instance of the Experiment class.

public Experiment ();
Public Sub New ()

Applies to

Experiment(String, String, String, Nullable<DateTime>, String, Nullable<DateTime>)

Initializes a new instance of the Experiment class.

public Experiment (string id = default, string name = default, string type = default, DateTime? creationTime = default, string provisioningState = default, DateTime? provisioningStateTransitionTime = default);
new Microsoft.Azure.Management.BatchAI.Models.Experiment : string * string * string * Nullable<DateTime> * string * Nullable<DateTime> -> Microsoft.Azure.Management.BatchAI.Models.Experiment
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional creationTime As Nullable(Of DateTime) = Nothing, Optional provisioningState As String = Nothing, Optional provisioningStateTransitionTime As Nullable(Of DateTime) = Nothing)

Parameters

id
String

The ID of the resource.

name
String

The name of the resource.

type
String

The type of the resource.

creationTime
Nullable<DateTime>

Creation time.

provisioningState
String

Provisioning state.

provisioningStateTransitionTime
Nullable<DateTime>

Provisioning state transition time.

Applies to