OBJECT

DiskStatus

Description

Supported in v5.0+

link GraphQL Schema definition

  • type DiskStatus {
  • # Disk mode of the disk. One of DATA, METADATA, BOOT, UNPARTITIONED, or UNKNOWN.
  • diskMode: String
  • # Required. Supported in v5.0+
  • diskType: String!
  • # Denotes whether a specific disk supports an admin-controllable indicator LED.
  • hasIndicatorLed: Boolean
  • # Required. Supported in v5.0+
  • id: String!
  • # Required. Supported in v5.0+
  • isDegraded: Boolean!
  • # Required. Supported in v5.0+
  • isEncrypted: Boolean!
  • # Supported in v9.4+
  • # The manufacturer of the disk.
  • manufacturer: String
  • # Supported in v9.4+
  • # The model number of the disk.
  • modelNumber: String
  • # Required. Supported in v5.0+
  • nodeId: String!
  • # Supported in v9.4+
  • # RAID error message if any.
  • raidError: String
  • # Supported in v9.4+
  • # RAID rebuilding percentage (0-100) when RAID status is REBUILDING.
  • raidRebuildingPercentage: Float
  • # Supported in v9.4+
  • # RAID status of the disk (NONE, OPTIMAL, READY_TO_REBUILD, REBUILDING, DEGRADED,
  • # OFFLINE).
  • raidStatus: String
  • # Supported in v9.4+
  • # RAID type of the disk (RAID0, RAID1).
  • raidType: String
  • # Supported in v9.4+
  • # The serial number of the disk.
  • serialNumber: String
  • # Required. Supported in v5.0+
  • status: String!
  • }