Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor patch (OAS version +documentation correction) #146

Merged
merged 3 commits into from
Nov 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions code/API_definitions/Discovery/simple_edge_discovery.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.0
openapi: 3.0.3
info:
title: Simple Edge Discovery API
version: 0.9.1
version: 0.9.2
description: |
# Find the closest MEC platform
---
Expand All @@ -14,7 +14,7 @@ info:

Once you have the name of the closest MEC platform to the user device, you may:

* connect your application client to your server instance on that MEC platform. Note: the address of that server instance is not part of the API response, but should be known in advance.
* connect the application client on the user device to your application server instance on that MEC platform. Note: the address of that server instance is not part of the API response, but should be known in advance.
* or, if you have no instance on that MEC platform, you may wish to deploy one there.

# Usage
Expand Down Expand Up @@ -134,7 +134,7 @@ paths:
- name: IP-Address
in: header
required: false
description: The public IP allocated to the device. If an IPv4 address is specified, the public port must also be specified in the "Port" header
description: The public IP allocated to the device.
examples:
ipv4:
value: "84.125.93.10"
Expand Down Expand Up @@ -202,7 +202,7 @@ components:
securitySchemes:
oAuth2ClientCredentials:
type: oauth2
description: This API uses OAuth 2 with the client credentials grant flow.
description: The Simple Edge Discovery API makes use of the OAUTH 2.0 client credentials grant, which is applicable for server-to-server use cases involving trusted partners or clients without any protected user data involved. In this method the API invoker client is registered as a confidential client with an authorization grant type of client_credentials.
flows:
clientCredentials:
tokenUrl: "{tokenUrl}"
Expand Down