다음을 통해 공유


WorkflowRunTrigger Constructors

Definition

Overloads

WorkflowRunTrigger()

Initializes a new instance of the WorkflowRunTrigger class.

WorkflowRunTrigger(String, Object, ContentLink, Object, ContentLink, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, String, Correlation, String, String, Object, Object)

Initializes a new instance of the WorkflowRunTrigger class.

WorkflowRunTrigger()

Initializes a new instance of the WorkflowRunTrigger class.

public WorkflowRunTrigger ();
Public Sub New ()

Applies to

Initializes a new instance of the WorkflowRunTrigger class.

public WorkflowRunTrigger (string name = default, object inputs = default, Microsoft.Azure.Management.Logic.Models.ContentLink inputsLink = default, object outputs = default, Microsoft.Azure.Management.Logic.Models.ContentLink outputsLink = default, DateTime? scheduledTime = default, DateTime? startTime = default, DateTime? endTime = default, string trackingId = default, Microsoft.Azure.Management.Logic.Models.Correlation correlation = default, string code = default, string status = default, object error = default, object trackedProperties = default);
new Microsoft.Azure.Management.Logic.Models.WorkflowRunTrigger : string * obj * Microsoft.Azure.Management.Logic.Models.ContentLink * obj * Microsoft.Azure.Management.Logic.Models.ContentLink * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> * string * Microsoft.Azure.Management.Logic.Models.Correlation * string * string * obj * obj -> Microsoft.Azure.Management.Logic.Models.WorkflowRunTrigger
Public Sub New (Optional name As String = Nothing, Optional inputs As Object = Nothing, Optional inputsLink As ContentLink = Nothing, Optional outputs As Object = Nothing, Optional outputsLink As ContentLink = Nothing, Optional scheduledTime As Nullable(Of DateTime) = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional trackingId As String = Nothing, Optional correlation As Correlation = Nothing, Optional code As String = Nothing, Optional status As String = Nothing, Optional error As Object = Nothing, Optional trackedProperties As Object = Nothing)

Parameters

name
String

Gets the name.

inputs
Object

Gets the inputs.

inputsLink
ContentLink

Gets the link to inputs.

outputs
Object

Gets the outputs.

outputsLink
ContentLink

Gets the link to outputs.

scheduledTime
Nullable<DateTime>

Gets the scheduled time.

startTime
Nullable<DateTime>

Gets the start time.

endTime
Nullable<DateTime>

Gets the end time.

trackingId
String

Gets the tracking id.

correlation
Correlation

The run correlation.

code
String

Gets the code.

status
String

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

error
Object

Gets the error.

trackedProperties
Object

Gets the tracked properties.

Applies to