Bagikan melalui


TriggerRun Constructors

Definition

Overloads

TriggerRun()

Initializes a new instance of the TriggerRun class.

TriggerRun(IDictionary<String,Object>, String, String, String, Nullable<DateTime>, String, String, IDictionary<String,String>, IDictionary<String,String>, IDictionary<String,String>, IDictionary<String, Object>)

Initializes a new instance of the TriggerRun class.

TriggerRun()

Initializes a new instance of the TriggerRun class.

public TriggerRun ();
Public Sub New ()

Applies to

TriggerRun(IDictionary<String,Object>, String, String, String, Nullable<DateTime>, String, String, IDictionary<String,String>, IDictionary<String,String>, IDictionary<String,String>, IDictionary<String, Object>)

Initializes a new instance of the TriggerRun class.

public TriggerRun (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string triggerRunId = default, string triggerName = default, string triggerType = default, DateTime? triggerRunTimestamp = default, string status = default, string message = default, System.Collections.Generic.IDictionary<string,string> properties = default, System.Collections.Generic.IDictionary<string,string> triggeredPipelines = default, System.Collections.Generic.IDictionary<string,string> runDimension = default, System.Collections.Generic.IDictionary<string,object> dependencyStatus = default);
new Microsoft.Azure.Management.DataFactory.Models.TriggerRun : System.Collections.Generic.IDictionary<string, obj> * string * string * string * Nullable<DateTime> * string * string * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Azure.Management.DataFactory.Models.TriggerRun
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional triggerRunId As String = Nothing, Optional triggerName As String = Nothing, Optional triggerType As String = Nothing, Optional triggerRunTimestamp As Nullable(Of DateTime) = Nothing, Optional status As String = Nothing, Optional message As String = Nothing, Optional properties As IDictionary(Of String, String) = Nothing, Optional triggeredPipelines As IDictionary(Of String, String) = Nothing, Optional runDimension As IDictionary(Of String, String) = Nothing, Optional dependencyStatus As IDictionary(Of String, Object) = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

triggerRunId
String

Trigger run id.

triggerName
String

Trigger name.

triggerType
String

Trigger type.

triggerRunTimestamp
Nullable<DateTime>

Trigger run start time.

status
String

Trigger run status. Possible values include: 'Succeeded', 'Failed', 'Inprogress'

message
String

Trigger error message.

properties
IDictionary<String,String>

List of property name and value related to trigger run. Name, value pair depends on type of trigger.

triggeredPipelines
IDictionary<String,String>

List of pipeline name and run Id triggered by the trigger run.

runDimension
IDictionary<String,String>

Run dimension for which trigger was fired.

dependencyStatus
IDictionary<String,Object>

Status of the upstream pipelines.

Applies to