blob: c1d6e227a0a2950f6418197cc9592f858a15c132 [file] [log] [blame]
Jian Lic9b4bf12017-06-26 23:50:32 +09001syntax = "proto3";
2option java_package = "org.onosproject.grpc.net.device.models";
3
4package net.device;
5
6import "net/device/DeviceEnumsProto.proto";
7
8message DeviceDescriptionProto {
9 string device_uri = 1;
10 net.device.DeviceTypeProto 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}