node.go 313 B

123456789101112131415
  1. package kubemodel
  2. import "time"
  3. // TODO complete
  4. // TODO uint64 or float64 for numbers?
  5. type Node struct {
  6. UID string
  7. ClusterUID string
  8. Name string
  9. Start time.Time
  10. End time.Time
  11. CPUMillicoreSeconds uint64
  12. RAMByteSeconds uint64
  13. }