associate_id.proto 720 Bytes
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;


message AssociateId {

  // Numeric value (0-255) corresponding to specified type of identifier as following: 0 = reserved. 1= UE_IPv4_ADDRESS. 2 = UE_IPV6_ADDRESS. 3 = NATED_IP_ADDRESS. 4 = GTP_TEID.
  enum TypeEnum {
    _0_RESERVED = 0;
    _1_UE_IPV4_ADDRESS = 1;
    _2_UE_IPV6_ADDRESS = 2;
    _3_NATED_IP_ADDRESS = 3;
    _4_GTP_TEID = 4;
  }

  TypeEnum type = 1;

  // Value for the identifier.
  string value = 2;

}