Commit 94041abb authored by Muhammad Hamza's avatar Muhammad Hamza
Browse files

fix errors in ServiceMgmt proto3 descriptors

parent dbc49f75
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -18,7 +18,7 @@ package mec011;
message CategoryRef {
message CategoryRef {


  // Reference of the catalogue
  // Reference of the catalogue
  string href = 0;
  string href = 4;


  // Unique identifier of the category
  // Unique identifier of the category
  string id = 1;
  string id = 1;
+1 −1
Original line number Original line Diff line number Diff line
@@ -18,7 +18,7 @@ package mec011;
message EndPointInfoAddress {
message EndPointInfoAddress {


  // Host portion of the address
  // Host portion of the address
  string host = 0;
  string host = 2;


  // Port portion of the address
  // Port portion of the address
  int32 port = 1;
  int32 port = 1;
+1 −1
Original line number Original line Diff line number Diff line
@@ -18,6 +18,6 @@ package mec011;
message LinkType {
message LinkType {


  // URI referring to a resource
  // URI referring to a resource
  string href = 0;
  string href = 1;


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


message MecServiceMgmtApiSubscriptionLinkList {
message MecServiceMgmtApiSubscriptionLinkList {


  MecServiceMgmtApiSubscriptionLinkListLinks _links = 0;
  MecServiceMgmtApiSubscriptionLinkListLinks _links = 1;


}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -19,7 +19,7 @@ import public "models/mec_service_mgmt_api_subscription_link_list_subscription.p


message MecServiceMgmtApiSubscriptionLinkListLinks {
message MecServiceMgmtApiSubscriptionLinkListLinks {


  LinkType self = 0;
  LinkType self = 2;


  // The MEC application instance's subscriptions
  // The MEC application instance's subscriptions
  repeated MecServiceMgmtApiSubscriptionLinkListSubscription subscriptions = 1;
  repeated MecServiceMgmtApiSubscriptionLinkListSubscription subscriptions = 1;
Loading