Querying Processor Resource Collection Information

Function

This interface is used to query information about the current processor resource collection.

Syntax

Operation type: GET

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

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/Processors

Request header:

X-Auth-Token: auth_value

Request message body: None

Response:
{
    "@odata.context": "/redfish/v1/$metadata#Systems/Processors/#entity",
    "@odata.id": "/redfish/v1/Systems/Processors",
    "@odata.type": "#ProcessorCollection.ProcessorCollection",
    "Name": "Processors Collection",
    "Members@odata.count": 2,
    "Members": [{
        "@odata.id": "/redfish/v1/Systems/Processors/CPU"
        },
        {
         "@odata.id": "/redfish/v1/Systems/Processors/AiProcessor"
        }
    ]
}

Response code: 200

Output Description

Table 1 Operation output description

Field

Type

Description

@odata.context

Character string

OData description of the processor resource collection model.

@odata.id

Character string

Path to access the processor resource collection.

@odata.type

Character string

Type of the processor resource collection.

Name

Character string

Name of the processor resource collection.

Members@odata.count

Number

Number of current processor resources.

Members

List

List of processor resources.

@odata.id

Character string

Path to access the processor resource node.