/mgmt/status/default/RaidPhysicalDriveStatus GET
Use the HTTP GET method with the
/mgmt/status/default/RaidPhysicalDriveStatus
resource to retrieve details about the
RAID physical drives.
Resource URL
https://host:port/mgmt/status/default/RaidPhysicalDriveStatus
Where
port is 5554 by default.Request headers
The following header must be sent with the request:
- Authorization
- This header must be sent to perform authentication.
Request body format
None.
Security requirements
The caller must be authenticated as an appliance user with sufficient authority. For more information about security, see Types of user and how they are authenticated and User authorization, credential mapping, and access profiles.
Response status codes
- 200
- Status information retrieved successfully.
- 400
- Invalid data provided.
- 401
- Not authenticated.
- 403
- Not authorized.
Response headers
- Content-Type
- This header is returned with a value of
application/json
.
Response body format
The response is in JSON format. The response includes information about the RAID physical drives.
Each object contains the following fields:
- ControllerID
- Integer.
- DeviceID
- Integer.
- ArrayID
- Integer.
- LogicalDriveID
- Integer.
- LogicalDriveName
- String.
- Position
- String.
- State
- String.
- ProgressPercent
- Integer.
- RawSize
- Integer.
- CoercedSize
- Integer.
- InterfaceType
- String.
- InterfaceSpeed
- String.
- SASaddress
- String.
- VendorID
- String.
- ProductID
- String.
- Revision
- String.
- SpecificInfo
- String.
- Failure
- String.
- Temperature
- String.
Examples
The following example requests information about the RAID phyical drives on the appliance.
The following URL is used with the HTTP GET
method:
https://localhost:5554/mgmt/status/default/RaidPhysicalDriveStatus
The following listing shows an example received
response:
{
"_links": {
"self": {
"href": "/mgmt/status/default/RaidPhysicalDriveStatus"
},
"doc": {
"href": "/mgmt/docs/status/RaidPhysicalDriveStatus"
}
},
"RaidPhysicalDriveStatus": [
{
"ControllerID": 1,
"DeviceID": 8,
"ArrayID": 1,
"LogicalDriveID": 1,
"LogicalDriveName": "raid0",
"Position": "HDD2",
"State": "online",
"ProgressPercent": 0,
"RawSize": 1144641,
"CoercedSize": 1143455,
"InterfaceType": "sas",
"InterfaceSpeed": "serial6point0GigabitsPerSecond",
"SASaddress": "5000cca01daa4e050000000000000000",
"VendorID": "IBM-ESXS",
"ProductID": "HUC101212CSS60",
"Revision": "J2M8",
"SpecificInfo": "KZK0NHUHJ2M8J2M8J2M8",
"Failure": "No",
"Temperature": "33 / 91"
},
{
"ControllerID": 1,
"DeviceID": 9,
"ArrayID": 1,
"LogicalDriveID": 1,
"LogicalDriveName": "raid0",
"Position": "HDD1",
"State": "online",
"ProgressPercent": 0,
"RawSize": 1144641,
"CoercedSize": 1143455,
"InterfaceType": "sas",
"InterfaceSpeed": "serial6point0GigabitsPerSecond",
"SASaddress": "5000cca01daa39990000000000000000",
"VendorID": "IBM-ESXS",
"ProductID": "HUC101212CSS60",
"Revision": "J2M8",
"SpecificInfo": "KZK0M4NHJ2M8J2M8J2M8",
"Failure": "No",
"Temperature": "33 / 91"
}
]
}