BlobEventsTriggerArgs

data class BlobEventsTriggerArgs(val annotations: Output<List<Any>>? = null, val blobPathBeginsWith: Output<String>? = null, val blobPathEndsWith: Output<String>? = null, val description: Output<String>? = null, val events: Output<List<Either<String, BlobEventTypes>>>, val ignoreEmptyBlobs: Output<Boolean>? = null, val pipelines: Output<List<TriggerPipelineReferenceArgs>>? = null, val scope: Output<String>, val type: Output<String>) : ConvertibleToJava<BlobEventsTriggerArgs>

Trigger that runs every time a Blob event occurs.

Constructors

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

Properties

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

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

Link copied to clipboard
val blobPathBeginsWith: Output<String>? = null

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
val blobPathEndsWith: Output<String>? = null

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: Output<String>? = null

Trigger description.

Link copied to clipboard
val events: Output<List<Either<String, BlobEventTypes>>>

The type of events that cause this trigger to fire.

Link copied to clipboard
val ignoreEmptyBlobs: Output<Boolean>? = null

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
val scope: Output<String>

The ARM resource ID of the Storage Account.

Link copied to clipboard
val type: Output<String>

Trigger type. Expected value is 'BlobEventsTrigger'.

Functions

Link copied to clipboard
open override fun toJava(): BlobEventsTriggerArgs