adding Jussi as committer
[ric-plt/streaming-protobufs.git] / sgnb_reconfiguration_complete.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 "error_cause.proto";
26
27 /*
28    Protocol Buffer definition for SGNB RECONFIGURATION COMPLETE 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 message SgNBReconfigurationComplete
39 {
40     uint32 id_MeNB_UE_X2AP_ID = 1;
41     uint32 id_SgNB_UE_X2AP_ID = 2;
42     ResponseInformationSgNBReconfComp id_ResponseInformationSgNBReconfComp = 3;
43     google.protobuf.UInt32Value id_MeNB_UE_X2AP_ID_Extension = 4;
44 }
45
46 message ResponseInformationSgNBReconfComp
47 {
48     oneof value
49     {
50         ResponseInformationSgNBReconfComp_SuccessItem success_SgNBReconfComp = 1;
51         ResponseInformationSgNBReconfComp_RejectByMeNBItem reject_by_MeNB_SgNBReconfComp = 2;
52     }
53 }
54
55 message ResponseInformationSgNBReconfComp_SuccessItem
56 {
57     google.protobuf.StringValue meNBtoSgNBContainer = 1;
58     repeated ResponseInformationSgNBReconfComp_SuccessItemExtIEs iE_Extensions = 2;
59 }
60
61 message ResponseInformationSgNBReconfComp_SuccessItemExtIEs
62 {
63 }
64
65 message ResponseInformationSgNBReconfComp_RejectByMeNBItem
66 {
67     Cause cause = 1;
68     repeated ResponseInformationSgNBReconfComp_RejectByMeNBItemExtIEs iE_Extensions = 2;
69 }
70
71 message ResponseInformationSgNBReconfComp_RejectByMeNBItemExtIEs
72 {
73 }