Member Junction
    Preparing search index...

    Result of a single pipeline step.

    interface RSUPipelineStep {
        DurationMs: number;
        Message: string;
        Name: string;
        Status: "success" | "failed" | "skipped";
        StepIndex?: number;
        StepTotal?: number;
    }
    Index

    Properties

    DurationMs: number
    Message: string
    Name: string
    Status: "success" | "failed" | "skipped"
    StepIndex?: number

    U11 — 1-based position of this step in the pipeline's expected sequence, enabling a DETERMINATE progress stepper (index of total) instead of an indeterminate spinner. Optional/additive — absent on steps recorded before the counter engaged.

    StepTotal?: number

    U11 — expected total steps for this pipeline run (see StepIndex).