Skip to content

Commit

Permalink
Publish docs
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 20, 2023
1 parent 8a02663 commit c73d635
Show file tree
Hide file tree
Showing 2 changed files with 430 additions and 336 deletions.
684 changes: 348 additions & 336 deletions index.html

Large diffs are not rendered by default.

82 changes: 82 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,33 @@ paths:
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/gitToken':
get:
summary: List organization git tokens
description: List organization git tokens
operationId: listOrganizationGitTokens
parameters:
- $ref: '#/components/parameters/organizationId'
tags:
- Organization Main Calls
responses:
'200':
description: List organization git tokens
content:
application/json:
schema:
type: object
properties:
results:
type: array
items:
$ref: '#/components/schemas/GitTokenResponse'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'/organization/{organizationId}/member':
get:
summary: Get organization members
Expand Down Expand Up @@ -1713,6 +1740,12 @@ paths:
operationId: getOrganizationGithubRepositories
parameters:
- $ref: '#/components/parameters/organizationId'
- in: query
name: gitTokenId
schema:
type: string
format: uuid
description: The git token id that must be used for the application
tags:
- Organization Account Git Repositories
responses:
Expand All @@ -1732,6 +1765,12 @@ paths:
- Organization Account Git Repositories
parameters:
- $ref: '#/components/parameters/organizationId'
- in: query
name: gitTokenId
schema:
type: string
format: uuid
description: The git token id that must be used for the application
- in: query
name: name
schema:
Expand All @@ -1752,6 +1791,12 @@ paths:
operationId: getOrganizationGitlabRepositories
parameters:
- $ref: '#/components/parameters/organizationId'
- in: query
name: gitTokenId
schema:
type: string
format: uuid
description: The git token id that must be used for the application
tags:
- Organization Account Git Repositories
responses:
Expand All @@ -1771,6 +1816,12 @@ paths:
- Organization Account Git Repositories
parameters:
- $ref: '#/components/parameters/organizationId'
- in: query
name: gitTokenId
schema:
type: string
format: uuid
description: The git token id that must be used for the application
- in: query
name: name
schema:
Expand All @@ -1791,6 +1842,12 @@ paths:
operationId: getOrganizationBitbucketRepositories
parameters:
- $ref: '#/components/parameters/organizationId'
- in: query
name: gitTokenId
schema:
type: string
format: uuid
description: The git token id that must be used for the application
tags:
- Organization Account Git Repositories
responses:
Expand All @@ -1810,6 +1867,12 @@ paths:
- Organization Account Git Repositories
parameters:
- $ref: '#/components/parameters/organizationId'
- in: query
name: gitTokenId
schema:
type: string
format: uuid
description: The git token id that must be used for the application
- in: query
name: name
schema:
Expand Down Expand Up @@ -10080,6 +10143,11 @@ components:
type: string
default: /
description: indicates the root path of the application.
git_token_id:
type: string
format: uuid
description: The git token id on Qovery side
nullable: true
ApplicationNetwork:
type: object
properties:
Expand Down Expand Up @@ -13184,6 +13252,20 @@ components:
type: array
items:
$ref: '#/components/schemas/GitRepository'
GitTokenResponse:
allOf:
- $ref: '#/components/schemas/Base'
- type: object
required:
- name
- type
properties:
name:
type: string
description:
type: string
type:
$ref: '#/components/schemas/GitProviderEnum'
Healthcheck:
type: object
nullable: false
Expand Down

0 comments on commit c73d635

Please sign in to comment.