blob: f4a81d19dcd0a75df8fceec82d625a2c6d6e475c [file] [log] [blame]
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09001syntax = "proto3";
2option java_package = "org.onosproject.grpc.net.models";
3
4package Device;
5
6import "DeviceEnums.proto";
7
8// Corresponds to org.onosproject.net.Device.
9message DeviceProto {
10 string deviceId = 1;
11 Device.DeviceType type = 2;
12 string manufacturer = 3;
13 string hw_version = 4;
14 string sw_version = 5;
15 string serial_number = 6;
16 string chassis_id = 7;
17 map<string, string> annotations = 8;
18}