From 0160d1e4ea35d33fd81721d9cf99fba2a1802351 Mon Sep 17 00:00:00 2001 From: Sandy Li Date: Mon, 9 Dec 2024 21:26:58 -0500 Subject: [PATCH] Add OEM field to Port --- redfish/port.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/redfish/port.go b/redfish/port.go index e3a05eb1..e91fb18a 100644 --- a/redfish/port.go +++ b/redfish/port.go @@ -780,6 +780,10 @@ type Port struct { // rawData holds the original serialized JSON so we can compare updates. rawData []byte + + // Oem shall contain the OEM extensions. All values for properties that this object contains shall conform to the + // Redfish Specification-described requirements. + OEM json.RawMessage `json:"Oem"` } // UnmarshalJSON unmarshals a Port object from the raw JSON.