blob: b620bfaec8d431e7b248ee4094ba999810e2790e [file] [log] [blame]
syntax = "proto3";
option java_package = "org.onosproject.grpc.net.models";
package Device;
import "DeviceEnums.proto";
message DeviceDescription {
string device_Uri = 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;
bool is_default_available = 9;
}