GET – 暂挂系统设置
使用 GET 方法检索 Redfish 服务的 System 资源(暂挂)中的属性。
请求 URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/Pending
请求正文
无
响应正文
字段 | 类型 | 描述 | ||||
---|---|---|---|---|---|---|
Id | 字符串 | Pending | ||||
Name | 字符串 | Pending | ||||
Description | 字符串 | ComputerSystem 1 暂挂设置 | ||||
Boot | 对象 | 已展开。 | ||||
BootOrder | 数组 | 项:字符串 项数:N BootOrder 属性的暂挂数据。 | ||||
BootOrder[N] | 字符串 | BootOptionReference 字符串,表示与此计算机系统相关的持久引导顺序。 |
状态代码
HTTP 状态代码 | 错误消息 ID |
---|---|
500 | InternalError |
示例
返回以下示例 JSON 响应:
{
"@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"
}
提供反馈