@@ -65,7 +65,7 @@ async def cpu_archetype_config(
6565
6666
6767@component_router .post ("/cpu" , description = cpu_description )
68- async def cpu_impact_bottom_up (
68+ async def cpu_impact_bottom_up_from_configuration (
6969 cpu : CPU = Body (None , openapi_examples = components_examples_openapi ["cpu" ]),
7070 verbose : bool = True ,
7171 duration : Optional [float ] = config .default_duration ,
@@ -85,7 +85,7 @@ async def cpu_impact_bottom_up(
8585
8686
8787@component_router .get ("/cpu" , description = cpu_description )
88- async def cpu_impact_bottom_up (
88+ async def cpu_impact_bottom_up_from_model (
8989 verbose : bool = True ,
9090 duration : Optional [float ] = config .default_duration ,
9191 archetype : str = config .default_cpu ,
@@ -116,7 +116,7 @@ async def gpu_archetype_config(
116116
117117
118118@component_router .post ("/gpu" , description = gpu_description )
119- async def gpu_impact_bottom_up (
119+ async def gpu_impact_bottom_up_from_configuration (
120120 gpu : GPU = Body (None , openapi_examples = components_examples_openapi ["gpu" ]),
121121 verbose : bool = True ,
122122 duration : Optional [float ] = config .default_duration ,
@@ -136,7 +136,7 @@ async def gpu_impact_bottom_up(
136136
137137
138138@component_router .get ("/gpu" , description = gpu_description )
139- async def gpu_impact_bottom_up (
139+ async def gpu_impact_bottom_up_from_model (
140140 verbose : bool = True ,
141141 duration : Optional [float ] = config .default_duration ,
142142 archetype : str = config .default_gpu ,
@@ -169,7 +169,7 @@ async def ram_archetype_config(
169169
170170
171171@component_router .post ("/ram" , description = ram_description )
172- async def ram_impact_bottom_up (
172+ async def ram_impact_bottom_up_from_configuration (
173173 ram : RAM = Body (None , openapi_examples = components_examples_openapi ["ram" ]),
174174 verbose : bool = True ,
175175 duration : Optional [float ] = config .default_duration ,
@@ -189,7 +189,7 @@ async def ram_impact_bottom_up(
189189
190190
191191@component_router .get ("/ram" , description = ram_description )
192- async def ram_impact_bottom_up (
192+ async def ram_impact_bottom_up_from_model (
193193 verbose : bool = True ,
194194 duration : Optional [float ] = config .default_duration ,
195195 archetype : str = config .default_ram ,
@@ -222,7 +222,7 @@ async def ssd_archetype_config(
222222
223223
224224@component_router .post ("/ssd" , description = ssd_description )
225- async def disk_impact_bottom_up (
225+ async def ssd_disk_impact_bottom_up_from_configuration (
226226 disk : Disk = Body (None , openapi_examples = components_examples_openapi ["ssd" ]),
227227 verbose : bool = True ,
228228 duration : Optional [float ] = config .default_duration ,
@@ -243,7 +243,7 @@ async def disk_impact_bottom_up(
243243
244244
245245@component_router .get ("/ssd" , description = ssd_description )
246- async def disk_impact_bottom_up (
246+ async def ssd_disk_impact_bottom_up_from_model (
247247 verbose : bool = True ,
248248 duration : Optional [float ] = config .default_duration ,
249249 archetype : str = config .default_ssd ,
@@ -278,7 +278,7 @@ async def hdd_archetype_config(
278278
279279
280280@component_router .post ("/hdd" , description = hdd_description )
281- async def disk_impact_bottom_up (
281+ async def hdd_disk_impact_bottom_up_from_configuration (
282282 disk : Disk = Body (None , openapi_examples = components_examples_openapi ["hdd" ]),
283283 verbose : bool = True ,
284284 duration : Optional [float ] = config .default_duration ,
@@ -299,7 +299,7 @@ async def disk_impact_bottom_up(
299299
300300
301301@component_router .get ("/hdd" , description = hdd_description )
302- async def disk_impact_bottom_up (
302+ async def hdd_disk_impact_bottom_up_from_model (
303303 verbose : bool = True ,
304304 duration : Optional [float ] = config .default_duration ,
305305 archetype : str = config .default_hdd ,
@@ -336,7 +336,7 @@ async def motherboard_archetype_config(
336336
337337
338338@component_router .post ("/motherboard" , description = motherboard_description )
339- async def motherboard_impact_bottom_up (
339+ async def motherboard_impact_bottom_up_from_configuration (
340340 motherboard : Motherboard = Body (
341341 None , openapi_examples = components_examples_openapi ["motherboard" ]
342342 ),
@@ -355,7 +355,7 @@ async def motherboard_impact_bottom_up(
355355
356356
357357@component_router .get ("/motherboard" , description = motherboard_description )
358- async def motherboard_impact_bottom_up (
358+ async def motherboard_impact_bottom_up_from_model (
359359 verbose : bool = True ,
360360 duration : Optional [float ] = config .default_duration ,
361361 criteria : List [str ] = Query (config .default_criteria ),
@@ -387,7 +387,7 @@ async def power_supply_archetype_config(
387387
388388
389389@component_router .post ("/power_supply" , description = power_supply_description )
390- async def power_supply_impact_bottom_up (
390+ async def power_supply_impact_bottom_up_from_configuration (
391391 power_supply : PowerSupply = Body (
392392 None , openapi_examples = components_examples_openapi ["power_supply" ]
393393 ),
@@ -412,7 +412,7 @@ async def power_supply_impact_bottom_up(
412412
413413
414414@component_router .get ("/power_supply" , description = power_supply_description )
415- async def power_supply_impact_bottom_up (
415+ async def power_supply_impact_bottom_up_from_model (
416416 verbose : bool = True ,
417417 duration : Optional [float ] = config .default_duration ,
418418 archetype : str = config .default_power_supply ,
@@ -448,7 +448,7 @@ async def case_archetype_config(
448448
449449
450450@component_router .post ("/case" , description = case_description )
451- async def case_impact_bottom_up (
451+ async def case_impact_bottom_up_from_configuration (
452452 case : Case = Body (None , openapi_examples = components_examples_openapi ["case" ]),
453453 verbose : bool = True ,
454454 duration : Optional [float ] = config .default_duration ,
@@ -468,7 +468,7 @@ async def case_impact_bottom_up(
468468
469469
470470@component_router .get ("/case" , description = case_description )
471- async def case_impact_bottom_up (
471+ async def case_impact_bottom_up_from_model (
472472 verbose : bool = True ,
473473 duration : Optional [float ] = config .default_duration ,
474474 archetype : str = config .default_case ,
0 commit comments