persistentvolumeclaim.go 305 B

12345678910111213
  1. package kubemodel
  2. import "time"
  3. // TODO complete
  4. type PersistentVolumeClaim struct {
  5. UID string
  6. PersistentVolumeUID string
  7. Name string
  8. Start time.Time
  9. End time.Time
  10. StorageCapacityByteSeconds uint64
  11. }