PCIeSlots
更新时间: 2026/06/26
在Gitcode上查看源码ResourceDefinition
uris
/redfish/v1/Chassis/chassis_id/PCIeSlots
properties
| 名称 | 类型 | 是否只读 | 取值范围/枚举值 | 说明 |
|---|---|---|---|---|
| @odata.context | string | true | - | PCIe插槽资源模型的OData描述信息 |
| @odata.id | string | true | - | PCIe插槽资源的访问路径 |
| @odata.type | string | true | - | PCIe插槽资源的类型 |
| Name | string | true | - | PCIe插槽资源的名称 |
| Id | string | true | - | PCIe插槽的资源ID |
| PCIeType | string | true | - | PCIe插槽支持的最高PCIe规范版本 |
| Lanes | number | true | - | PCIe插槽支持的最大PCIe通道数 |
| SlotType | string | true | - | PCIe插槽类型 |
| LocationType | string | true | - | 部件位置的类型,目前只支持Slot |
| LocationOrdinalValue | number | true | - | 部件位置的数字 |
| ServiceLabel | string | true | - | 部件位置的标签 |
| PCIeDevice | object | true | - | PCIe插槽关联的PCIe卡资源 |
| @odata.id | string | true | - | PCIe插槽关联的PCIe卡资源访问路径 |
supported_methods
- GET
HTTP methods
GET
命令功能
查询 PCIe 插槽资源信息
命令格式
URL: https://device_ip/redfish/v1/Chassis/chassis_id/PCIeSlots
请求头:
X-Auth-Token: 123456789***********************请求消息体: 无
参数说明
| 参数 | 参数说明 | 取值 |
|---|---|---|
| device_ip | 登录设备的IP地址 | IPv4或IPv6地址 |
| auth_value | 执行该GET请求时,必须 在“Headers”中携带 “X-Auth-Token”值用于 鉴权 | 可通过/redfish/v1/ SessionService/Sessions 创建会话时获得 |
| chassis_id | 机箱资源的ID | ● 针对机架服务器,取值 为1 ● 针对高密服务器,取值 为BladeN(N表示节点 槽位号),例如 “Blade1” ● 针对刀片服务器,取值 可以为BladeN(N表示 计算节点槽位号) ● 针对X6800 V5,X6000 V5,G5500,XA320 V2服务器,取值还可以 为Enc,表示计算节点 所在的机框资源 ● 针对设备U位信息,取 值可以为UN(N表示设 备U位号),例如"U1" ● 针对机柜资源,取值为 Rack |
使用指南
无
使用实例
请求样例:
http
GET https://device_ip/redfish/v1/Chassis/1/PCIeSlots请求头:
X-Auth-Token: 123456789***********************请求消息体:无
响应样例:
json
{
"@odata.context": "/redfish/v1/$metadata#PCIeSlots.PCIeSlots",
"@odata.id": "/redfish/v1/Chassis/1/PCIeSlots",
"@odata.type": "# PCIeSlots.v1_5_1.PCIeSlots",
"Name": "PCIe Slot Information",
"Id": “1”,
"Slots": [
{
"PCIeType": "Gen3",
"Lanes": 16,
"SlotType": "FullLength",
"Location": {
"PartLocation": {
"ServiceLabel": "Slot 1",
"LocationOrdinalValue": 1,
"LocationType": "Slot"
}
},
"Links": {
"PCIeDevice": [
{
"@odata.id": "/redfish/v1/Systems/1/PCIeDevices/PCIeCard1"
}
]
}
},
{
"PCIeType": "Gen3",
"Lanes": 1,
"SlotType": "HalfLength",
"Location": {
"PartLocation": {
"ServiceLabel": "Slot 3",
"LocationOrdinalValue": 3,
"LocationType": "Slot"
}
}
}
]
}响应码:200