Endpoint

/v1/cluster/object-backed/protection/fault-tolerance

GET

Gets the current fault tolerance of an object-backed cluster.

Parameters

This resource has no parameters.

Response

Codes

Code Description
200 Return value on success

Schema

{
  "description": "api_object_backed_fault_tolerance",
  "type": "object",
  "properties": {
    "disks": {
      "description": "The maximum number of arbitrary disks that cluster currently supports losing.",
      "type": "number"
    },
    "nodes": {
      "description": "The maximum number of arbitrary nodes that cluster currently supports losing.",
      "type": "number"
    },
    "fault_domains": {
      "description": "The maximum number of arbitrary fault_domains that cluster currently supports losing.",
      "type": "number"
    }
  }
}