listAllocations abstract method

  1. @GET('/api/client/servers/{serverId}/network/allocations')
Future<FractalListData<Allocation>> listAllocations({
  1. @Path() required String serverId,
  2. @CancelRequest() CancelToken? cancelToken,
  3. @SendProgress() @experimental ProgressCallback? onSendProgress,
  4. @ReceiveProgress() @experimental ProgressCallback? onReceiveProgress,
})

List all allocations that the Server has

Implementation

@GET('/api/client/servers/{serverId}/network/allocations')
Future<FractalListData<Allocation>> listAllocations({
  @Path() required String serverId,
  @CancelRequest() CancelToken? cancelToken,
  @SendProgress() @experimental ProgressCallback? onSendProgress,
  @ReceiveProgress() @experimental ProgressCallback? onReceiveProgress,
});