OBJECT

ClusterDisk

Description

Rubrik cluster disk type.

link GraphQL Schema definition

  • type ClusterDisk {
  • # Disk status.
  • status: ClusterDiskStatus!
  • # Specifies if the disk is encrypted.
  • isEncrypted: Boolean!
  • # Disk type.
  • diskType: ClusterDiskType!
  • # ID of the Rubrik cluster node.
  • nodeId: String
  • # Disk capacity, in bytes.
  • capacityBytes: Long!
  • # Disk path.
  • path: String!
  • # Disk unallocated bytes.
  • unallocatedBytes: Long
  • # Disk usable bytes.
  • usableBytes: Long
  • # ID of the Rubrik cluster.
  • clusterId: UUID!
  • # LED status of the disk, where true means ON and false is OFF.
  • ledStatus: Boolean
  • # Disk serial ID.
  • serial: String
  • # Specifies if the disk is resizable.
  • isResizable: Boolean!
  • # This field is deprecated.
  • id: String! @deprecated( reason: "Please use diskId instead." )
  • # ID of the Rubrik cluster disk type.
  • diskId: String!
  • }