l2_meas_cell_ue_info.proto 3.28 KB
Newer Older
Michel Roy's avatar
Michel Roy committed
/*
  ETSI GS MEC 012 - Radio Network Information API
 
  The ETSI MEC ISG MEC012 Radio Network Information API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec012;

import public "models/associate_id.proto";
import public "models/ecgi.proto";

message L2MeasCellUEInfo {

  AssociateId associateId = 1;

  // It indicates the data volume of the downlink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 dlUnderscoregbrUnderscoredataUnderscorevolumeUnderscoreue = 2;

  // It indicates the packet delay of the downlink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 dlUnderscoregbrUnderscoredelayUnderscoreue = 3;

  // It indicates the packet discard rate in percentage of the downlink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 dlUnderscoregbrUnderscorepdrUnderscoreue = 4;

  // It indicates the scheduled throughput of the downlink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 dlUnderscoregbrUnderscorethroughputUnderscoreue = 5;

  // It indicates the data volume of the downlink non-GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 dlUnderscorenongbrUnderscoredataUnderscorevolumeUnderscoreue = 6;

  // It indicates the packet delay of the downlink non-GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 dlUnderscorenongbrUnderscoredelayUnderscoreue = 7;

  // It indicates the packet discard rate in percentage of the downlink nonGBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 dlUnderscorenongbrUnderscorepdrUnderscoreue = 8;

  // It indicates the scheduled throughput of the downlink nonGBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 dlUnderscorenongbrUnderscorethroughputUnderscoreue = 9;

  Ecgi ecgi = 10;

  // It indicates the data volume of the uplink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 ulUnderscoregbrUnderscoredataUnderscorevolumeUnderscoreue = 11;

  // It indicates the packet delay of the uplink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 ulUnderscoregbrUnderscoredelayUnderscoreue = 12;

  // It indicates the packet discard rate in percentage of the uplink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 ulUnderscoregbrUnderscorepdrUnderscoreue = 13;

  // It indicates the scheduled throughput of the uplink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 ulUnderscoregbrUnderscorethroughputUnderscoreue = 14;

  // It indicates the data volume of the uplink non-GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 ulUnderscorenongbrUnderscoredataUnderscorevolumeUnderscoreue = 15;

  // It indicates the packet delay of the uplink non-GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 ulUnderscorenongbrUnderscoredelayUnderscoreue = 16;

  // It indicates the packet discard rate in percentage of the uplink nonGBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 ulUnderscorenongbrUnderscorepdrUnderscoreue = 17;

  // It indicates the scheduled throughput of the uplink non-GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].
  int32 ulUnderscorenongbrUnderscorethroughputUnderscoreue = 18;

}