blob: 1a0470803fdbd8f84ca19a58f5aaee0390420391 [file] [log] [blame]
edition = "2023";
package milotic_tlbmc;
// Stable Id to be populated into Redfish Location object.
// Example:
// "@odata.id": "/redfish/v1/Chassis/ParentChassis/SomeResource/TestResource",
// "Id": "TestResource",
// "Location": {
// "PartLocationContext: "PE0/IO0",
// "PartLocation": {
// "LocationType": "Slot",
// "ServiceLabel": "Foo"
// },
// "Oem": {
// "Google": {
// "EmbeddedLocationContext: "SomeResource/TestResource"
// }
// }
// }
message StableId {
string service_label = 1;
string part_location_context = 2;
string embedded_location_context = 3;
string location_type = 4;
}