From 6f16687a34eea0631f4ad35b1be9e3d6adeca25b Mon Sep 17 00:00:00 2001 From: Blaine Kasten Date: Mon, 6 Apr 2026 11:24:00 -0500 Subject: [PATCH] chore: Update clusters list-regions api spec due to api change --- openapi.yaml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index af0edfc..a2b955b 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -8669,22 +8669,35 @@ components: type: object required: - name - - availability_zones + - supported_instance_types - driver_versions properties: name: description: Identifiable name of the region. type: string driver_versions: - description: List of supported identifiable driver versions available in the region. + description: List of supported identifiable cuda/nvidia driver versions pairs available in the region. type: array items: - type: string + $ref: '#/components/schemas/ClusterDriverVersionInfo' supported_instance_types: description: List of supported identifiable gpus available in the region. type: array items: type: string + ClusterDriverVersionInfo: + type: object + description: CUDA/NVIDIA driver versions pair available in the region to use in the create cluster request. + required: + - cuda_driver_version + - nvidia_driver_version + properties: + cuda_driver_version: + description: CUDA driver version. + type: string + nvidia_driver_version: + description: NVIDIA driver version. + type: string GPUClustersSharedVolumeCreateRequest: type: object required: