cell_change_notification.proto 1.26 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/cell_change_notification_temp_ue_id.proto";
import public "models/ecgi.proto";
import public "models/time_stamp.proto";

message CellChangeNotification {

  // 0 to N identifiers to associate the event for a specific UE or flow.
  repeated AssociateId associateId = 1;

Michel Roy's avatar
Michel Roy committed
  // Indicate the status of the UE handover procedure. Values are defined as following: <p>1 = IN_PREPARATION. <p>2 = IN_EXECUTION. <p>3 = COMPLETED. <p>4 = REJECTED. <p>5 = CANCELLED.
Michel Roy's avatar
Michel Roy committed
  enum HoStatusEnum {
Michel Roy's avatar
Michel Roy committed
    _1 = 0;
    _2 = 1;
    _3 = 2;
    _4 = 3;
    _5 = 4;
Michel Roy's avatar
Michel Roy committed
  }

  HoStatusEnum hoStatus = 2;

  // Shall be set to \"CellChangeNotification\".
  string notificationType = 3;

  Ecgi srcEcgi = 4;

  CellChangeNotificationTempUeId tempUeId = 5;

  TimeStamp timeStamp = 6;

  // E-UTRAN Cell Global Identifier of the target cell. NOTE: Cardinality N is valid only in case of statuses IN_PREPARATION, REJECTED and CANCELLED.
  repeated Ecgi trgEcgi = 7;

}