CircuitCollection
更新时间: 2025/05/25
在Gitcode上查看源码ResourceDefinition
uris
/redfish/v1/PowerEquipment/PowerShelves/power_distribution_id/Mains/redfish/v1/PowerEquipment/PowerShelves/power_distribution_id/Branches
properties
| 名称 | 类型 | 是否只读 | 取值范围/枚举值 | 说明 |
|---|---|---|---|---|
| @odata.context | string | true | 电路集合资源的OData描述信息 | |
| @odata.id | string | true | 电路集合资源的访问路径 | |
| @odata.type | string | true | 电路集合资源的类型 | |
| Name | string | true | 电路集合资源的名称 | |
| Members@odata.count | number | true | 电路数量 | |
| Members | array | true | 电路列表 | |
| Members[].@odata.id | string | true | 单个电路资源节点的访问路径 |
supported_methods
- GET
HTTP methods
GET
命令功能
查询电路集合资源信息
说明
- 上述URI
/Mains用于查询主电路集合资源信息 - 上述URI
/Branches用于查询分支电路集合资源信息
命令格式
URL: https://device_ip/redfish/v1/PowerEquipment/PowerShelves/power_distribution_id/Mains
URL: https://device_ip/redfish/v1/PowerEquipment/PowerShelves/power_distribution_id/Branches
请求头:
X-Auth-Token: 123456789***********************请求消息体: 无
参数说明
| 参数 | 参数说明 | 取值 |
|---|---|---|
| device_ip | 登录设备的IP地址 | IPv4或IPv6地址 |
| power_distribution_id | 配电单元Id | 在查询配电单元列表的返回信息中包含各配电单元Id |
| auth_value | 执行该请求时,必须在"Headers"中携带"X-Auth-Token"值用于鉴权 | 可通过/redfish/v1/SessionService/Sessions创建会话时获得 |
使用指南
BMC300 5.12.0.1及以上版本支持(仅RM310支持)
使用实例
请求样例:
http
GET https://device_ip/redfish/v1/PowerEquipment/PowerShelves/1/Mains请求头:
X-Auth-Token: ******请求消息体:无
响应样例:
json
{
"@odata.context": "/redfish/v1/$metadata#CircuitCollection. CircuitCollection",
"@odata.id": "/redfish/v1/PowerEquipment/PowerShelves/1/Mains",
"@odata.type": "# CircuitCollection.CircuitCollection",
"Name": "Mains Circuit Collection",
"Members@odata.count": 1,
"Members": [
{
"@odata.id": "/redfish/v1/PowerEquipment/PowerShelves/1/Mains /1"
}
]
}响应码:200