GET – The pending System settings
Use the GET method to retrieve properties in System resource (pending) for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/Pending
Request body
None
Response body
Field | Type | Description | ||||
---|---|---|---|---|---|---|
Id | String | “Pending” | ||||
Name | String | “Pending” | ||||
Description | String | ComputerSystem 1 Pending Setting | ||||
Boot | Object | Expanded | ||||
BootOrder | Array | Items: string Item count: N The pending data of BootOrder attributes. | ||||
BootOrder[N] | String | BootOptionReference strings that represent the persistent boot order for with this computer system. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"@odata.type": "#ComputerSystem.v1_17_0.ComputerSystem",
"@odata.id": "/redfish/v1/Systems/1/Pending",
"Description": "ComputerSystem 1 Pending Setting",
"@odata.context": "/redfish/v1/$metadata#ComputerSystem.ComputerSystem",
"Boot": {
"BootOrder": [
"Boot0005",
"Boot0000",
"Boot0001",
"Boot0002",
"Boot0003",
"Boot0004"
]
},
"@odata.etag": "\"288c5812cdd525a5ec9\"",
"Id": "Pending",
"Name": "Pending"
}
Give documentation feedback