AnalyticsSynapseArtifactsModelFactory.ActivityRun Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of ActivityRun.
public static Azure.Analytics.Synapse.Artifacts.Models.ActivityRun ActivityRun (string pipelineName = default, string pipelineRunId = default, string activityName = default, string activityType = default, string activityRunId = default, string linkedServiceName = default, string status = default, DateTimeOffset? activityRunStart = default, DateTimeOffset? activityRunEnd = default, int? durationInMs = default, object input = default, object output = default, object error = default, System.Collections.Generic.IReadOnlyDictionary<string,object> additionalProperties = default);
static member ActivityRun : string * string * string * string * string * string * string * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * Nullable<int> * obj * obj * obj * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Azure.Analytics.Synapse.Artifacts.Models.ActivityRun
Public Shared Function ActivityRun (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 DateTimeOffset) = Nothing, Optional activityRunEnd As Nullable(Of DateTimeOffset) = Nothing, Optional durationInMs As Nullable(Of Integer) = Nothing, Optional input As Object = Nothing, Optional output As Object = Nothing, Optional error As Object = Nothing, Optional additionalProperties As IReadOnlyDictionary(Of String, Object) = Nothing) As ActivityRun
Parameters
- 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<DateTimeOffset>
The start time of the activity run in 'ISO 8601' format.
- activityRunEnd
- Nullable<DateTimeOffset>
The end time of the activity run in 'ISO 8601' format.
- input
- Object
The input for the activity.
- output
- Object
The output for the activity.
- error
- Object
The error if any from the activity run.
- additionalProperties
- IReadOnlyDictionary<String,Object>
Additional Properties.
Returns
A new ActivityRun instance for mocking.
Applies to
Azure SDK for .NET