X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=entities%2Fgnb.proto;h=a05dd657a1ffc082169cca969caddc5106e16249;hb=refs%2Ftags%2Fentities%2Fv1.2.9;hp=cdfaac16d501c33320687107e8b3b8a806be3560;hpb=286ce41c7d5049e688a40f68e4c6681a645add3d;p=ric-plt%2Fnodeb-rnib.git diff --git a/entities/gnb.proto b/entities/gnb.proto index cdfaac1..a05dd65 100644 --- a/entities/gnb.proto +++ b/entities/gnb.proto @@ -1,8 +1,39 @@ +/* + * Copyright 2019 AT&T Intellectual Property + * Copyright 2019 Nokia + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). + */ + + 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; + GnbType gnb_type = 3; + repeated E2nodeComponentConfig node_configs = 4; } message ServedNRCell{ @@ -32,6 +63,7 @@ message ServedNRCellInformation{ TddInfo tdd = 2; } ChoiceNRMode choice_nr_mode = 7; + AdditionalCellInformation additional_cell_information = 8; } message Nr{ @@ -121,4 +153,4 @@ message NrNeighbourInformation{ ChoiceNRMode choice_nr_mode = 4; string stac5g = 5; string configured_stac = 6; -} \ No newline at end of file +}