Bagikan melalui


CustomEventsTrigger Constructors

Definition

Overloads

CustomEventsTrigger()

Initializes a new instance of the CustomEventsTrigger class.

CustomEventsTrigger(IList<Object>, String, IDictionary<String, Object>, String, String, IList<Object>, IList<TriggerPipelineReference>, String, String)

Initializes a new instance of the CustomEventsTrigger class.

CustomEventsTrigger()

Initializes a new instance of the CustomEventsTrigger class.

public CustomEventsTrigger ();
Public Sub New ()

Applies to

CustomEventsTrigger(IList<Object>, String, IDictionary<String, Object>, String, String, IList<Object>, IList<TriggerPipelineReference>, String, String)

Initializes a new instance of the CustomEventsTrigger class.

public CustomEventsTrigger (System.Collections.Generic.IList<object> events, string scope, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, string runtimeState = default, System.Collections.Generic.IList<object> annotations = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.TriggerPipelineReference> pipelines = default, string subjectBeginsWith = default, string subjectEndsWith = default);
new Microsoft.Azure.Management.DataFactory.Models.CustomEventsTrigger : System.Collections.Generic.IList<obj> * string * System.Collections.Generic.IDictionary<string, obj> * string * string * System.Collections.Generic.IList<obj> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.TriggerPipelineReference> * string * string -> Microsoft.Azure.Management.DataFactory.Models.CustomEventsTrigger
Public Sub New (events As IList(Of Object), scope As String, 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, Optional pipelines As IList(Of TriggerPipelineReference) = Nothing, Optional subjectBeginsWith As String = Nothing, Optional subjectEndsWith As String = Nothing)

Parameters

events
IList<Object>

The list of event types that cause this trigger to fire.

scope
String

The ARM resource ID of the Azure Event Grid Topic.

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.

pipelines
IList<TriggerPipelineReference>

Pipelines that need to be started.

subjectBeginsWith
String

The event subject must begin with the pattern provided for trigger to fire. At least one of these must be provided: subjectBeginsWith, subjectEndsWith.

subjectEndsWith
String

The event subject must end with the pattern provided for trigger to fire. At least one of these must be provided: subjectBeginsWith, subjectEndsWith.

Applies to