BlobEventsTriggerResponse

data class BlobEventsTriggerResponse(val annotations: List<Any>? = null, val blobPathBeginsWith: String? = null, val blobPathEndsWith: String? = null, val description: String? = null, val events: List<String>, val ignoreEmptyBlobs: Boolean? = null, val pipelines: List<TriggerPipelineReferenceResponse>? = null, val runtimeState: String, val scope: String, val type: String)

Trigger that runs every time a Blob event occurs.

Constructors

Link copied to clipboard
constructor(annotations: List<Any>? = null, blobPathBeginsWith: String? = null, blobPathEndsWith: String? = null, description: String? = null, events: List<String>, ignoreEmptyBlobs: Boolean? = null, pipelines: List<TriggerPipelineReferenceResponse>? = null, runtimeState: String, scope: String, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val annotations: List<Any>? = null

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

Link copied to clipboard

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.

Link copied to clipboard

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.

Link copied to clipboard
val description: String? = null

Trigger description.

Link copied to clipboard

The type of events that cause this trigger to fire.

Link copied to clipboard

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

Link copied to clipboard

Pipelines that need to be started.

Link copied to clipboard

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

Link copied to clipboard

The ARM resource ID of the Storage Account.

Link copied to clipboard

Trigger type. Expected value is 'BlobEventsTrigger'.