Share via


ArmDataFactoryModelFactory.PipelineActivityRunInformation Method

Definition

Initializes a new instance of PipelineActivityRunInformation.

public static Azure.ResourceManager.DataFactory.Models.PipelineActivityRunInformation PipelineActivityRunInformation (string pipelineName = default, Guid? pipelineRunId = default, string activityName = default, string activityType = default, Guid? activityRunId = default, string linkedServiceName = default, string status = default, DateTimeOffset? startOn = default, DateTimeOffset? endOn = default, int? durationInMs = default, BinaryData input = default, BinaryData output = default, BinaryData error = default, System.Collections.Generic.IReadOnlyDictionary<string,BinaryData> additionalProperties = default);
static member PipelineActivityRunInformation : string * Nullable<Guid> * string * string * Nullable<Guid> * string * string * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * Nullable<int> * BinaryData * BinaryData * BinaryData * System.Collections.Generic.IReadOnlyDictionary<string, BinaryData> -> Azure.ResourceManager.DataFactory.Models.PipelineActivityRunInformation
Public Shared Function PipelineActivityRunInformation (Optional pipelineName As String = Nothing, Optional pipelineRunId As Nullable(Of Guid) = Nothing, Optional activityName As String = Nothing, Optional activityType As String = Nothing, Optional activityRunId As Nullable(Of Guid) = Nothing, Optional linkedServiceName As String = Nothing, Optional status As String = Nothing, Optional startOn As Nullable(Of DateTimeOffset) = Nothing, Optional endOn As Nullable(Of DateTimeOffset) = Nothing, Optional durationInMs As Nullable(Of Integer) = Nothing, Optional input As BinaryData = Nothing, Optional output As BinaryData = Nothing, Optional error As BinaryData = Nothing, Optional additionalProperties As IReadOnlyDictionary(Of String, BinaryData) = Nothing) As PipelineActivityRunInformation

Parameters

pipelineName
String

The name of the pipeline.

pipelineRunId
Nullable<Guid>

The id of the pipeline run.

activityName
String

The name of the activity.

activityType
String

The type of the activity.

activityRunId
Nullable<Guid>

The id of the activity run.

linkedServiceName
String

The name of the compute linked service.

status
String

The status of the activity run.

startOn
Nullable<DateTimeOffset>

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

endOn
Nullable<DateTimeOffset>

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

durationInMs
Nullable<Int32>

The duration of the activity run.

input
BinaryData

The input for the activity.

output
BinaryData

The output for the activity.

error
BinaryData

The error if any from the activity run.

additionalProperties
IReadOnlyDictionary<String,BinaryData>

Additional Properties.

Returns

A new PipelineActivityRunInformation instance for mocking.

Applies to