Returns a list all of the storage fault domains on your system.
Endpoint
POST /storage_fault_domain/list
Request structure
{
"pageSize": 0,
"pageToken": "string"
}
| Parameter | Type | Description |
|---|---|---|
| pageSize | Integer | The maximum amount of domains to return in a single response. |
| pageToken | String | Used to retrieve the next page of results beyond the limit set in the pageSize value. |
Response structure
{
"storageFaultDomains": [
{
"id": "string",
"name": "string",
"tags": "string"
}
],
"pageToken": "string"
}
| Parameter | Type | Description |
|---|---|---|
| storageFaultDomains | Array | A list of the available storage fault domains. |
| id | String | The unique identifier of the fault domain. |
| name | String | The name of the fault domain. |
| tags | String | The metadata tags associated with the fault domain. |
| pageToken | String | The value of the token used view the next page of results beyond the limit set in the pageSize value. |
Return codes
|
Status code |
HTTP name |
Description |
|---|---|---|
| 200 | OK | The list of storage fault domains was created successfully. |
| default | Error | An error has occurred while attempting to list the storage fault domains. |