Querying Peripheral Collection Information

Function

This interface is used to query peripheral collection information.

Syntax

Operation type: GET

URL: https://device_ip/redfish/v1/Systems/ExtendedDevices

Request header:

X-Auth-Token: auth_value

Request message body: None

Usage Guidelines

None

Example

Request:

GET https://10.10.10.10/redfish/v1/Systems/ExtendedDevices

Request header:

X-Auth-Token: auth_value

Request message body: None

Response:

{
    "@odata.context": "/redfish/v1/$metadata#EdgeSystem/ExtendedDevice/$entity",
    "@odata.id": "/redfish/v1/Systems/ExtendedDevices",
    "@odata.type": "MindXEdgeExtendedDevice.v1_0_0.MindXEdgeExtendedDevice",
    "Name": "ExtendedDevice Collection",
    "Members@odata.count": 3,
    "Members": [{
        "@odata.id": "/redfish/v1/System/ExtendedDevices/eth0"
        },
        {
        "@odata.id": "/redfish/v1/System/ExtendedDevices/eth1"
        },
        {
        "@odata.id": "/redfish/v1/System/ExtendedDevices/disk0"
    }]
}

Response code: 200

Output Description

Table 1 Operation output description

Field

Type

Description

@odata.context

Character string

OData description of a peripheral resource model.

@odata.id

Character string

Path to access 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.

@odata.id

Character string

Path to access a single peripheral resource node.