blob: 4408a3be012b896d909d2d8be4c5d9b6731377c0 [file] [log] [blame]
Serge Bazanski8d7843c2018-10-04 10:37:36 +01001syntax = "proto3";
2
3message Config {
4 repeated Switch switch = 1;
5};
6
7message Switch {
8 string name = 1;
9
10 enum Connector {
11 CONNECTOR_INVALID = 0;
12 CONNECTOR_M6220 = 1;
13 CONNECTOR_ARISTA = 2;
14 };
15 Connector connector = 2;
16 string address = 3;
17 repeated SwitchPort managed_port = 4;
18};
19
20message SwitchPort {
21 string name = 1;
22};