go.ligato.io/vpp-agent/v3@v3.5.0/examples/kvscheduler/mock_plugins/l2plugin/model/bridge-domain.proto (about) 1 syntax = "proto3"; 2 3 package mock.l2; 4 5 option go_package = "go.ligato.io/vpp-agent/v3/examples/kvscheduler/mock_plugins/l2plugin/model;mock_l2"; 6 7 message BridgeDomain { 8 string name = 1; /* bridge domain name */ 9 10 message Interface { 11 string name = 1; /* interface name belonging to this bridge domain */ 12 bool bridged_virtual_interface = 2; /* true if this is a BVI interface */ 13 } 14 repeated Interface interfaces = 10; /* list of interfaces */ 15 }