-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: George J Padayatti <[email protected]>
- Loading branch information
1 parent
8e0d733
commit f116b77
Showing
3 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
description: LIST - List all api keys | ||
operationId: configListApiKey | ||
parameters: | ||
- $ref: "../parameters/offset.yaml" | ||
- $ref: "../parameters/limit.yaml" | ||
responses: | ||
"200": | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
apiKeys: | ||
$ref: ../definitions/ApiKey.yaml | ||
pagination: | ||
$ref: "../definitions/Pagination.yaml" | ||
description: "" | ||
"400": | ||
description: bad input parameter | ||
security: | ||
- BearerAuth: [] | ||
summary: LIST - List all api keys | ||
tags: | ||
- config | ||
x-specification-crudl-model: ApiKey | ||
x-specification-pii-or-sensitive: "False" | ||
x-specification-scenario: "" | ||
x-specification-usecase: UC-C-PIC-A-003 |