Skip to content
New issue

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

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

Already on GitHub? # to your account

Adding global tags element #227

Merged
merged 3 commits into from
Nov 6, 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
11 changes: 8 additions & 3 deletions code/API_definitions/qod-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,16 @@ servers:
basePath:
default: qod/v0
description: Base path for the QoD API
tags:
- name: QoS Sessions
description: Manage QoS sessions
- name: QoS Profiles
description: Manage QoS Profiles
paths:
/sessions:
post:
tags:
- QoS sessions
- QoS Sessions
summary: Creates a new session
description: Create QoS Session to manage latency/throughput priorities
operationId: createSession
Expand Down Expand Up @@ -226,7 +231,7 @@ paths:
/sessions/{sessionId}:
get:
tags:
- QoS sessions
- QoS Sessions
summary: Get QoS session information
description: Querying for QoS session resource information details
operationId: getSession
Expand Down Expand Up @@ -263,7 +268,7 @@ paths:

delete:
tags:
- QoS sessions
- QoS Sessions
summary: Delete a QoS session
description: Free resources related to QoS session
operationId: deleteSession
Expand Down