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

ArmDataFactoryModelFactory.DataFactoryBlobEventsTrigger Method

Definition

Initializes a new instance of DataFactoryBlobEventsTrigger.

public static Azure.ResourceManager.DataFactory.Models.DataFactoryBlobEventsTrigger DataFactoryBlobEventsTrigger (string description = default, Azure.ResourceManager.DataFactory.Models.DataFactoryTriggerRuntimeState? runtimeState = default, System.Collections.Generic.IEnumerable<BinaryData> annotations = default, System.Collections.Generic.IDictionary<string,BinaryData> additionalProperties = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.DataFactory.Models.TriggerPipelineReference> pipelines = default, string blobPathBeginsWith = default, string blobPathEndsWith = default, bool? ignoreEmptyBlobs = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.DataFactory.Models.DataFactoryBlobEventType> events = default, string scope = default);
static member DataFactoryBlobEventsTrigger : string * Nullable<Azure.ResourceManager.DataFactory.Models.DataFactoryTriggerRuntimeState> * seq<BinaryData> * System.Collections.Generic.IDictionary<string, BinaryData> * seq<Azure.ResourceManager.DataFactory.Models.TriggerPipelineReference> * string * string * Nullable<bool> * seq<Azure.ResourceManager.DataFactory.Models.DataFactoryBlobEventType> * string -> Azure.ResourceManager.DataFactory.Models.DataFactoryBlobEventsTrigger
Public Shared Function DataFactoryBlobEventsTrigger (Optional description As String = Nothing, Optional runtimeState As Nullable(Of DataFactoryTriggerRuntimeState) = Nothing, Optional annotations As IEnumerable(Of BinaryData) = Nothing, Optional additionalProperties As IDictionary(Of String, BinaryData) = Nothing, Optional pipelines As IEnumerable(Of TriggerPipelineReference) = Nothing, Optional blobPathBeginsWith As String = Nothing, Optional blobPathEndsWith As String = Nothing, Optional ignoreEmptyBlobs As Nullable(Of Boolean) = Nothing, Optional events As IEnumerable(Of DataFactoryBlobEventType) = Nothing, Optional scope As String = Nothing) As DataFactoryBlobEventsTrigger

Parameters

description
String

Trigger description.

runtimeState
Nullable<DataFactoryTriggerRuntimeState>

Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger.

annotations
IEnumerable<BinaryData>

List of tags that can be used for describing the trigger.

additionalProperties
IDictionary<String,BinaryData>

Additional Properties.

pipelines
IEnumerable<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.

events
IEnumerable<DataFactoryBlobEventType>

The type of events that cause this trigger to fire.

scope
String

The ARM resource ID of the Storage Account.

Returns

A new DataFactoryBlobEventsTrigger instance for mocking.

Applies to