persistentvolume.go 339 B

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