dell / iDRAC-Redfish-Scripting

Python and PowerShell scripting for Dell EMC PowerEdge iDRAC REST API with DMTF Redfish
GNU General Public License v2.0
603 stars 279 forks source link

Redfish Resource not found - Export Configuration #289

Closed Icqtoni closed 3 months ago

Icqtoni commented 6 months ago

Hello,

I get the error message shown in the picture below when exporting the configuration. The attribute 'Redfish.1.NumericDynamicSegmentsEnable' is set to enabled Does anyone have any idea what could be causing this?

many thanks in advance Icqtoni

URI: https://x.x.x.x/redfish/v1/Managers/iDRAC.Embedded.1/Actions/Oem/EID_674_Manager.ExportSystemConfiguration

JSON: {"ExportFormat":"XML","ShareParameters":{"Target":"iDrac"}}

Invoke-WebRequest: return $null

image

image

texroemer commented 6 months ago

Hi @Icqtoni

The main issues is resource URI is not found (unable to find URI "redfish/v1/Managers/iDRAC.Embedded.1/Actions/Oem/EID_674_Manager.ExportSystemConfiguration").

Can you run a GET on URI "redfish/v1/Managers/iDRAC.Embedded.1" and see this URI is reported.

Example:

image

Thanks Tex