WorkflowRun Constructors

Definition

Overloads

WorkflowRun()

Initializes a new instance of the WorkflowRun class.

WorkflowRun(String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, String, String, Object, String, Correlation, ResourceReference, WorkflowRunTrigger, IDictionary<String,WorkflowOutputParameter>, WorkflowRunTrigger, String, String)

Initializes a new instance of the WorkflowRun class.

WorkflowRun()

Initializes a new instance of the WorkflowRun class.

public WorkflowRun ();
Public Sub New ()

Applies to

WorkflowRun(String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, String, String, Object, String, Correlation, ResourceReference, WorkflowRunTrigger, IDictionary<String,WorkflowOutputParameter>, WorkflowRunTrigger, String, String)

Initializes a new instance of the WorkflowRun class.

public WorkflowRun (string id = default, DateTime? waitEndTime = default, DateTime? startTime = default, DateTime? endTime = default, string status = default, string code = default, object error = default, string correlationId = default, Microsoft.Azure.Management.Logic.Models.Correlation correlation = default, Microsoft.Azure.Management.Logic.Models.ResourceReference workflow = default, Microsoft.Azure.Management.Logic.Models.WorkflowRunTrigger trigger = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Logic.Models.WorkflowOutputParameter> outputs = default, Microsoft.Azure.Management.Logic.Models.WorkflowRunTrigger response = default, string name = default, string type = default);
new Microsoft.Azure.Management.Logic.Models.WorkflowRun : string * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> * string * string * obj * string * Microsoft.Azure.Management.Logic.Models.Correlation * Microsoft.Azure.Management.Logic.Models.ResourceReference * Microsoft.Azure.Management.Logic.Models.WorkflowRunTrigger * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Logic.Models.WorkflowOutputParameter> * Microsoft.Azure.Management.Logic.Models.WorkflowRunTrigger * string * string -> Microsoft.Azure.Management.Logic.Models.WorkflowRun
Public Sub New (Optional id As String = Nothing, Optional waitEndTime As Nullable(Of DateTime) = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional status As String = Nothing, Optional code As String = Nothing, Optional error As Object = Nothing, Optional correlationId As String = Nothing, Optional correlation As Correlation = Nothing, Optional workflow As ResourceReference = Nothing, Optional trigger As WorkflowRunTrigger = Nothing, Optional outputs As IDictionary(Of String, WorkflowOutputParameter) = Nothing, Optional response As WorkflowRunTrigger = Nothing, Optional name As String = Nothing, Optional type As String = Nothing)

Parameters

id
String

The resource id.

waitEndTime
Nullable<DateTime>

Gets the wait end time.

startTime
Nullable<DateTime>

Gets the start time.

endTime
Nullable<DateTime>

Gets the end time.

status
String

Gets the status. Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored'

code
String

Gets the code.

error
Object

Gets the error.

correlationId
String

Gets the correlation id.

correlation
Correlation

The run correlation.

workflow
ResourceReference

Gets the reference to workflow version.

trigger
WorkflowRunTrigger

Gets the fired trigger.

outputs
IDictionary<String,WorkflowOutputParameter>

Gets the outputs.

response
WorkflowRunTrigger

Gets the response of the flow run.

name
String

Gets the workflow run name.

type
String

Gets the workflow run type.

Applies to