cdx-proto
    Preparing search index...

    Type Alias Trigger

    Trigger: Message<"cyclonedx.v1_6.Trigger"> & {
        bomRef: string;
        conditions: Condition[];
        description?: string;
        event?: Event;
        inputs: InputType[];
        name?: string;
        outputs: OutputType[];
        properties: Property[];
        resourceReferences: ResourceReferenceChoice[];
        timeActivated?: Timestamp;
        type: Trigger_TriggerType;
        uid: string;
    }

    Represents a resource that can conditionally activate (or fire) tasks based upon associated events and their data.

    Type declaration

    • bomRef: string

      BOM unique reference to the resource.

      from field: string bom_ref = 1;

    • conditions: Condition[]

      Conditions

      from field: repeated cyclonedx.v1_6.Condition conditions = 9;

    • Optionaldescription?: string

      A description of the resource instance.

      from field: optional string description = 4;

    • Optionalevent?: Event

      The event data that caused the associated trigger to activate.

      from field: optional cyclonedx.v1_6.Event event = 8;

    • inputs: InputType[]

      Represents resources and data brought into a task at runtime by an executor or task commands

      from field: repeated cyclonedx.v1_6.InputType inputs = 11;

    • Optionalname?: string

      The name of the resource instance.

      from field: optional string name = 3;

    • outputs: OutputType[]

      Represents resources and data output from a task at runtime by an executor or task commands

      from field: repeated cyclonedx.v1_6.OutputType outputs = 12;

    • properties: Property[]

      Additional properties of the trigger.

      from field: repeated cyclonedx.v1_6.Property properties = 5;

    • resourceReferences: ResourceReferenceChoice[]

      References to component or service resources that are used to realize the resource instance.

      from field: repeated cyclonedx.v1_6.ResourceReferenceChoice resourceReferences = 6;

    • OptionaltimeActivated?: Timestamp

      The date and time (timestamp) when the trigger was activated.

      from field: optional google.protobuf.Timestamp timeActivated = 10;

    • type: Trigger_TriggerType

      The source type of event which caused the trigger to fire.

      from field: cyclonedx.v1_6.Trigger.TriggerType type = 7;

    • uid: string

      The unique identifier for the resource instance within its deployment context.

      from field: string uid = 2;

    from message cyclonedx.v1_6.Trigger