GET – Retimer properties
Use the GET method to retrieve Retimer properties for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Chassis/Retimer_{CFF|Riser}{N}
Request body
None
Response body
Field | Type | Description | |||
---|---|---|---|---|---|
Description | String | This resource is used to represent a retimer riser for a Redfish implementation. | |||
Id | String | “Retimer_{CFF|Riser}_{N}” | |||
Links | Object | Expanded | |||
ComputerSystems | Array | Items: A reference link to an element of computer systems. | |||
ComputerSystems[0] | Link | The value of this property is a URI reference to a resource of the computer system. | |||
ManagedBy | Array | Items: A reference link to the managers responsible for managing this chassis | |||
ManagedBy[0] | Link | The value of this property is a URI reference to a resource of manager. | |||
ChassisType | String | “Card” | |||
Manufacturer | String | The manufacturer of this chassis | |||
Model | String | null | |||
Name | String | “Retimer {CFF|Riser}{N}” | |||
PartNumber | String | The part number of the chassis. | |||
SerialNumber | String | The serial number of the chassis. | |||
Status | Object | Expanded | |||
Health | String | “OK” | |||
State | String | “Enabled” |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"@odata.context": "/redfish/v1/$metadata#Chassis.Chassis",
"@odata.type": "#Chassis.v1_19_0.Chassis",
"@odata.id": "/redfish/v1/Chassis/Retimer_Riser_1",
"@odata.etag": "\"3cc36feb4fb72426d10\"",
"Status": {
"Health": "OK",
"State": "Enabled"
},
"Manufacturer": "Lenovo",
"Links": {
"ComputerSystems": [
{
"@odata.id": "/redfish/v1/Systems/1"
}
],
"ManagedBy": [
{
"@odata.id": "/redfish/v1/Managers/1"
}
]
},
"PartNumber": "",
"SerialNumber": "",
"Name": "Retimer Riser 1",
"Id": "Retimer_Riser_1",
"Description": "This resource is used to represent a retimer riser for a Redfish implementation.",
"ChassisType": "Card"
}
Give documentation feedback