adjacent_app_instance_info.proto 751 Bytes
Newer Older
Elian Kraja's avatar
Elian Kraja committed
/*
  ETSI GS MEC 021 Application Mobility Service API
 
  ETSI GS MEC 021 Application Mobility Service API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec021;

import public "models/communication_interface.proto";
import public "models/mec_host_information.proto";

message AdjacentAppInstanceInfo {

  // Identifier of the application descriptor.
  string appDId = 1;

  // It specifies the communication interface of application instance.
  repeated CommunicationInterface appInstanceCommLink = 2;

  // Identifier of the application instance.
  string appInstanceId = 3;

  MECHostInformation mecHostInformation = 4;

}