blob: b620bfaec8d431e7b248ee4094ba999810e2790e [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
8message DeviceDescription {
9 string device_Uri = 1;
10 Device.DeviceType type = 2;
11 string manufacturer = 3;
12 string hw_version = 4;
13 string sw_version = 5;
14 string serial_number = 6;
15 string chassis_id = 7;
16 map<string, string> annotations = 8;
17 bool is_default_available = 9;
18}