Skip to content

Commit f34be62

Browse files
committed
move byoc features under /deployments route
1 parent bee22d2 commit f34be62

1 file changed

Lines changed: 5 additions & 56 deletions

File tree

openapi.yaml

Lines changed: 5 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -215,58 +215,7 @@ paths:
215215
summary: Get logs for a deployment
216216
tags:
217217
- Deployments
218-
/image-repositories:
219-
get:
220-
description: Retrieve all container image repositories available in your project
221-
responses:
222-
"200":
223-
description: List of repositories
224-
content:
225-
application/json:
226-
schema:
227-
$ref: "#/components/schemas/RepositoryListResponse"
228-
"500":
229-
description: Internal server error
230-
content:
231-
application/json:
232-
schema:
233-
type: object
234-
summary: Get the list of image repositories in your project
235-
tags:
236-
- Images
237-
/image-repositories/{id}/images:
238-
get:
239-
description: Retrieve all container images (tags) available in a specific repository
240-
parameters:
241-
- description: Repository ID
242-
in: path
243-
name: id
244-
required: true
245-
schema:
246-
type: string
247-
responses:
248-
"200":
249-
description: List of images
250-
content:
251-
application/json:
252-
schema:
253-
$ref: "#/components/schemas/ImageListResponse"
254-
"404":
255-
description: Repository not found
256-
content:
257-
application/json:
258-
schema:
259-
type: object
260-
"500":
261-
description: Internal server error
262-
content:
263-
application/json:
264-
schema:
265-
type: object
266-
summary: Get the list of images available under a repository
267-
tags:
268-
- Images
269-
/secrets:
218+
/deployments/secrets:
270219
get:
271220
description: Retrieve all secrets in your project
272221
responses:
@@ -316,7 +265,7 @@ paths:
316265
summary: Create a new secret
317266
tags:
318267
- Secrets
319-
/secrets/{id}:
268+
/deployments/secrets/{id}:
320269
delete:
321270
description: Delete an existing secret
322271
parameters:
@@ -423,7 +372,7 @@ paths:
423372
summary: Update a secret
424373
tags:
425374
- Secrets
426-
/storage/{filename}:
375+
/deployments/storage/{filename}:
427376
get:
428377
description: Download a file by redirecting to a signed URL
429378
parameters:
@@ -467,7 +416,7 @@ paths:
467416
summary: Download a file
468417
tags:
469418
- files
470-
/storage/volumes:
419+
/deployments/storage/volumes:
471420
get:
472421
description: Retrieve all volumes in your project
473422
responses:
@@ -517,7 +466,7 @@ paths:
517466
summary: Create a new volume
518467
tags:
519468
- Volumes
520-
/storage/volumes/{id}:
469+
/deployments/storage/volumes/{id}:
521470
delete:
522471
description: Delete an existing volume
523472
parameters:

0 commit comments

Comments
 (0)