GET – The pending BIOS settings
Use the GET method to retrieve properties in Bios resource (pending) for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/Bios/Pending
Request body
None
Response
Field | Type | Description | ||||
---|---|---|---|---|---|---|
Id | String | “Pending” | ||||
Name | String | “Pending” | ||||
Description | String | Bios Pending Setting | ||||
AttributeRegistry | String | ”BiosAttributeRegistry.1.0.0” | ||||
Attributes | Object | Expanded, the pending data of BIOS attributes |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"Id": "Pending",
"Name": "Pending",
"@odata.context": "/redfish/v1/$metadata#Bios.Bios",
"@odata.type": "#Bios.v1_0_6.Bios",
"AttributeRegistry": "BiosAttributeRegistry.1.0.0",
"Attributes": {
"DevicesandIOPorts_Device_Slot6" : "Enable",
"Memory_MemorySpeed" : "MaxPerformance",
“Processors_CPUPstateControl" : "Autonomous",
"Processors_CStates" : "Disable",
…
…
},
"@odata.etag": "\"55e794278a844299f0ee2f8eb5c57a9e\"",
"@odata.id": "/redfish/v1/Systems/1/Bios/Pending",
"Description": "Bios Pending Setting"
}
Give documentation feedback