From 5ca2670d6454a680f1448b6bac4f421efb978128 Mon Sep 17 00:00:00 2001 From: Brian Brown Date: Wed, 18 Jun 2025 18:25:50 -0400 Subject: [PATCH] Update powersupplyunit.go --- redfish/powersupplyunit.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/redfish/powersupplyunit.go b/redfish/powersupplyunit.go index cd8c6343..34935289 100644 --- a/redfish/powersupplyunit.go +++ b/redfish/powersupplyunit.go @@ -288,3 +288,7 @@ func (powerSupplyUnit *PowerSupplyUnit) PowerOutlets() ([]*Outlet, error) { func (powerSupplyUnit *PowerSupplyUnit) PoweringChassis() ([]*Chassis, error) { return common.GetObjects[Chassis](powerSupplyUnit.GetClient(), powerSupplyUnit.poweringChassis) } + +func (powerSupplyUnit *PowerSupplyUnit) RawData() []byte { + return powerSupplyUnit.rawData +}