Update v3.0.0 release notes
[ric-plt/streaming-protobufs.git] / proto / sgnb_modification_confirm.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
27 /*
28    Protocol Buffer definition for SGNB MODIFICATION CONFIRM message.
29    (3GPP 36.423, ver 15.4.0)
30
31    Naming convention follows the ASN.1 field naming defined in chapter
32    '9.3 Message and Information Element Abstract Syntax (with ASN.1)' of below document:
33    http://www.3gpp.org/ftp//Specs/archive/36_series/36.423/36423-f40.zip
34
35    Dashes converted to underscores to make protobuf message syntax correct.
36 */
37
38
39 message SgNBModificationConfirm
40 {
41     SgNBModificationConfirm_IEs protocolIEs = 1;
42 }
43
44 message SgNBModificationConfirm_IEs
45 {
46     uint32 id_MeNB_UE_X2AP_ID = 1;
47     uint32 id_SgNB_UE_X2AP_ID = 2;
48     E_RABs_AdmittedToBeModified_SgNBModConfList id_E_RABs_AdmittedToBeModified_SgNBModConfList = 3;
49     google.protobuf.BytesValue id_MeNBtoSgNBContainer = 4;
50     CriticalityDiagnostics id_CriticalityDiagnostics = 5;
51     google.protobuf.UInt32Value id_MeNB_UE_X2AP_ID_Extension = 6;
52     MeNBResourceCoordinationInformation id_MeNBResourceCoordinationInformation = 7;
53 }
54
55 message E_RABs_AdmittedToBeModified_SgNBModConfList
56 {
57     repeated E_RABs_AdmittedToBeModified_SgNBModConf_ItemIEs items = 1;
58 }
59
60 message E_RABs_AdmittedToBeModified_SgNBModConf_ItemIEs
61 {
62     E_RABs_AdmittedToBeModified_SgNBModConf_Item id_E_RABs_AdmittedToBeModified_SgNBModConf_Item = 1;
63 }
64
65 message E_RABs_AdmittedToBeModified_SgNBModConf_Item
66 {
67     uint32 e_RAB_ID = 1;
68     EN_DC_ResourceConfiguration en_DC_ResourceConfiguration = 2;
69     oneof resource_configuration {
70         E_RABs_AdmittedToBeModified_SgNBModConf_SgNBPDCPpresent sgNBPDCPpresent = 3;
71         E_RABs_AdmittedToBeModified_SgNBModConf_SgNBPDCPnotpresent sgNBPDCPnotpresent = 4;
72     }
73     repeated E_RABs_AdmittedToBeModified_SgNBModConf_ItemExtIEs iE_Extensions = 5;
74 }
75
76 message E_RABs_AdmittedToBeModified_SgNBModConf_ItemExtIEs
77 {
78 }
79
80 message E_RABs_AdmittedToBeModified_SgNBModConf_SgNBPDCPpresent
81 {
82     repeated E_RABs_AdmittedToBeModified_SgNBModConf_SgNBPDCPpresentExtIEs iE_Extensions = 1;
83 }
84
85 message E_RABs_AdmittedToBeModified_SgNBModConf_SgNBPDCPpresentExtIEs
86 {
87 }
88
89 message E_RABs_AdmittedToBeModified_SgNBModConf_SgNBPDCPnotpresent
90 {
91     GTPtunnelEndpoint secondary_meNB_UL_GTP_TEIDatPDCP = 1;
92     repeated E_RABs_AdmittedToBeModified_SgNBModConf_SgNBPDCPnotpresentExtIEs iE_Extensions = 2;
93 }
94
95 message E_RABs_AdmittedToBeModified_SgNBModConf_SgNBPDCPnotpresentExtIEs
96 {
97     PDCPSnLength id_uLpDCPSnLength = 1;
98     PDCPSnLength id_dLPDCPSnLength = 2;
99 }