[create-pull-request] automated change (#6830)

Co-authored-by: olivermrbl <olivermrbl@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-03-26 18:29:00 +01:00
committed by GitHub
co-authored by olivermrbl
parent b5bc33a9d7
commit 2524a9dfb0
171 changed files with 1076 additions and 312 deletions
@@ -0,0 +1,44 @@
/**
* @oas [get] /auth/{scope}/{auth_provider}
* operationId: GetScopeAuth_provider
* summary: "List "
* description: Retrieve a list of in a [scope]. The can be filtered by fields
* like FILTER FIELDS. The can also be paginated.
* x-authenticated: false
* parameters:
* - name: scope
* in: path
* description: The [scope]'s scope.
* required: true
* schema:
* type: string
* - name: auth_provider
* in: path
* description: The [scope]'s auth provider.
* required: true
* schema:
* type: string
* x-codeSamples:
* - lang: Shell
* label: cURL
* source: curl '{backend_url}/auth/{scope}/{auth_provider}'
* tags:
* - "[scope]"
* responses:
* "200":
* description: OK
* "400":
* $ref: "#/components/responses/400_error"
* "401":
* $ref: "#/components/responses/unauthorized"
* "404":
* $ref: "#/components/responses/not_found_error"
* "409":
* $ref: "#/components/responses/invalid_state_error"
* "422":
* $ref: "#/components/responses/invalid_request_error"
* "500":
* $ref: "#/components/responses/500_error"
*
*/
@@ -0,0 +1,44 @@
/**
* @oas [get] /auth/{scope}/{auth_provider}/callback
* operationId: GetScopeAuth_providerCallback
* summary: List Callbacks
* description: Retrieve a list of callbacks in a [scope]. The callbacks can be
* filtered by fields like FILTER FIELDS. The callbacks can also be paginated.
* x-authenticated: false
* parameters:
* - name: scope
* in: path
* description: The [scope]'s scope.
* required: true
* schema:
* type: string
* - name: auth_provider
* in: path
* description: The [scope]'s auth provider.
* required: true
* schema:
* type: string
* x-codeSamples:
* - lang: Shell
* label: cURL
* source: curl '{backend_url}/auth/{scope}/{auth_provider}/callback'
* tags:
* - "[scope]"
* responses:
* "200":
* description: OK
* "400":
* $ref: "#/components/responses/400_error"
* "401":
* $ref: "#/components/responses/unauthorized"
* "404":
* $ref: "#/components/responses/not_found_error"
* "409":
* $ref: "#/components/responses/invalid_state_error"
* "422":
* $ref: "#/components/responses/invalid_request_error"
* "500":
* $ref: "#/components/responses/500_error"
*
*/
@@ -0,0 +1,43 @@
/**
* @oas [post] /auth/{scope}/{auth_provider}
* operationId: PostScopeAuth_provider
* summary: Add to [scope]
* description: Add a list of to a [scope].
* x-authenticated: false
* parameters:
* - name: scope
* in: path
* description: The [scope]'s scope.
* required: true
* schema:
* type: string
* - name: auth_provider
* in: path
* description: The [scope]'s auth provider.
* required: true
* schema:
* type: string
* x-codeSamples:
* - lang: Shell
* label: cURL
* source: curl -X POST '{backend_url}/auth/{scope}/{auth_provider}'
* tags:
* - "[scope]"
* responses:
* "200":
* description: OK
* "400":
* $ref: "#/components/responses/400_error"
* "401":
* $ref: "#/components/responses/unauthorized"
* "404":
* $ref: "#/components/responses/not_found_error"
* "409":
* $ref: "#/components/responses/invalid_state_error"
* "422":
* $ref: "#/components/responses/invalid_request_error"
* "500":
* $ref: "#/components/responses/500_error"
*
*/
@@ -0,0 +1,43 @@
/**
* @oas [post] /auth/{scope}/{auth_provider}/callback
* operationId: PostScopeAuth_providerCallback
* summary: Add Callbacks to [scope]
* description: Add a list of callbacks to a [scope].
* x-authenticated: false
* parameters:
* - name: scope
* in: path
* description: The [scope]'s scope.
* required: true
* schema:
* type: string
* - name: auth_provider
* in: path
* description: The [scope]'s auth provider.
* required: true
* schema:
* type: string
* x-codeSamples:
* - lang: Shell
* label: cURL
* source: curl -X POST '{backend_url}/auth/{scope}/{auth_provider}/callback'
* tags:
* - "[scope]"
* responses:
* "200":
* description: OK
* "400":
* $ref: "#/components/responses/400_error"
* "401":
* $ref: "#/components/responses/unauthorized"
* "404":
* $ref: "#/components/responses/not_found_error"
* "409":
* $ref: "#/components/responses/invalid_state_error"
* "422":
* $ref: "#/components/responses/invalid_request_error"
* "500":
* $ref: "#/components/responses/500_error"
*
*/
@@ -12,8 +12,6 @@
* tags:
* - Session
* responses:
* "200":
* description: OK
* "400":
* $ref: "#/components/responses/400_error"
* "401":
@@ -26,6 +24,10 @@
* $ref: "#/components/responses/invalid_request_error"
* "500":
* $ref: "#/components/responses/500_error"
* requestBody:
* content:
* application/json:
* schema: {}
*
*/