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 +}