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:
{
"@odata.context": "/redfish/v1/$metadata#Bios.Bios",
"@odata.etag": "\"E29D62F1\"",
"@odata.id": "/redfish/v1/Systems/1/Bios/Pending",
"@odata.type": "#Bios.v1_2_0.Bios",
"AttributeRegistry": "BiosAttributeRegistry.1.0.0",
"Attributes": {
"AdvancedRAS_DIMMDisablePolicy": "DisableFaultyDIMMPersistently",
...
"iSCSI_TargetPort_8": 3260
},
"Description": "Bios Pending Setting",
"Id": "Pending",
"Name": "Pending"
}
Give documentation feedback