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

    Interface TransferIteration

    interface TransferIteration {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.storage.v1.TransferIteration";
        averageThroughputBytes: Long;
        endTime?: Dayjs;
        error?: TransferError;
        objectsTransferredCount: Long;
        objectsTransferredSize: Long;
        sequenceNumber: Long;
        startTime?: Dayjs;
        state: TransferIteration_State;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

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

    Average throughput in bytes per second during the iteration.

    endTime?: Dayjs

    Iteration end time.

    Human-readable error description. Populated only if state is FAILED.

    objectsTransferredCount: Long

    Number of objects transferred during this iteration.

    objectsTransferredSize: Long

    Total size of objects transferred during this iteration.

    sequenceNumber: Long

    Sequence number of the iteration in the transfer, starting from 1.

    startTime?: Dayjs

    Iteration start time.

    Current iteration state.