if (request.server.name != null && !Objects.equal(instance.getName(), request.server.name)) {
instance = instances.updateInstance(getProject(), instance.getId(), request.server.name);
}
WrappedServer response = new WrappedServer();
ReservationData reservation = getReservation(instance.getReservationId());
response.server = toModel(reservation, instance, true);
return response;