PipelineRun Constructors
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.
Overloads
PipelineRun() |
Initializes a new instance of the PipelineRun class. |
PipelineRun(IDictionary<String,Object>, String, String, Nullable<Boolean>, String, IDictionary<String,String>, IDictionary<String,String>, PipelineRunInvokedBy, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, String, String) |
Initializes a new instance of the PipelineRun class. |
PipelineRun()
Initializes a new instance of the PipelineRun class.
public PipelineRun ();
Public Sub New ()
Applies to
PipelineRun(IDictionary<String,Object>, String, String, Nullable<Boolean>, String, IDictionary<String,String>, IDictionary<String,String>, PipelineRunInvokedBy, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, String, String)
Initializes a new instance of the PipelineRun class.
public PipelineRun (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string runId = default, string runGroupId = default, bool? isLatest = default, string pipelineName = default, System.Collections.Generic.IDictionary<string,string> parameters = default, System.Collections.Generic.IDictionary<string,string> runDimensions = default, Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy invokedBy = default, DateTime? lastUpdated = default, DateTime? runStart = default, DateTime? runEnd = default, int? durationInMs = default, string status = default, string message = default);
new Microsoft.Azure.Management.DataFactory.Models.PipelineRun : System.Collections.Generic.IDictionary<string, obj> * string * string * Nullable<bool> * string * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.DataFactory.Models.PipelineRunInvokedBy * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> * Nullable<int> * string * string -> Microsoft.Azure.Management.DataFactory.Models.PipelineRun
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional runId As String = Nothing, Optional runGroupId As String = Nothing, Optional isLatest As Nullable(Of Boolean) = Nothing, Optional pipelineName As String = Nothing, Optional parameters As IDictionary(Of String, String) = Nothing, Optional runDimensions As IDictionary(Of String, String) = Nothing, Optional invokedBy As PipelineRunInvokedBy = Nothing, Optional lastUpdated As Nullable(Of DateTime) = Nothing, Optional runStart As Nullable(Of DateTime) = Nothing, Optional runEnd As Nullable(Of DateTime) = Nothing, Optional durationInMs As Nullable(Of Integer) = Nothing, Optional status As String = Nothing, Optional message As String = Nothing)
Parameters
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- runId
- String
Identifier of a run.
- runGroupId
- String
Identifier that correlates all the recovery runs of a pipeline run.
- pipelineName
- String
The pipeline name.
- parameters
- IDictionary<String,String>
The full or partial list of parameter name, value pair used in the pipeline run.
- runDimensions
- IDictionary<String,String>
Run dimensions emitted by Pipeline run.
- invokedBy
- PipelineRunInvokedBy
Entity that started the pipeline run.
The last updated timestamp for the pipeline run event in ISO8601 format.
- status
- String
The status of a pipeline run. Possible values: Queued, InProgress, Succeeded, Failed, Canceling, Cancelled
- message
- String
The message from a pipeline run.
Applies to
Azure SDK for .NET