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

    Interface ProgressTracker_WorkDone

    Information about the work done by the task or its step, expressed in ticks (abstract work units). Each tick may represent a real measurement (e.g., VMs created, KiB uploaded), number of substeps or a percentage of work completed.

    interface ProgressTracker_WorkDone {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.common.v1.ProgressTracker.WorkDone";
        doneTickCount: Long;
        totalTickCount: Long;
        [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.WorkDone"
    doneTickCount: Long

    Number of ticks completed so far. MUST be between 0 and total_tick_count, inclusive. MUST equal total_tick_count if the task or step is finished.

    totalTickCount: Long

    Total number of ticks (work units) to be completed. MUST be greater than 0.