enhance: Add missing UUID to openapi spec
This commit is contained in:
66
openapi.yaml
66
openapi.yaml
@@ -1277,6 +1277,15 @@ paths:
|
||||
summary: Update
|
||||
description: 'Update application by UUID.'
|
||||
operationId: update-application-by-uuid
|
||||
parameters:
|
||||
-
|
||||
name: uuid
|
||||
in: path
|
||||
description: 'UUID of the application.'
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
format: uuid
|
||||
requestBody:
|
||||
description: 'Application updated.'
|
||||
required: true
|
||||
@@ -3135,6 +3144,33 @@ paths:
|
||||
summary: 'List application deployments'
|
||||
description: 'List application deployments by using the app uuid'
|
||||
operationId: list-deployments-by-app-uuid
|
||||
parameters:
|
||||
-
|
||||
name: uuid
|
||||
in: path
|
||||
description: 'UUID of the application.'
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
format: uuid
|
||||
-
|
||||
name: skip
|
||||
in: query
|
||||
description: 'Number of records to skip.'
|
||||
required: false
|
||||
schema:
|
||||
type: integer
|
||||
default: 0
|
||||
minimum: 0
|
||||
-
|
||||
name: take
|
||||
in: query
|
||||
description: 'Number of records to take.'
|
||||
required: false
|
||||
schema:
|
||||
type: integer
|
||||
default: 10
|
||||
minimum: 1
|
||||
responses:
|
||||
'200':
|
||||
description: 'List application deployments by using the app uuid.'
|
||||
@@ -3377,6 +3413,15 @@ paths:
|
||||
summary: Update
|
||||
description: 'Update Project.'
|
||||
operationId: update-project-by-uuid
|
||||
parameters:
|
||||
-
|
||||
name: uuid
|
||||
in: path
|
||||
description: 'UUID of the project.'
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
format: uuid
|
||||
requestBody:
|
||||
description: 'Project updated.'
|
||||
required: true
|
||||
@@ -3630,6 +3675,14 @@ paths:
|
||||
$ref: '#/components/responses/400'
|
||||
'404':
|
||||
description: 'Private Key not found.'
|
||||
'422':
|
||||
description: 'Private Key is in use and cannot be deleted.'
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
properties:
|
||||
message: { type: string, example: 'Private Key is in use and cannot be deleted.' }
|
||||
type: object
|
||||
security:
|
||||
-
|
||||
bearerAuth: []
|
||||
@@ -4145,6 +4198,15 @@ paths:
|
||||
summary: Update
|
||||
description: 'Update service by UUID.'
|
||||
operationId: update-service-by-uuid
|
||||
parameters:
|
||||
-
|
||||
name: uuid
|
||||
in: path
|
||||
description: 'UUID of the service.'
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
format: uuid
|
||||
requestBody:
|
||||
description: 'Service updated.'
|
||||
required: true
|
||||
@@ -4769,6 +4831,10 @@ components:
|
||||
type: string
|
||||
nullable: true
|
||||
description: 'Ports mappings.'
|
||||
custom_network_aliases:
|
||||
type: string
|
||||
nullable: true
|
||||
description: 'Network aliases for Docker container.'
|
||||
base_directory:
|
||||
type: string
|
||||
description: 'Base directory for all commands.'
|
||||
|
Reference in New Issue
Block a user