Return the Redfish system class for the given vendor. Falls back to generic.
(vendor: str)
| 35 | |
| 36 | |
| 37 | def get_system_class(vendor: str) -> Type[BaseRedfishSystem]: |
| 38 | """Return the Redfish system class for the given vendor. |
| 39 | Falls back to generic.""" |
| 40 | return REDFISH_SYSTEM_CLASSES.get(vendor, BaseRedfishSystem) |
| 41 | |
| 42 | |
| 43 | _load_entry_point_systems() |