Bagikan melalui


Trigger Constructors

Definition

Overloads

Trigger()

Initializes a new instance of the Trigger class.

Trigger(IDictionary<String,Object>, String, String, IList<Object>)

Initializes a new instance of the Trigger class.

Trigger()

Initializes a new instance of the Trigger class.

public Trigger ();
Public Sub New ()

Applies to

Trigger(IDictionary<String,Object>, String, String, IList<Object>)

Initializes a new instance of the Trigger class.

public Trigger (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, string runtimeState = default, System.Collections.Generic.IList<object> annotations = default);
new Microsoft.Azure.Management.DataFactory.Models.Trigger : System.Collections.Generic.IDictionary<string, obj> * string * string * System.Collections.Generic.IList<obj> -> Microsoft.Azure.Management.DataFactory.Models.Trigger
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional runtimeState As String = Nothing, Optional annotations As IList(Of Object) = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

description
String

Trigger description.

runtimeState
String

Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Possible values include: 'Started', 'Stopped', 'Disabled'

annotations
IList<Object>

List of tags that can be used for describing the trigger.

Applies to