blob: f4a81d19dcd0a75df8fceec82d625a2c6d6e475c [file] [log] [blame]
syntax = "proto3";
option java_package = "org.onosproject.grpc.net.models";
package Device;
import "DeviceEnums.proto";
// Corresponds to org.onosproject.net.Device.
message DeviceProto {
string deviceId = 1;
Device.DeviceType type = 2;
string manufacturer = 3;
string hw_version = 4;
string sw_version = 5;
string serial_number = 6;
string chassis_id = 7;
map<string, string> annotations = 8;
}