Skip to main content

GET – GPU properties

Use the GET method to retrieve properties of GPU resource for Redfish service.

Request URL

GET https://<BMC_IPADDR>/redfish/v1/Systems/1/Processors/GPU{1-N}

Request body

None

Response body

FieldTypeDescription

Description

String

This resource is used to represent a processor for a Redfish implementation.

Id

String

GPU{N}, N is the index of this processor, starting from 1.

Manufacturer

String

The processor manufacturer.

Name

String

"GPU {N}", N is the index number starting from 1.

SerialNumber

String

Serial number of this processor.

PartNumber

String

Part number of this processor.

FirmwareVersion

String

The firmware version of this GPU.

ProcessorId

Object

Expanded

 

VendorId

String

The Vendor Identification for this processor.

ProcessorType

String

“GPU”

Links

Object

Expand

 

Chassis

Link

/redfish/v1/Chassis/1/

 

PCIeDevice

Link

Link to this GPU PCIeDevice

 

PCIeFunctions

Link

Link to this GPU PCIeFunction

Status code

HTTP Status CodeError Message ID
500InternalError

Example

The following example JSON response is returned:

{
"Oem": {
},
"FirmwareVersion": "5.0.0.0",
"ProcessorId": {
"VendorId": "0x8086"
},
"Links": {
"PCIeFunctions": [],
"Chassis": {
"@odata.id": "/redfish/v1/Chassis/1"
},
"PCIeFunctions@odata.count": 0,
"PCIeDevice": {
"@odata.id": "/redfish/v1/Chassis/1/PCIeDevices/slot_3"
}
},
"Description": "This resource is used to represent a processor for a Redfish implementation.",
"@odata.id": "/redfish/v1/Systems/1/Processors/GPU1",
"Id": "GPU1",
"Name": "GPU 1",
"@odata.type": "#Processor.v1_14_0.Processor",
"Manufacturer": "Intel Corporation",
"@odata.context": "/redfish/v1/$metadata#Processor.Processor",
"ProcessorType": "GPU",
"@odata.etag": "\"550cc3d4d20a27ea8a9\"",
"SerialNumber": "WTPV22000136",
"PartNumber": "M85068-502"
}