@nebius/js-sdk - v0.1.41
    Preparing search index...

    Interface ProgressTracker_Step

    Represents a basic step in the task. Fields are binary-compatible with ProgressTracker for easier processing.

    interface ProgressTracker_Step {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.common.v1.ProgressTracker.Step";
        description: string;
        finishedAt?: Dayjs;
        startedAt?: Dayjs;
        workDone?: ProgressTracker_WorkDone;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.common.v1.ProgressTracker.Step"
    description: string

    Human-readable description of the step, e.g., "Connecting to localhost:8080". MUST be suitable for display to public users. Private descriptions must be filtered server-side based on the use case.

    finishedAt?: Dayjs

    Timestamp when the step finished. MUST be absent for running steps; MUST be present for completed steps.

    startedAt?: Dayjs

    Timestamp when the step started.

    Details on the work to be done for this step and progress made. MAY be absent if unknown.