Skip to main content

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 CodeError Message ID
500InternalError

Example

The following example JSON response is returned:

{
"@odata.context": "/redfish/v1/$metadata#ComputerSystem.ComputerSystem",
"@odata.etag": "\"535D18D5\"",
"@odata.id": "/redfish/v1/Systems/1/Pending",
"@odata.type": "#ComputerSystem.v1_19_0.ComputerSystem",
"Boot": {
"BootOrder": [
"Boot000A",
"Boot0001",
"Boot0002",
"Boot0003"
]
},
"Description": "ComputerSystem 1 Pending Setting",
"Id": "Pending",
"Name": "Pending"
}