Package version:

Trigger that runs every time the selected Blob container changes.

interface BlobTrigger {
    annotations?: any[];
    description?: string;
    folderPath: string;
    linkedService: LinkedServiceReference;
    maxConcurrency: number;
    pipelines?: TriggerPipelineReference[];
    runtimeState?: string;
    type: "BlobTrigger";
}

Hierarchy (view full)

Properties

annotations?: any[]

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

description?: string

Trigger description.

folderPath: string

The path of the container/folder that will trigger the pipeline.

linkedService: LinkedServiceReference

The Azure Storage linked service reference.

maxConcurrency: number

The max number of parallel files to handle when it is triggered.

Pipelines that need to be started.

runtimeState?: string

Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. NOTE: This property will not be serialized. It can only be populated by the server.

type

Polymorphic discriminator, which specifies the different types this object can be