getBackupDownloadUrl abstract method

  1. @GET('/api/client/servers/{serverId}/backups/{backupId}/download')
Future<FractalData<SignedUrl>> getBackupDownloadUrl({
  1. @Path() required String serverId,
  2. @Path() required String backupId,
  3. @CancelRequest() CancelToken? cancelToken,
  4. @SendProgress() @experimental ProgressCallback? onSendProgress,
  5. @ReceiveProgress() @experimental ProgressCallback? onReceiveProgress,
})

Generate download url for a Backup from the Server

Implementation

@GET('/api/client/servers/{serverId}/backups/{backupId}/download')
Future<FractalData<SignedUrl>> getBackupDownloadUrl({
  @Path() required String serverId,
  @Path() required String backupId,
  @CancelRequest() CancelToken? cancelToken,
  @SendProgress() @experimental ProgressCallback? onSendProgress,
  @ReceiveProgress() @experimental ProgressCallback? onReceiveProgress,
});