GET – Collection of Processors
Use the GET method to retrieve properties in Processor collection for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/Processors
Request body
None
Response body
Field | Type | Description | |||
---|---|---|---|---|---|
Name | String | ProcessorCollection | |||
Members | Array | Items: A reference link to an element of processor resource. | |||
Description | String | A Collection of Processor resource instances. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"@odata.context": "/redfish/v1/$metadata#ProcessorCollection.ProcessorCollection",
"@odata.etag": "\"F87A795D\"",
"@odata.id": "/redfish/v1/Systems/system/Processors",
"@odata.type": "#ProcessorCollection.ProcessorCollection",
"Description": "A collection of Processor resource instances.",
"Members": [
{
"@odata.id": "/redfish/v1/Systems/1/Processors/2"
},
{
"@odata.id": "/redfish/v1/Systems/1/Processors/1"
}
],
"Members@odata.count": 2,
"Name": "Processor Collection"
}
Give documentation feedback