次の方法で共有


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

トリガーが実行されているかどうかを示します。 トリガーで Start/Stop API が呼び出されたときに更新されます。 使用可能な値には、'Started'、'Stopped'、'Disabled' などがあります。

annotations
IList<Object>

トリガーの記述に使用できるタグの一覧。

pipelines
IList<TriggerPipelineReference>

開始する必要があるパイプライン。

blobPathBeginsWith
String

BLOB パスは、トリガーを起動するために指定されているパターンで始まる必要があります。 たとえば、'/records/blobs/december/' の場合、レコード コンテナーの december フォルダー内にある BLOB のトリガーのみが起動されます。 blobPathBeginsWith、blobPathEndsWith の少なくとも 1 つを指定する必要があります。

blobPathEndsWith
String

BLOB パスは、トリガーを起動するために指定されているパターンで終わる必要があります。 たとえば、'december/boxes.csv' の場合、december フォルダー内の boxes という名前の BLOB のトリガーのみが起動されます。 blobPathBeginsWith、blobPathEndsWith の少なくとも 1 つを指定する必要があります。

ignoreEmptyBlobs
Nullable<Boolean>

true に設定すると、バイト数が 0 の BLOB は無視されます。

適用対象