共用方式為


ActivityRun Constructors

Definition

Overloads

ActivityRun()

Initializes a new instance of the ActivityRun class.

ActivityRun(IDictionary<String,Object>, String, String, String, String, String, String, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, Object, Object, Object)

Initializes a new instance of the ActivityRun class.

ActivityRun()

Initializes a new instance of the ActivityRun class.

public ActivityRun ();
Public Sub New ()

Applies to

ActivityRun(IDictionary<String,Object>, String, String, String, String, String, String, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, Object, Object, Object)

Initializes a new instance of the ActivityRun class.

public ActivityRun (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string pipelineName = default, string pipelineRunId = default, string activityName = default, string activityType = default, string activityRunId = default, string linkedServiceName = default, string status = default, DateTime? activityRunStart = default, DateTime? activityRunEnd = default, int? durationInMs = default, object input = default, object output = default, object error = default);
new Microsoft.Azure.Management.DataFactory.Models.ActivityRun : System.Collections.Generic.IDictionary<string, obj> * string * string * string * string * string * string * string * Nullable<DateTime> * Nullable<DateTime> * Nullable<int> * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.ActivityRun
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional pipelineName As String = Nothing, Optional pipelineRunId As String = Nothing, Optional activityName As String = Nothing, Optional activityType As String = Nothing, Optional activityRunId As String = Nothing, Optional linkedServiceName As String = Nothing, Optional status As String = Nothing, Optional activityRunStart As Nullable(Of DateTime) = Nothing, Optional activityRunEnd As Nullable(Of DateTime) = Nothing, Optional durationInMs As Nullable(Of Integer) = Nothing, Optional input As Object = Nothing, Optional output As Object = Nothing, Optional error As Object = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

pipelineName
String

The name of the pipeline.

pipelineRunId
String

The id of the pipeline run.

activityName
String

The name of the activity.

activityType
String

The type of the activity.

activityRunId
String

The id of the activity run.

linkedServiceName
String

The name of the compute linked service.

status
String

The status of the activity run.

activityRunStart
Nullable<DateTime>

The start time of the activity run in 'ISO 8601' format.

activityRunEnd
Nullable<DateTime>

The end time of the activity run in 'ISO 8601' format.

durationInMs
Nullable<Int32>

The duration of the activity run.

input
Object

The input for the activity.

output
Object

The output for the activity.

error
Object

The error if any from the activity run.

Applies to