Querying Peripheral Collection Information
Function
This interface is used to query peripheral collection information.
Syntax
Operation type: GET
URL: https://device_ip/redfish/v1/EdgeSystem/ExtendedDevices
Request header:
X-Auth-Token: auth_value
Request message body: None
Parameters
Parameter |
Description |
Value |
---|---|---|
device_ip |
IP address for logging in to a device. |
An IPv4 or IPv6 address. |
auth_value |
Authentication parameter contained in the request. |
You can obtain the value from the session created by using /redfish/v1/SessionService/Sessions. |
Usage Guidelines
None
Example
Example request:
GET https://10.10.10.10/redfish/v1/EdgeSystem/ExtendedDevices
Request header:
X-Auth-Token: 6599174c38c36838737d9749179e1ee1
Request message body: None
Response example:
{
"@odata.context": "/redfish/v1/$metadata#EdgeSystem/Members/NetworkAdapters/$entity",
"@odata.id": "/redfish/v1/EdgeSystem/NetworkAdapters",
"@odata.type": "#NetworkAdapterCollection. NetworkAdapterCollection",
"Name": "Network Adapter Collection",
"Members@odata.count": 3,
"Members": [
{
"@odata.id": "/redfish/v1/EdgeSystem/NetworkAdapters/1",
},
{
"@odata.id": "/redfish/v1/EdgeSystem/NetworkAdapters/2",
},
{
"@odata.id": "/redfish/v1/EdgeSystem/NetworkAdapters/3",
}
]
}
Response code: 200
Output Description
Attribute |
Type |
Description |
---|---|---|
@odata.context |
Character string |
OData description of a peripheral resource model. |
@odata.id |
Character string |
Access path of a peripheral resource. |
@odata.type |
Character string |
Resource type of a peripheral. |
Name |
Character string |
Name of a peripheral. |
Members@odata.count |
Number |
Number of peripherals. |
Members[] |
Array |
List of peripheral resources. |
Members[].@odata.id |
Character string |
Access path of a single peripheral resource node. |