다음을 통해 공유


BlobEventsTrigger Constructors

Definition

Overloads

BlobEventsTrigger()

Initializes a new instance of the BlobEventsTrigger class.

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

Initializes a new instance of the BlobEventsTrigger class.

BlobEventsTrigger()

Initializes a new instance of the BlobEventsTrigger class.

public BlobEventsTrigger ();
Public Sub New ()

Applies to

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

Initializes a new instance of the BlobEventsTrigger class.

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)

Parameters

events
IList<String>

The type of events that cause this trigger to fire.

scope
String

The ARM resource ID of the Storage Account.

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.

blobPathBeginsWith
String

The blob path must begin with the pattern provided for trigger to fire. For example, '/records/blobs/december/' will only fire the trigger for blobs in the december folder under the records container. At least one of these must be provided: blobPathBeginsWith, blobPathEndsWith.

blobPathEndsWith
String

The blob path must end with the pattern provided for trigger to fire. For example, 'december/boxes.csv' will only fire the trigger for blobs named boxes in a december folder. At least one of these must be provided: blobPathBeginsWith, blobPathEndsWith.

ignoreEmptyBlobs
Nullable<Boolean>

If set to true, blobs with zero bytes will be ignored.

Applies to