| #ifndef THIRD_PARTY_GBMCWEB_DEVPATH_PLUGIN_REDFISH_TO_UHM_MAPPING_VALUE_H_ |
| #define THIRD_PARTY_GBMCWEB_DEVPATH_PLUGIN_REDFISH_TO_UHM_MAPPING_VALUE_H_ |
| |
| #include "redfish_to_uhm_mapping.pb.h" |
| |
| namespace devpath_plugin { |
| |
| // Struct containing the mapped UHM component key and its Redfish exposure |
| // config. This is separated in another file as other dependencies will use this |
| // and I don't want to include any trie internals. |
| struct RedfishToUhmMappingValue { |
| UhmMonitoredComponentKey uhm_monitored_component_key; |
| RedfishExposeConfig redfish_expose_config; |
| }; |
| |
| } // namespace devpath_plugin |
| |
| #endif // THIRD_PARTY_GBMCWEB_DEVPATH_PLUGIN_REDFISH_TO_UHM_MAPPING_VALUE_H_ |