X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=inline;f=entities%2Fgnb.proto;h=a05dd657a1ffc082169cca969caddc5106e16249;hb=refs%2Ftags%2Fentities%2Fv1.2.9;hp=ee45be476fcc67a4b127da4d263a40146da180c3;hpb=47eda19224e12819a4dd160e1467431110fdd8b4;p=ric-plt%2Fnodeb-rnib.git diff --git a/entities/gnb.proto b/entities/gnb.proto index ee45be4..a05dd65 100644 --- a/entities/gnb.proto +++ b/entities/gnb.proto @@ -23,16 +23,17 @@ syntax = "proto3"; package entities; +import "ran_function.proto"; +import "e2node_component_config.proto"; +import "additional_cell_information.proto"; +import "nb_types.proto"; +option go_package = "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib/entities"; message Gnb{ repeated ServedNRCell served_nr_cells = 1; repeated RanFunction ran_functions = 2; -} - -message RanFunction{ - uint32 ran_function_id = 1; - string ran_function_definition = 2; - uint32 ran_function_revision = 3; + GnbType gnb_type = 3; + repeated E2nodeComponentConfig node_configs = 4; } message ServedNRCell{ @@ -62,6 +63,7 @@ message ServedNRCellInformation{ TddInfo tdd = 2; } ChoiceNRMode choice_nr_mode = 7; + AdditionalCellInformation additional_cell_information = 8; } message Nr{ @@ -151,4 +153,4 @@ message NrNeighbourInformation{ ChoiceNRMode choice_nr_mode = 4; string stac5g = 5; string configured_stac = 6; -} \ No newline at end of file +}