Commit c6fea83d authored by Ayesha Ayub's avatar Ayesha Ayub
Browse files

fix issues in TransportInfo data model

parent 8a03e70e
Loading
Loading
Loading
Loading
Loading
+0 −3
Original line number Original line Diff line number Diff line
@@ -18,9 +18,6 @@ models/dns_rule_ip_address_type.proto
models/dns_rule_state.proto
models/dns_rule_state.proto
models/end_point_info_address.proto
models/end_point_info_address.proto
models/end_point_info_addresses.proto
models/end_point_info_addresses.proto
models/end_point_info_alternative.proto
models/end_point_info_fqdn.proto
models/end_point_info_uris.proto
models/feature_dependency.proto
models/feature_dependency.proto
models/link_type.proto
models/link_type.proto
models/link_type_confirm_termination.proto
models/link_type_confirm_termination.proto
+1 −4
Original line number Original line Diff line number Diff line
@@ -16,10 +16,7 @@ package mec011;


import public "models/end_point_info_address.proto";
import public "models/end_point_info_address.proto";
// import public "models/end_point_info_addresses.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 {
message AppInfoEndpoint {


+1 −1
Original line number Original line Diff line number Diff line
@@ -2418,7 +2418,7 @@
            "$ref": "#/components/schemas/SecurityInfo"
            "$ref": "#/components/schemas/SecurityInfo"
          },
          },
          "implSpecificInfo": {
          "implSpecificInfo": {
            "type": "object",
            "type": "string",
            "description": "Additional implementation specific details of the transport"
            "description": "Additional implementation specific details of the transport"
          }
          }
        },
        },
+1 −1
Original line number Original line Diff line number Diff line
@@ -2092,7 +2092,7 @@ components:
        security:
        security:
          $ref: '#/components/schemas/SecurityInfo'
          $ref: '#/components/schemas/SecurityInfo'
        implSpecificInfo:
        implSpecificInfo:
          type: object
          type: string
          description: Additional implementation specific details of the transport
          description: Additional implementation specific details of the transport
      description: This type represents the general information of a MEC service.
      description: This type represents the general information of a MEC service.
    TransportType:
    TransportType:
+1 −2
Original line number Original line Diff line number Diff line
@@ -15,7 +15,6 @@ syntax = "proto3";
package mec011;
package mec011;


import public "models/security_info.proto";
import public "models/security_info.proto";
// import public "models/todo_object_mapping.proto";
import public "models/transport_info_endpoint.proto";
import public "models/transport_info_endpoint.proto";
import public "models/transport_type.proto";
import public "models/transport_type.proto";


@@ -43,6 +42,6 @@ message TransportInfo {
  SecurityInfo security = 7;
  SecurityInfo security = 7;


  // Additional implementation specific details of the transport
  // Additional implementation specific details of the transport
  // TODO_OBJECT_MAPPING implSpecificInfo = 109027520;
  string implSpecificInfo = 109027520;


}
}
Loading