GET – Thermal Subsystem properties
Use the GET method to retrieve properties in ThermalSubsystem for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Chassis/1/ThermalSubsystem
Request body
None
Response body
Field | Type | Description | |
---|---|---|---|
Id | String | ThermalSubsystem | |
Name | String | Thermal Subsystem | |
Description | String | This resource shall represent a thermal subsystem for a Redfish implementation. | |
Status | Object | Expanded. | |
State | String | This indicates the known state of the resource, such as if it is enabled. Always set to “Enabled”. | |
Health | String | The worst value of Health of Fans. | |
ThermalMetrics | Link | Reference to the summary of thermal metrics for this subsystem. | |
Fans | Link | Reference to the collection of fans within this subsystem. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"@odata.etag": "\"0099620F\"",
"@odata.id": "/redfish/v1/Chassis/1/ThermalSubsystem",
"@odata.type": "#ThermalSubsystem.v1_0_0.ThermalSubsystem",
"Description": "This resource shall represent a thermal subsystem for a Redfish implementation.",
"Fans": {
"@odata.id": "/redfish/v1/Chassis/1/ThermalSubsystem/Fans"
},
"Id": "ThermalSubsystem",
"Name": "Thermal Subsystem",
"Status": {
"Health": "OK",
"State": "Enabled"
},
"ThermalMetrics": {
"@odata.id": "/redfish/v1/Chassis/1/ThermalSubsystem/ThermalMetrics"
}
}
Give documentation feedback