Adjust parameter name of FirmwareInventoryId
redfish URL "/redfish/v1/UpdateService/FirmwareInventory/
{SoftwareInventoryId}" had parameter called "Members@odata.count".
This parameter name is not appropriate because it retrieves data, count
of Related Item, from "RelatedItem" parameter, so its name has to be
"RelatedItem@odata.count".
Implement:
Updated name of JSON parameter, also updated code variable name.
Tested: Validator passes
- Keep primary data and other parameter deleted from JSON data
Old JSON data:
{
"@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/
{SoftwareInventoryId},
"@odata.type": "#SoftwareInventory.v1_1_0.SoftwareInventory",
"Description": "BMC image",
"Members@odata.count": 1,
"Name": "Software Inventory",
"RelatedItem": [{
"@odata.id": "/redfish/v1/Managers/bmc"
}],
}
new JSON data:
{
"@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/
{SoftwareInventoryId},
"@odata.type": "#SoftwareInventory.v1_1_0.SoftwareInventory",
"Description": "BMC image",
"RelatedItem@odata.count": 1,
"Name": "Software Inventory",
"RelatedItem": [{
"@odata.id": "/redfish/v1/Managers/bmc"
}],
}
Signed-off-by: Abhishek Patel <Abhishek.Patel@ibm.com>
Change-Id: I12c123fc78872890efe2949d2a3a55f882cdd09b
diff --git a/redfish-core/lib/update_service.hpp b/redfish-core/lib/update_service.hpp
index ca1234f..9f6c6f9 100644
--- a/redfish-core/lib/update_service.hpp
+++ b/redfish-core/lib/update_service.hpp
@@ -786,16 +786,18 @@
{
if (purpose == fw_util::bmcPurpose)
{
- nlohmann::json& members = aResp->res.jsonValue["RelatedItem"];
- members.push_back({{"@odata.id", "/redfish/v1/Managers/bmc"}});
- aResp->res.jsonValue["Members@odata.count"] = members.size();
+ nlohmann::json& relatedItem = aResp->res.jsonValue["RelatedItem"];
+ relatedItem.push_back({{"@odata.id", "/redfish/v1/Managers/bmc"}});
+ aResp->res.jsonValue["RelatedItem@odata.count"] =
+ relatedItem.size();
}
else if (purpose == fw_util::biosPurpose)
{
- nlohmann::json& members = aResp->res.jsonValue["RelatedItem"];
- members.push_back(
+ nlohmann::json& relatedItem = aResp->res.jsonValue["RelatedItem"];
+ relatedItem.push_back(
{{"@odata.id", "/redfish/v1/Systems/system/Bios"}});
- aResp->res.jsonValue["Members@odata.count"] = members.size();
+ aResp->res.jsonValue["RelatedItem@odata.count"] =
+ relatedItem.size();
}
else
{