GET – 电源管理属性
使用 GET 方法检索服务器的 Power 资源中的属性。
请求 URL
GET https://<BMC_IPADDR>/redfish/v1/Chassis/2/Power
请求正文
无
响应正文
字段 | 类型 | 描述 | |||
---|---|---|---|---|---|
Id | 字符串 | “Power”。 | |||
Name | 字符串 | 电源资源的名称。始终设置为“Power”。 | |||
Description | 字符串 | “Power Consumption and Power Limiting” | |||
PowerControl | 数组 | 这是电源控制功能(功率读数/限制)的定义。 | |||
PowerControl[1] | 对象 | 这是 PowerControl 数组的可寻址成员的基类型。 | |||
MemberId | 字符串 | 此 PowerControl 数组的索引。 | |||
Name | 字符串 | 电源控制功能名称。始终设置为“Server Power Control”。 | |||
PowerConsumedWatts | 数字 | 机箱消耗的实际功率。 | |||
PowerCapacityWatts | 数字 | 可供机箱分配的功率总量。此数字可能是电源模块容量或从上游机箱分配给此机箱的功率预算。 | |||
RelatedItem | 数组 | 机箱资源的链接数组。 | |||
RelatedItem[1] | 链接 | 机箱资源的引用链接。 |
状态代码
HTTP 状态代码 | 错误消息 ID |
---|---|
500 | InternalError |
示例
返回以下示例 JSON 响应:
{
"PowerControl@odata.count": 1,
"PowerControl": [
{
"Name": "Server Power Control",
"RelatedItem@odata.count": 1,
"@odata.id": "/redfish/v1/Chassis/2/Power#/PowerControl/0",
"MemberId": "0",
"PowerCapacityWatts": 200,
"PowerConsumedWatts": 150,
"RelatedItem": [
{
"@odata.id": "/redfish/v1/Chassis/2"
}
]
}
],
"@odata.type": "#Power.v1_5_3.Power",
"Id": "Power",
"@odata.id": "/redfish/v1/Chassis/2/Power",
"@odata.etag": "\"e6e56474dde0e18185c641e587ca1790\"",
"Name": "Power",
"Description": "Power Consumption and Power Limiting"
}
提供反馈