Commit c2cf4e4f authored by Muhammad Hamza's avatar Muhammad Hamza
Browse files

fix errors in AppSupport proto3 descriptors

parent 94041abb
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ import public "models/service_dependency.proto";
message AppInfo {

  // Name of the application. It shall be consistent with the appName in the AppD, if an AppD is available.
  string appName = 0;
  string appName = 12;

  // Provider of the application. It shall be consistent with the appProvider in the AppD, if an AppD is available. See note 1.
  string appProvider = 1;
+9 −9
Original line number Diff line number Diff line
@@ -15,24 +15,24 @@ syntax = "proto3";
package mec011;

import public "models/end_point_info_address.proto";
import public "models/end_point_info_addresses.proto";
import public "models/end_point_info_alternative.proto";
import public "models/end_point_info_fqdn.proto";
import public "models/end_point_info_uris.proto";
import public "models/todo_object_mapping.proto";
// import public "models/end_point_info_addresses.proto";
// import public "models/end_point_info_alternative.proto";
// import public "models/end_point_info_fqdn.proto";
// import public "models/end_point_info_uris.proto";
// import public "models/todo_object_mapping.proto";

message AppInfoEndpoint {

oneOf EndpointInfo {
oneof EndpointInfo {

    // Entry point information of the service as string, formatted according to URI syntax
    repeated string uris = 0;
    string uris = 4;

    // Fully Qualified Domain Name of the service. See note.
    repeated string fqdn = 1;
    string fqdn = 1;
  
    // Entry point information of the service as one or more pairs of IP address and port. See note.
    repeated EndPointInfoAddress addresses = 2;
    EndPointInfoAddress addresses = 2;
  
    // Entry point information of the service in a format defined by an implementation, or in an external specification. See note.
    string alternative = 3;
+2 −2
Original line number Diff line number Diff line
@@ -14,12 +14,12 @@ syntax = "proto3";

package mec011;

import public "models/app_profile_end_pt.proto";
import public "models/app_info_endpoint.proto";

message AppProfile {

  // The identifier of the EAS
  string easId = 0;
  string easId = 14;

  AppInfoEndpoint endPt = 1;

+1 −1
Original line number Diff line number Diff line
@@ -18,6 +18,6 @@ package mec011;
message AppReadyConfirmation {

  // Indication about the MEC application instance.
  string indication = 0;
  string indication = 1;

}
+1 −1
Original line number Diff line number Diff line
@@ -18,6 +18,6 @@ import public "models/operation_action_type.proto";

message AppTerminationConfirmation {

  OperationActionType operationAction = 0;
  OperationActionType operationAction = 1;

}
Loading