use of io.stackgres.apiweb.dto.distributedlogs.DistributedLogsPersistentVolume in project stackgres by ongres.
the class DistributedLogsTransformer method getResourcePersistentVolume.
private DistributedLogsPersistentVolume getResourcePersistentVolume(StackGresDistributedLogsPersistentVolume source) {
DistributedLogsPersistentVolume transformation = new DistributedLogsPersistentVolume();
transformation.setSize(source.getSize());
transformation.setStorageClass(source.getStorageClass());
return transformation;
}
Aggregations