cdx-proto
    Preparing search index...

    Type Alias Workflow

    Workflow: Message<"cyclonedx.v1_5.Workflow"> & {
        bomRef: string;
        description?: string;
        inputs: cdx_15.InputType[];
        name?: string;
        outputs: cdx_15.OutputType[];
        properties: cdx_15.Property[];
        resourceReferences: cdx_15.ResourceReferenceChoice[];
        runtimeTopology: cdx_15.Dependency[];
        steps: cdx_15.Step[];
        taskDependencies: cdx_15.Dependency[];
        tasks: cdx_15.Task[];
        taskTypes: cdx_15.TaskType[];
        timeEnd?: Timestamp;
        timeStart?: Timestamp;
        trigger?: cdx_15.Trigger;
        uid: string;
        workspaces: cdx_15.Workspace[];
    }

    A specialized orchestration task.

    Type declaration

    • bomRef: string

      BOM unique reference to the resource.

      from field: string bom_ref = 1;

    • Optionaldescription?: string

      A description of the resource instance.

      from field: optional string description = 4;

    • inputs: cdx_15.InputType[]

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

      from field: repeated cyclonedx.v1_5.InputType inputs = 12;

    • Optionalname?: string

      The name of the resource instance.

      from field: optional string name = 3;

    • outputs: cdx_15.OutputType[]

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

      from field: repeated cyclonedx.v1_5.OutputType outputs = 13;

    • properties: cdx_15.Property[]

      Domain-specific resource instance properties.

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

    • resourceReferences: cdx_15.ResourceReferenceChoice[]

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

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

    • runtimeTopology: cdx_15.Dependency[]

      A graph of the component runtime topology for workflow's instance.

      from field: repeated cyclonedx.v1_5.Dependency runtimeTopology = 17;

    • steps: cdx_15.Step[]

      The sequence of steps for the task.

      from field: repeated cyclonedx.v1_5.Step steps = 11;

    • taskDependencies: cdx_15.Dependency[]

      The graph of dependencies between tasks within the workflow.

      from field: repeated cyclonedx.v1_5.Dependency taskDependencies = 8;

    • tasks: cdx_15.Task[]

      The tasks that comprise the workflow.

      from field: repeated cyclonedx.v1_5.Task tasks = 7;

    • taskTypes: cdx_15.TaskType[]

      Indicates the types of activities performed by the set of workflow tasks.

      from field: repeated cyclonedx.v1_5.TaskType taskTypes = 9;

    • OptionaltimeEnd?: Timestamp

      The date and time (timestamp) when the task ended.

      from field: optional google.protobuf.Timestamp timeEnd = 15;

    • OptionaltimeStart?: Timestamp

      The date and time (timestamp) when the task started.

      from field: optional google.protobuf.Timestamp timeStart = 14;

    • Optionaltrigger?: cdx_15.Trigger

      The trigger that initiated the task.

      from field: optional cyclonedx.v1_5.Trigger trigger = 10;

    • uid: string

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

      from field: string uid = 2;

    • workspaces: cdx_15.Workspace[]

      A set of named filesystem or data resource shareable by workflow tasks.

      from field: repeated cyclonedx.v1_5.Workspace workspaces = 16;

    from message cyclonedx.v1_5.Workflow