blob: 922fc34908009a20f418306f1d0196cba442306d [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_traffic_descriptor_profile_body.proto";
8
9message TcontsConfigData {
10 string id = 1 [(voltha.access) = READ_ONLY];
11 string name = 2;
12 string interface_reference = 3;
13 string traffic_descriptor_profile_ref = 4;
Chip Boling97bef1e2017-08-29 11:44:28 -050014 uint32 alloc_id = 5;
Nikolay Titov3b31db92017-08-02 18:11:33 -040015}
16message TcontsOperData {
17 string id = 1 [(voltha.access) = READ_ONLY];
18 string name = 2;
19 uint32 alloc_id = 3;
20}