From 13503061e672a7b488e3df9fe32aff83e001841e Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 2 Dec 2019 17:37:44 +0000 Subject: [PATCH] api: Fix OpenAPI specification entries Some renames from "cpu_count" were missing. Signed-off-by: Rob Bradford --- vmm/src/api/openapi/cloud-hypervisor.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vmm/src/api/openapi/cloud-hypervisor.yaml b/vmm/src/api/openapi/cloud-hypervisor.yaml index 2257cabd7..a92af5ca9 100644 --- a/vmm/src/api/openapi/cloud-hypervisor.yaml +++ b/vmm/src/api/openapi/cloud-hypervisor.yaml @@ -220,14 +220,14 @@ components: - boot_vcpus type: object properties: - cpu_count: + boot_vcpus: minimum: 1 default: 1 type: integer - max_vcpus type: object properties: - cpu_count: + max_vcpus: minimum: 1 default: 1 type: integer @@ -427,7 +427,7 @@ components: - desired_vcpus type: object properties: - cpu_count: + desired_vcpus: minimum: 1 default: 1 type: integer