From 5858ffdb55de373bdece332935092814592efc87 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 8 Nov 2023 08:45:58 +0100 Subject: [PATCH] feat(helm): add helm repository --- src/openapi.yaml | 6 ++++++ src/parameters/path/helmRepositoryId.yaml | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 src/parameters/path/helmRepositoryId.yaml diff --git a/src/openapi.yaml b/src/openapi.yaml index 99ec3b94..f128c291 100644 --- a/src/openapi.yaml +++ b/src/openapi.yaml @@ -406,6 +406,12 @@ paths: $ref: './resources/ContainerRegistryContainerStatus.yaml' /availableContainerRegistry: $ref: './resources/AvailableContainerRegistry.yaml' + /availableHelmRepository: + $ref: './resources/AvailableHelmRepository.yaml' + /organization/{organizationId}/helmRepository: + $ref: './resources/OrganizationHelmRepository.yaml' + /organization/{organizationId}/helmRepository/{helmRepositoryId}: + $ref: './resources/OrganizationHelmRepositoryRef.yaml' /project/{projectId}: $ref: './resources/Project.yaml' /project/{projectId}/deploymentRule: diff --git a/src/parameters/path/helmRepositoryId.yaml b/src/parameters/path/helmRepositoryId.yaml new file mode 100644 index 00000000..5ef8c822 --- /dev/null +++ b/src/parameters/path/helmRepositoryId.yaml @@ -0,0 +1,7 @@ +name: helmRepositoryId +in: path +description: Helm chart repository ID +required: true +schema: + type: string + format: uuid