Endpoint

/v1/cluster/protection/status

GET

Gets detailed status information for the data protection of the cluster.

Parameters

This resource has no parameters.

Response

Codes

Code Description
200 Return value on success

Schema

{
  "description": "api_protection_status",
  "type": "object",
  "properties": {
    "blocks_per_stripe": {
      "description": "The total number of blocks per stripe, including parity.",
      "type": "number"
    },
    "data_blocks_per_stripe": {
      "description": "The number of data blocks per stripe.",
      "type": "number"
    },
    "protection_system_type": {
      "description": "The data protection type for this cluster.",
      "type": "string"
    },
    "max_node_failures": {
      "description": "The maximum number of node failures this cluster can sustain and remain operational.",
      "type": "number"
    },
    "max_drive_failures": {
      "description": "The maximum number of drive failures this cluster can sustain and remain operational.",
      "type": "number"
    },
    "max_drive_spares": {
      "description": "DEPRECATED: The approximate number of drives of sparing space that this cluster has reserved for reprotect.",
      "type": "number"
    },
    "remaining_node_failures": {
      "description": "The number of node failures this cluster can currently sustain and remain operational.",
      "type": "number"
    },
    "remaining_drive_failures": {
      "description": "The number of drive failures this cluster can currently sustain and remain operational.",
      "type": "number"
    },
    "pending_configuration": {
      "description": "The configuration to which this cluster is being changed.",
      "type": "object",
      "properties": {
        "blocks_per_stripe": {
          "description": "Number of blocks per stripe for this stripe config",
          "type": "number"
        },
        "max_drive_failures": {
          "description": "Number of simultaneous drive failures supported for this stripe config",
          "type": "number"
        },
        "max_node_failures": {
          "description": "Number of simultaneous node failures supported for this stripe config",
          "type": "number"
        }
      }
    }
  }
}