Update v3.0.0 release notes
[ric-plt/streaming-protobufs.git] / proto / sgnb_release_request.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_info.proto";
27 import "error_cause.proto";
28
29 /*
30    Protocol Buffer definition for SGNB RELEASE REQUEST message.
31    (3GPP 36.423, ver 15.4.0)
32
33    Naming convention follows the ASN.1 field naming defined in chapter
34    '9.3 Message and Information Element Abstract Syntax (with ASN.1)' of below document:
35    http://www.3gpp.org/ftp//Specs/archive/36_series/36.423/36423-f40.zip
36
37    Dashes converted to underscores to make protobuf message syntax correct.
38 */
39
40 message SgNBReleaseRequest
41 {
42     SgNBReleaseRequest_IEs protocolIEs = 1;
43 }
44
45 message SgNBReleaseRequest_IEs
46 {
47     uint32 id_MeNB_UE_X2AP_ID = 1;
48     google.protobuf.UInt32Value id_SgNB_UE_X2AP_ID = 2;
49     Cause id_Cause = 3;
50     E_RABs_ToBeReleased_SgNBRelReqList id_E_RABs_ToBeReleased_SgNBRelReqList = 4;
51     UE_ContextKeptIndicator id_UE_ContextKeptIndicator = 5;
52     google.protobuf.UInt32Value id_MeNB_UE_X2AP_ID_Extension = 6;
53     //The content of id_MeNBtoSgNBContainer has been specified in 3GPP 38.331 to be CG-ConfigInfo.
54     CG_ConfigInfo id_MeNBtoSgNBContainer = 7;
55 }
56
57 message E_RABs_ToBeReleased_SgNBRelReqList
58 {
59     repeated E_RABs_ToBeReleased_SgNBRelReq_Item id_E_RABs_ToBeReleased_SgNBRelReq_Item = 1;
60 }
61
62 message UE_ContextKeptIndicator
63 {
64     enum Value {
65         protobuf_unspecified = 0;
66         true = 1;
67     }
68     Value value = 1;
69 }
70
71 message E_RABs_ToBeReleased_SgNBRelReq_Item
72 {
73     uint32 e_RAB_ID = 1;
74     EN_DC_ResourceConfiguration en_DC_ResourceConfiguration = 2;
75     oneof resource_configuration {
76         E_RABs_ToBeReleased_SgNBRelReq_SgNBPDCPpresent sgNBPDCPpresent = 3;
77         E_RABs_ToBeReleased_SgNBRelReq_SgNBPDCPnotpresent sgNBPDCPnotpresent = 4;
78     }
79     repeated E_RABs_ToBeReleased_SgNBRelReq_ItemExtIEs iE_Extensions = 5;
80 }
81
82 message E_RABs_ToBeReleased_SgNBRelReq_ItemExtIEs
83 {
84 }
85
86 message E_RABs_ToBeReleased_SgNBRelReq_SgNBPDCPpresent
87 {
88     GTPtunnelEndpoint uL_GTPtunnelEndpoint = 1;
89     GTPtunnelEndpoint dL_GTPtunnelEndpoint = 2;
90 }
91
92 message E_RABs_ToBeReleased_SgNBRelReq_SgNBPDCPnotpresent
93 {
94     repeated E_RABs_ToBeReleased_SgNBRelReq_SgNBPDCPnotpresentExtIEs iE_Extensions = 1;
95 }
96
97 message E_RABs_ToBeReleased_SgNBRelReq_SgNBPDCPnotpresentExtIEs
98 {
99 }