hmci/src/main/groovy/biz/nellemann/hmci/pcm/ServerMemory.groovy

14 lines
242 B
Groovy
Raw Normal View History

2020-08-18 11:49:48 +00:00
package biz.nellemann.hmci.pcm
2020-08-07 14:27:42 +00:00
import groovy.transform.ToString
@ToString
class ServerMemory {
2020-08-08 11:24:48 +00:00
2020-08-07 14:27:42 +00:00
List<BigDecimal> totalMem
List<BigDecimal> availableMem
List<BigDecimal> configurableMem
List<BigDecimal> assignedMemToLpars
2020-08-08 11:24:48 +00:00
2020-08-07 14:27:42 +00:00
}