Fix SGNB CHANGE CONFIRM protobuf message
[ric-plt/streaming-protobufs.git] / sgnb_addition_request_acknowledge.proto
1 /*
2    Copyright (c) 2019 AT&T Intellectual Property.
3    Copyright (c) 2019 Nokia.
4
5    Licensed under the Creative Commons Attribution 4.0 International
6    Public License (the "License"); you may not use this file except
7    in compliance with the License. You may obtain a copy of the License at
8
9        https://creativecommons.org/licenses/by/4.0/
10
11    Unless required by applicable law or agreed to in writing, documentation
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16 */
17
18 syntax = "proto3";
19
20 package streaming_protobufs;
21
22 option go_package = "gerrit.o-ran-sc.org/r/ric-plt/streaming-protobufs";
23
24 import "google/protobuf/wrappers.proto";
25 import "x2ap_common_types.proto";
26 import "rrc_cg_config.proto";
27
28 /*
29    Protocol Buffer definition for SGNB ADDITION REQUEST ACKNOWLEDGE message.
30    (3GPP 36.423, ver 15.4.0)
31
32    Naming convention follows the ASN.1 field naming defined in chapter
33    '9.3 Message and Information Element Abstract Syntax (with ASN.1)' of below document:
34    http://www.3gpp.org/ftp//Specs/archive/36_series/36.423/36423-f40.zip
35
36    Dashes converted to underscores to make protobuf message syntax correct.
37 */
38
39 message SgNBAdditionRequestAcknowledge
40 {
41     uint32 id_MeNB_UE_X2AP_ID = 1;
42     uint32 id_SgNB_UE_X2AP_ID = 2;
43     E_RABs_Admitted_ToBeAdded_SgNBAddReqAckList id_E_RABs_Admitted_ToBeAdded_SgNBAddReqAckList = 3;
44     E_RAB_List id_E_RABs_NotAdmitted_List = 4;
45     //The content of id_SgNBtoMeNBContainer has been specified in 3GPP 38.331 to be CG-Config.
46     CG_Config id_SgNBtoMeNBContainer = 5;
47     CriticalityDiagnostics id_CriticalityDiagnostics = 6;
48     google.protobuf.UInt32Value id_MeNB_UE_X2AP_ID_Extension = 7;
49     SplitSRBs id_AdmittedSplitSRBs = 8;
50     SgNBResourceCoordinationInformation id_SgNBResourceCoordinationInformation = 9;
51     RRC_Config_Ind id_RRCConfigIndication = 10;
52 }
53
54 message E_RABs_Admitted_ToBeAdded_SgNBAddReqAckList
55 {
56     repeated E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_Item id_E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_Item = 1;
57 }
58
59 message E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_Item
60 {
61     uint32 e_RAB_ID = 1;
62     EN_DC_ResourceConfiguration en_DC_ResourceConfiguration = 2;
63     oneof resource_configuration {
64         E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_SgNBPDCPpresent sgNBPDCPpresent = 3;
65         E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_SgNBPDCPnotpresent sgNBPDCPnotpresent = 4;
66     }
67     repeated E_RABs_ToBeAdded_SgNBAddReqAck_ItemExtIEs iE_Extensions = 5;
68 }
69
70 message E_RABs_ToBeAdded_SgNBAddReqAck_ItemExtIEs
71 {
72 }
73
74 message E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_SgNBPDCPpresent
75 {
76     GTPtunnelEndpoint s1_DL_GTPtunnelEndpoint = 1;
77     GTPtunnelEndpoint sgNB_UL_GTP_TEIDatPDCP = 2;
78     RLCMode rlc_Mode = 3;
79     GTPtunnelEndpoint dL_Forwarding_GTPtunnelEndpoint = 4;
80     GTPtunnelEndpoint uL_Forwarding_GTPtunnelEndpoint = 5;
81     E_RAB_Level_QoS_Parameters mCG_E_RAB_Level_QoS_Parameters = 6;
82     ULConfiguration uL_Configuration = 7;
83     repeated E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_SgNBPDCPpresentExtIEs iE_Extensions = 8;
84 }
85
86 message E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_SgNBPDCPpresentExtIEs
87 {
88     PDCPSnLength id_uLpDCPSnLength = 1;
89     PDCPSnLength id_dLPDCPSnLength = 2;
90 }
91
92 message E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_SgNBPDCPnotpresent
93 {
94     GTPtunnelEndpoint sgNB_DL_GTP_TEIDatSCG = 1;
95     GTPtunnelEndpoint secondary_sgNB_DL_GTP_TEIDatSCG = 2;
96     repeated E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_SgNBPDCPnotpresentExtIEs iE_Extensions = 3;
97 }
98
99 message E_RABs_Admitted_ToBeAdded_SgNBAddReqAck_SgNBPDCPnotpresentExtIEs
100 {
101     google.protobuf.UInt32Value lc_id = 1;
102 }