Lines Matching full:bios
27 * BiosService class supports handle get method for bios.
52 "/redfish/v1/Systems/{}/Bios", BMCWEB_REDFISH_SYSTEM_URI_NAME); in handleBiosServiceGet()
53 asyncResp->res.jsonValue["@odata.type"] = "#Bios.v1_1_0.Bios"; in handleBiosServiceGet()
54 asyncResp->res.jsonValue["Name"] = "BIOS Configuration"; in handleBiosServiceGet()
55 asyncResp->res.jsonValue["Description"] = "BIOS Configuration Service"; in handleBiosServiceGet()
56 asyncResp->res.jsonValue["Id"] = "BIOS"; in handleBiosServiceGet()
57 asyncResp->res.jsonValue["Actions"]["#Bios.ResetBios"]["target"] = in handleBiosServiceGet()
58 std::format("/redfish/v1/Systems/{}/Bios/Actions/Bios.ResetBios", in handleBiosServiceGet()
68 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Bios/") in requestRoutesBiosService()
75 * BiosReset class supports handle POST method for Reset bios.
111 BMCWEB_LOG_ERROR("Failed to reset bios: {}", ec); in handleBiosResetPost()
122 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Bios/Actions/Bios.ResetBios/") in requestRoutesBiosReset()