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

    Interface TransferStatus

    interface TransferStatus {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.storage.v1.TransferStatus";
        error?: TransferError;
        lastIteration?: TransferIteration;
        state: TransferStatus_State;
        suspensionState: TransferStatus_SuspensionState;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.storage.v1.TransferStatus"

    Error information if the transfer has failed.

    lastIteration?: TransferIteration

    If there is active iteration, its status will be given. If it is a new transfer that doesn't have iteration yet, nothing will be returned. Otherwise, last finished transaction will be returned.

    Current transfer state.

    If the transfer is suspended, transfer's suspension state becomes SUSPENDED.