Package version:

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

interface Trigger {
    annotations?: any[];
    description?: string;
    runtimeState?: string;
    type:
        | "MultiplePipelineTrigger"
        | "ScheduleTrigger"
        | "BlobTrigger"
        | "BlobEventsTrigger"
        | "CustomEventsTrigger"
        | "TumblingWindowTrigger"
        | "RerunTumblingWindowTrigger"
        | "ChainingTrigger";
    [property: string]: any;
}

Hierarchy (view full)

Indexable

  • [property: string]: any

    Describes unknown properties. The value of an unknown property can be of "any" type.

Properties

annotations?: any[]

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

description?: string

Trigger description.

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:
    | "MultiplePipelineTrigger"
    | "ScheduleTrigger"
    | "BlobTrigger"
    | "BlobEventsTrigger"
    | "CustomEventsTrigger"
    | "TumblingWindowTrigger"
    | "RerunTumblingWindowTrigger"
    | "ChainingTrigger"

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