PATCH – Update FanSpeedBoost property
Use the PATCH method to update the property in Chassis resource for Redfish service.
Request URL
PATCH https://<BMC_IPADDR>/redfish/v1/Chassis/1
Request body
Properties to be updated are shown as bellow.
Field | Type | Error Message ID | |||
---|---|---|---|---|---|
Oem | Object | Expanded | |||
Lenovo | Object | Expanded | |||
FanSpeedBoost | String | The value should be set to either “Normal”, “Low”, “Medium” or “High”. |
Response
The response returns same content as GET operation with updated properties.
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example is PATCH body.
{
"Oem": {
"Lenovo": {
"FanSpeedBoost": "Low"
}
}
}
After the PATCH operation runs successfully, querying the chassis resource returns below example JSON response:
"Oem": {
"Lenovo": {
"SolutionServiceEnabled": false,
"LEDs": {
"@odata.id": "/redfish/v1/Chassis/1/Oem/Lenovo/LEDs"
},
"SystemBoardSerialNumber": "L1HF1CN002X",
"Slots": {
"@odata.id": "/redfish/v1/Chassis/1/Oem/Lenovo/Slots"
},
"FanSpeedBoost": "Low",
"ProductName": "ThinkSystem SD650 V3",
"@odata.type": "#LenovoChassis.v1_0_0.LenovoChassisProperties",
"FruPartNumber": "03GX534"
}
},
Give documentation feedback