Trigger Class

Azure data factory nested object which contains information about creating pipeline run.

You probably want to use the sub-classes and not this class directly. Known sub-classes are: BlobEventsTrigger, BlobTrigger, ChainingTrigger, CustomEventsTrigger, MultiplePipelineTrigger, RerunTumblingWindowTrigger, ScheduleTrigger, TumblingWindowTrigger

Constructor

Trigger(*args: Any, **kwargs: Any)

Variables

Name Description
type
str

Trigger type. Required. Default value is None.

description
str

Trigger description.

runtime_state

Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Known values are: "Started", "Stopped", and "Disabled".

annotations

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

Attributes

annotations

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

annotations: list[Any] | None

description

Trigger description.

description: str | None

runtime_state

Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Known values are: "Started", "Stopped", and "Disabled".

runtime_state: str | _models.TriggerRuntimeState | None

type

Trigger type. Required. Default value is None.

type: str