Member Junction
    Preparing search index...

    Current status of the RSU system.

    interface RSUStatus {
        CurrentStepIndex?: number;
        CurrentStepName?: string;
        Enabled: boolean;
        LastRunAt: Date;
        LastRunResult: string;
        OutOfSync: boolean;
        OutOfSyncSince: Date;
        Running: boolean;
        StepTotal?: number;
    }
    Index

    Properties

    CurrentStepIndex?: number

    U11 — 1-based index of the current step within the expected sequence (null when idle).

    CurrentStepName?: string

    U11 — name of the step currently executing (null when idle). Powers a determinate stepper.

    Enabled: boolean
    LastRunAt: Date
    LastRunResult: string
    OutOfSync: boolean
    OutOfSyncSince: Date
    Running: boolean
    StepTotal?: number

    U11 — expected total steps for the in-flight pipeline run (null when idle).