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

    Interface DiskSnapshotServiceServer

    Handles server calls for the nebius.compute.v1.DiskSnapshotService service.

    interface DiskSnapshotServiceServer {
        create: handleUnaryCall<CreateDiskSnapshotRequest, Operation>;
        delete: handleUnaryCall<DeleteDiskSnapshotRequest, Operation>;
        get: handleUnaryCall<GetDiskSnapshotRequest, DiskSnapshot>;
        getByName: handleUnaryCall<GetByNameRequest, DiskSnapshot>;
        list: handleUnaryCall<ListDiskSnapshotsRequest, ListDiskSnapshotsResponse>;
        listByDisk: handleUnaryCall<
            ListDiskSnapshotsByDiskRequest,
            ListDiskSnapshotsByDiskResponse,
        >;
        update: handleUnaryCall<UpdateDiskSnapshotRequest, Operation>;
        [name: string]: UntypedHandleCall;
    }

    Hierarchy

    • UntypedServiceImplementation
      • DiskSnapshotServiceServer

    Indexable

    • [name: string]: UntypedHandleCall

      Handles server calls for the nebius.compute.v1.DiskSnapshotService service.

    Index
    create: handleUnaryCall<CreateDiskSnapshotRequest, Operation>

    Creates a new snapshot resource of a disk.

    delete: handleUnaryCall<DeleteDiskSnapshotRequest, Operation>

    Deletes snapshot.

    get: handleUnaryCall<GetDiskSnapshotRequest, DiskSnapshot>

    Retrieves detailed information about a specific snapshot by its ID.

    getByName: handleUnaryCall<GetByNameRequest, DiskSnapshot>

    Retrieves information about a snapshot by its parent and name.

    Lists all snapshots in a specific parent resource.

    listByDisk: handleUnaryCall<
        ListDiskSnapshotsByDiskRequest,
        ListDiskSnapshotsByDiskResponse,
    >

    Lists all snapshots with a specific source disk.

    update: handleUnaryCall<UpdateDiskSnapshotRequest, Operation>

    Updates an existing snapshot with new configuration parameters.