HewlettPackard / python-ilorest-library

Python library for interacting with devices which support a Redfish Service
Apache License 2.0
189 stars 92 forks source link

update_ilo_firmware.py #87

Closed Shirish-Jadhav closed 4 years ago

Shirish-Jadhav commented 4 years ago

TPM flag is only considered (True or False) when updating the Firmware via OEM url and not the default simple update url which is default redfish standard.

redfish standard Url : redfish/v1/UpdateService/Actions/UpdateService.SimpleUpdate/

###############below is the data when TPM_FLAG = True##############

Found resource directory at /redfish/v1/resourcedirectory

[ { "MessageArgs": [ "UpdateService.SimpleUpdate", "TPMOverrideFlag" ], "MessageId": "Base.1.4.ActionParameterUnknown" } ]

#########below is the data when TPM_FLAG = False#####################

Found resource directory at /redfish/v1/resourcedirectory

Success!

[ { "MessageId": "Base.1.4.Success" } ]