blob: fe0b9e279665a9711e180914398b9046505bbf3d [file] [log] [blame]
Nikolay Titov3b31db92017-08-02 18:11:33 -04001syntax = "proto3";
Stephane Barbarie35595062018-02-08 08:34:39 -05002
3option go_package = "github.com/opencord/voltha/protos/go/bbf_fiber";
4
Nikolay Titov3b31db92017-08-02 18:11:33 -04005package bbf_fiber;
6import "meta.proto";
7import "bbf_fiber_tcont_body.proto";
8
9message GemportsConfigData {
10 string id = 1 [(voltha.access) = READ_ONLY];
11 string name = 2;
12 string itf_ref = 3;
13 uint32 traffic_class = 4;
14 bool aes_indicator = 5;
15 string tcont_ref = 6;
Chip Boling97bef1e2017-08-29 11:44:28 -050016 uint32 gemport_id = 7;
Nikolay Titov3b31db92017-08-02 18:11:33 -040017}
18message GemportsOperData {
19 string id = 1 [(voltha.access) = READ_ONLY];
20 string name = 2;
21 uint32 gemport_id = 3;
22}