blob: 3214f659be62d25a439b236bd88c27b59ab6659f [file]
edition = "2023";
package milotic_hft;
import "edge_filtering.proto";
import "fru_identifier.proto";
import "sensor_identifier.proto";
message Identifier {
oneof identifier {
SensorIdentifier sensor_identifier = 1;
FruIdentifier fru_identifier = 2;
// Add more identifier types here.
}
// Optional edge filter for this identifier's sample stream.
// Currently only applied to SensorIdentifier streams;
// ignored for FruIdentifier.
EdgeFilter edge_filter = 3;
}