CustomEventsTriggerResponse

data class CustomEventsTriggerResponse(val annotations: List<Any>? = null, val description: String? = null, val events: List<Any>, val pipelines: List<TriggerPipelineReferenceResponse>? = null, val runtimeState: String, val scope: String, val subjectBeginsWith: String? = null, val subjectEndsWith: String? = null, val type: String)

Trigger that runs every time a custom event is received.

Constructors

Link copied to clipboard
constructor(annotations: List<Any>? = null, description: String? = null, events: List<Any>, pipelines: List<TriggerPipelineReferenceResponse>? = null, runtimeState: String, scope: String, subjectBeginsWith: String? = null, subjectEndsWith: String? = null, 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
val description: String? = null

Trigger description.

Link copied to clipboard

The list of event types that cause this trigger to fire.

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 Azure Event Grid Topic.

Link copied to clipboard

The event subject must begin with the pattern provided for trigger to fire. At least one of these must be provided: subjectBeginsWith, subjectEndsWith.

Link copied to clipboard
val subjectEndsWith: String? = null

The event subject must end with the pattern provided for trigger to fire. At least one of these must be provided: subjectBeginsWith, subjectEndsWith.

Link copied to clipboard

Trigger type. Expected value is 'CustomEventsTrigger'.