@nebius/js-sdk - v0.2.54
    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

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

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents a basic step in the task. Fields are binary-compatible with ProgressTracker for easier processing.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.common.v1.ProgressTracker.Step"

    Contains the fully qualified protobuf type name.

    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.