blob: 4408a3be012b896d909d2d8be4c5d9b6731377c0 [file] [log] [blame]
syntax = "proto3";
message Config {
repeated Switch switch = 1;
};
message Switch {
string name = 1;
enum Connector {
CONNECTOR_INVALID = 0;
CONNECTOR_M6220 = 1;
CONNECTOR_ARISTA = 2;
};
Connector connector = 2;
string address = 3;
repeated SwitchPort managed_port = 4;
};
message SwitchPort {
string name = 1;
};