VmUtilizationMetrics constructor

VmUtilizationMetrics({
  1. int? cpuAveragePercent,
  2. int? cpuMaxPercent,
  3. String? diskIoRateAverageKbps,
  4. String? diskIoRateMaxKbps,
  5. int? memoryAveragePercent,
  6. int? memoryMaxPercent,
  7. String? networkThroughputAverageKbps,
  8. String? networkThroughputMaxKbps,
})

Implementation

VmUtilizationMetrics({
  this.cpuAveragePercent,
  this.cpuMaxPercent,
  this.diskIoRateAverageKbps,
  this.diskIoRateMaxKbps,
  this.memoryAveragePercent,
  this.memoryMaxPercent,
  this.networkThroughputAverageKbps,
  this.networkThroughputMaxKbps,
});