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

    Interface TransferServiceServer

    Handles server calls for the nebius.storage.v1.TransferService service.

    interface TransferServiceServer {
        create: handleUnaryCall<CreateTransferRequest, Operation>;
        delete: handleUnaryCall<DeleteTransferRequest, Operation>;
        get: handleUnaryCall<GetTransferRequest, Transfer>;
        getByName: handleUnaryCall<GetByNameRequest, Transfer>;
        getIterationHistory: handleUnaryCall<
            GetIterationHistoryRequest,
            GetIterationHistoryResponse,
        >;
        list: handleUnaryCall<ListTransfersRequest, ListTransfersResponse>;
        resume: handleUnaryCall<ResumeTransferRequest, Operation>;
        stop: handleUnaryCall<StopTransferRequest, Operation>;
        update: handleUnaryCall<UpdateTransferRequest, Operation>;
        [name: string]: UntypedHandleCall;
    }

    Hierarchy

    • UntypedServiceImplementation
      • TransferServiceServer

    Indexable

    • [name: string]: UntypedHandleCall

      Handles server calls for the nebius.storage.v1.TransferService service.

    Index
    create: handleUnaryCall<CreateTransferRequest, Operation>

    Handles the Create RPC.

    delete: handleUnaryCall<DeleteTransferRequest, Operation>

    Fully delete a transfer along with its history. If the transfer is active, it will be stopped and then deleted.

    get: handleUnaryCall<GetTransferRequest, Transfer>

    Handles the Get RPC.

    getByName: handleUnaryCall<GetByNameRequest, Transfer>

    Handles the GetByName RPC.

    getIterationHistory: handleUnaryCall<
        GetIterationHistoryRequest,
        GetIterationHistoryResponse,
    >

    Get transfer iteration history.

    Handles the List RPC.

    resume: handleUnaryCall<ResumeTransferRequest, Operation>

    Resume stopped or failed transfer.

    stop: handleUnaryCall<StopTransferRequest, Operation>

    Stop active transfer. If the transfer is currently moving data, it will be transitioned to the Stopping state and will move to the Stopped state once all processes have been stopped. If the transfer is waiting between iterations, it will stop immediately. Only transfers in Active state can be stopped.

    update: handleUnaryCall<UpdateTransferRequest, Operation>

    Handles the Update RPC.