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

BlobEventsTrigger 构造函数

定义

重载

BlobEventsTrigger()

初始化 BlobEventsTrigger 类的新实例。

BlobEventsTrigger(IList<String>, String, IDictionary<String,Object>, String, String, IList<Object>, IList<TriggerPipelineReference>, String, String, Nullable<Boolean>)

初始化 BlobEventsTrigger 类的新实例。

BlobEventsTrigger()

初始化 BlobEventsTrigger 类的新实例。

public BlobEventsTrigger ();
Public Sub New ()

适用于

BlobEventsTrigger(IList<String>, String, IDictionary<String,Object>, String, String, IList<Object>, IList<TriggerPipelineReference>, String, String, Nullable<Boolean>)

初始化 BlobEventsTrigger 类的新实例。

public BlobEventsTrigger (System.Collections.Generic.IList<string> 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 blobPathBeginsWith = default, string blobPathEndsWith = default, bool? ignoreEmptyBlobs = default);
new Microsoft.Azure.Management.DataFactory.Models.BlobEventsTrigger : System.Collections.Generic.IList<string> * 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 * Nullable<bool> -> Microsoft.Azure.Management.DataFactory.Models.BlobEventsTrigger
Public Sub New (events As IList(Of String), 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 blobPathBeginsWith As String = Nothing, Optional blobPathEndsWith As String = Nothing, Optional ignoreEmptyBlobs As Nullable(Of Boolean) = Nothing)

参数

events
IList<String>

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

scope
String

存储帐户的 ARM 资源 ID。

additionalProperties
IDictionary<String,Object>

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

description
String

触发器说明。

runtimeState
String

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

annotations
IList<Object>

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

pipelines
IList<TriggerPipelineReference>

需要启动的管道。

blobPathBeginsWith
String

Blob 路径必须使用为要触发的触发器提供的模式开头。 例如,“/records/blobs/december/”将仅针对 records 容器下的 december 文件夹中的 blob 使触发器触发。 必须至少提供其中一个:blobPathBeginsWith、blobPathEndsWith。

blobPathEndsWith
String

Blob 路径必须使用为要触发的触发器提供的模式结尾。 例如,“december/boxes.csv”将仅针对 december 文件夹中名为 boxes 的 blob 使触发器触发。 必须至少提供其中一个:blobPathBeginsWith、blobPathEndsWith。

ignoreEmptyBlobs
Nullable<Boolean>

如果设置为 true,则将忽略具有零字节的 Blob。

适用于