X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=x2ap_common_types.proto;h=1754a5a3636d839afe314e5ed9776b3f22e3a139;hb=7498219cd0794f339fcea569c04ff51349e24645;hp=7fe6b1f0d82c270b24938c4d2e37a6500dca751b;hpb=dd356c5aadf73cfb53bc7c44b0908ab1ae34534a;p=ric-plt%2Fstreaming-protobufs.git diff --git a/x2ap_common_types.proto b/x2ap_common_types.proto index 7fe6b1f..1754a5a 100644 --- a/x2ap_common_types.proto +++ b/x2ap_common_types.proto @@ -113,6 +113,24 @@ message GBR_QosInformation_ExtIEs google.protobuf.UInt64Value id_extended_e_RAB_GuaranteedBitrateUL = 4; } +message GlobalGNB_ID +{ + string pLMN_Identity = 1; + GNB_ID gNB_ID = 2; + repeated GlobalGNB_ID_ExtIEs iE_Extensions = 3; +} + +message GNB_ID +{ + oneof c { + string gNB_ID = 1; + } +} + +message GlobalGNB_ID_ExtIEs +{ +} + message GTPtunnelEndpoint { string transportLayerAddress = 1; @@ -221,6 +239,42 @@ message E_RAB_Item Cause cause = 2; } +message ERABActivityNotifyItemList +{ + repeated ERABActivityNotifyItem items = 1; +} + +message ERABActivityNotifyItem +{ + uint32 e_RAB_ID = 1; + UserPlaneTrafficActivityReport activityReport = 2; + ERABActivityNotifyItem_ExtIEs iE_Extensions = 3; +} + +message ERABActivityNotifyItem_ExtIEs +{ +} + +message UserPlaneTrafficActivityReport +{ + enum Value { + protobuf_unspecified = 0; + inactive = 1; + re_activated = 2; + } + Value value = 1; +} + +message GNBOverloadInformation +{ + enum Value { + protobuf_unspecified = 0; + overloaded = 1; + not_overloaded = 2; + } + Value value = 1; +} + message CriticalityDiagnostics { google.protobuf.UInt32Value procedureCode = 1;