OBJECT

PvcInformation

link GraphQL Schema definition

  • type PvcInformation {
  • # ID to uniquely identify PVC.
  • id: String!
  • # Name of PVC in snapshot.
  • name: String!
  • # PVC storage capacity.
  • capacity: String!
  • # Access mode mounted on a host.
  • accessMode: String!
  • # Storage class of PVC.
  • storageClass: String!
  • # PV name on which PVC bound.
  • volume: String!
  • # Phase in which PVC bound to the PV.
  • phase: String!
  • # Json string of PVC Labels.
  • labels: String!
  • }