Commit 5b2b5bed authored by Muhammad Hamza's avatar Muhammad Hamza
Browse files

add proto3 descriptors

parent 79d7fbf2
Loading
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
+75 −0
Original line number Diff line number Diff line
.openapi-generator-ignore
README.md
models/access_point_get_by_id200_response.proto
models/access_point_info.proto
models/access_point_list.proto
models/access_points_get200_response.proto
models/area_info.proto
models/area_notification_post_request.proto
models/area_sub_get200_response.proto
models/area_sub_list_get200_response.proto
models/area_sub_post201_response.proto
models/area_sub_post_request.proto
models/area_sub_put_request.proto
models/civic_address.proto
models/connection_type.proto
models/distance_criteria.proto
models/distance_get200_response.proto
models/distance_get_location_parameter.proto
models/distance_notification_post_request.proto
models/distance_sub_get200_response.proto
models/distance_sub_list_get200_response.proto
models/distance_sub_post_request.proto
models/link_type.proto
models/links.proto
models/location_event_type.proto
models/location_info.proto
models/map_info.proto
models/notification_result.proto
models/notification_subscription_list.proto
models/occurrence_info.proto
models/operation_status.proto
models/origin.proto
models/periodic_event_info.proto
models/point.proto
models/problem_details.proto
models/relative_location_info.proto
models/reporting_ctrl.proto
models/retrieval_status.proto
models/service_error.proto
models/subscription.proto
models/terminal_distance.proto
models/terminal_location.proto
models/test_notification.proto
models/time_stamp.proto
models/user_area_notification.proto
models/user_area_subscription.proto
models/user_distance_notification.proto
models/user_distance_subscription.proto
models/user_event_para.proto
models/user_info.proto
models/user_list.proto
models/user_location_event_notification.proto
models/user_location_event_subscription.proto
models/user_location_periodic_notification.proto
models/user_location_periodic_subscription.proto
models/user_notification_post_request.proto
models/user_sub_get200_response.proto
models/user_sub_list_get200_response.proto
models/user_sub_post_request.proto
models/users_get200_response.proto
models/velocity.proto
models/websock_notif_config.proto
models/zone_get_by_id200_response.proto
models/zone_info.proto
models/zone_list.proto
models/zone_location_event_notification.proto
models/zone_location_event_subscription.proto
models/zone_notification_post_request.proto
models/zone_status_notification.proto
models/zone_status_subscription.proto
models/zone_sub_get200_response.proto
models/zone_sub_list_get200_response.proto
models/zone_sub_post_request.proto
models/zones_get200_response.proto
services/location_service.proto
+1 −0
Original line number Diff line number Diff line
6.2.1
 No newline at end of file
+21 −0
Original line number Diff line number Diff line
/*
  ETSI GS MEC 013 - Location API

  The ETSI MEC ISG MEC013 Location API described using OpenAPI.

  The version of the OpenAPI document: 3.1.1

  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec013;

import public "models/access_point_info.proto";

message AccessPointGetById200Response {

  AccessPointInfo accessPointInfo = 0;

}
+42 −0
Original line number Diff line number Diff line
/*
  ETSI GS MEC 013 - Location API

  The ETSI MEC ISG MEC013 Location API described using OpenAPI.

  The version of the OpenAPI document: 3.1.1

  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec013;

import public "models/connection_type.proto";
import public "models/location_info.proto";
import public "models/operation_status.proto";

message AccessPointInfo {

  // Identifier of access point.
  string accessPointId = 0;

  ConnectionType connectionType = 1;

  // Interest realm of access point.
  string interestRealm = 2;

  LocationInfo locationInfo = 3;

  // Number of users currently on the access point.
  int32 numberOfUsers = 4;

  OperationStatus operationStatus = 5;

  // Self referring URL
  string resourceURL = 6;

  // Time zone of access point.
  string timezone = 7;

}
Loading