/scalemgmt/v3/filesystems/{filesystem}/disksquorum: GET

Lists information about the disk quorum.

Availability

Available on all IBM Storage Scale editions.

Description

The GET filesystems/{filesystem}/disksquorum request lists information about the disk quorum. For more information, see File system descriptor quorum.

Request URL

https://<IP address or host name of API server>:<port>/scalemgmt/v3/filesystems/{filesystem}/disksquorum
where
{filesystem}
Specifies the name of the file system.

Request headers

Accept: application/json

Parameters

The following parameters can be used in the request URL to customize the request:
Table 1. List of parameters
Parameter name Description and applicable keywords Required/optional
filesystem The name of the file system. Required.
X-StorageScaleDomain The domain to be authorized against for the request. The default value is StorageScaleDomain. Optional.

Request data

No request data.

Response data

  • 200: A successful response.
    {
      "migration_in_progress": true,
      "quorum_disks": 0,
      "read_quorum_value_new": 0,
      "read_quorum_value_old": 0,
      "write_quorum_value_new": 0,
      "write_quorum_value_old": 0
    }

Examples

The following example list information about the disk quorum in the fs_no_replica_2 file system:

Request data:
curl -X 'GET' \'https://localhost:46443/scalemgmt/v3/filesystems/fs_no_replica_2/disksquorum' \
  -H 'accept: application/json' \
  -n -k
Response data:
{
    "quorum_disks": 3,
    "read_quorum_value_old": 2,
    "write_quorum_value_old": 2,
    "read_quorum_value_new": 2,
    "write_quorum_value_new": 2
}