Commit 05805d1e authored by Ubuntu's avatar Ubuntu
Browse files

Updated proto3 file notation from camel case to snake case and enum variables name format.

parent 5ea3fc08
Loading
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -18,17 +18,17 @@ import public "models/time_stamp.proto";

message AdjacentAppInfoSubscription {

  AdjacentAppInfoSubscriptionLinks Underscorelinks = 1;
  AdjacentAppInfoSubscriptionLinks underscorelinks = 1;

  // URI selected by the service consumer to receive notifications on the subscribed Application Mobility Service. This shall be included both in the request and in response.
  string callbackReference = 2;
  string callback_reference = 2;

  TimeStamp expiryDeadline = 3;
  TimeStamp expiry_deadline = 3;

  AdjacentAppInfoSubscriptionFilterCriteria filterCriteria = 4;
  AdjacentAppInfoSubscriptionFilterCriteria filter_criteria = 4;

  // Shall be set to \"AdjacentAppInfoSubscription\".
  enum subscriptionType {
  enum SUBSCRIPTION_TYPE {
    ADJACENTAPPINFOSUBSCRIPTION = 0;
  }

+1 −1
Original line number Diff line number Diff line
@@ -15,6 +15,6 @@ package mec021;

message AdjacentAppInfoSubscriptionFilterCriteria {

  string appInstanceId = 1;
  string app_instance_id = 1;

}
+4 −4
Original line number Diff line number Diff line
@@ -18,14 +18,14 @@ import public "models/mec_host_information.proto";
message AdjacentAppInstanceInfo {

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

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

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

  MECHostInformation mecHostInformation = 4;
  MECHostInformation mec_host_information = 4;

}
+3 −3
Original line number Diff line number Diff line
@@ -16,9 +16,9 @@ package mec021;
//This attribute provides an option for the application instance (server) to communicate with the application client before relocating this application instance to another MEC host. The applicable values of this attribute are: 1 = APP_MOBILITY_NOT_ALLOWED 2 = APP_MOBILITY_WITH_CONFIRMATION 3 = APP_MOBILITY_WITHOUT_CONFIRMATION.
message AppMobilityServiceLevel {
	enum TypeEnum {
		_1 = 0;
		_2 = 1;
		_3 = 2;
		APP_MOBILITY_SERVICE_LEVEL_TYPE_ENUM_1 = 0;
		APP_MOBILITY_SERVICE_LEVEL_TYPE_ENUM_2 = 1;
		APP_MOBILITY_SERVICE_LEVEL_TYPE_ENUM_3 = 2;
	}
  TypeEnum type = 1;

+5 −5
Original line number Diff line number Diff line
@@ -17,11 +17,11 @@ message AssociateId {

  // Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.
  enum TypeEnum {
    _0 = 0;
    _1 = 1;
    _2 = 2;
    _3 = 3;
    _4 = 4;
    ASSOCIATE_ID_TYPE_ENUM_0 = 0;
    ASSOCIATE_ID_TYPE_ENUM_1 = 1;
    ASSOCIATE_ID_TYPE_ENUM_2 = 2;
    ASSOCIATE_ID_TYPE_ENUM_3 = 3;
    ASSOCIATE_ID_TYPE_ENUM_4 = 4;
  }

  TypeEnum type = 1;
Loading