X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=x2ap_common_types.proto;h=1754a5a3636d839afe314e5ed9776b3f22e3a139;hb=refs%2Fchanges%2F47%2F2247%2F1;hp=7fe6b1f0d82c270b24938c4d2e37a6500dca751b;hpb=142f520ddc2e45f5dabbad35a194432a00b409fb;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;