你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CustomEventsTrigger 构造函数

定义

重载

CustomEventsTrigger()

初始化 CustomEventsTrigger 类的新实例。

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

初始化 CustomEventsTrigger 类的新实例。

CustomEventsTrigger()

初始化 CustomEventsTrigger 类的新实例。

public CustomEventsTrigger ();
Public Sub New ()

适用于

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

初始化 CustomEventsTrigger 类的新实例。

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)

参数

events
IList<Object>

导致此触发器触发的事件类型的列表。

scope
String

Azure 事件网格主题的 ARM 资源 ID。

additionalProperties
IDictionary<String,Object>

此集合反序列化消息中的不匹配属性

description
String

触发器说明。

runtimeState
String

指示触发器是否正在运行。 在触发器上调用启动/停止 API 时进行了更新。 可能的值包括:“Started”、“Stopped”、“Disabled”

annotations
IList<Object>

可用于描述触发器的标记列表。

pipelines
IList<TriggerPipelineReference>

需要启动的管道。

subjectBeginsWith
String

事件主题必须以为触发器触发提供的模式开头。 必须至少提供其中一个:subjectBeginsWith、subjectEndsWith。

subjectEndsWith
String

事件主题必须以为触发器触发提供的模式结束。 必须至少提供其中一个:subjectBeginsWith、subjectEndsWith。

适用于