From 69e7d53a5f0f9456086fb916628dc76b32ac9383 Mon Sep 17 00:00:00 2001 From: Pascal Scholz Date: Mon, 20 Jul 2026 15:02:41 +0200 Subject: [PATCH] openapi: Update OpenAPI doc to include `zone_updates` parameter Signed-off-by: Pascal Scholz On-behalf-of: SAP pascal.scholz@sap.com --- vmm/src/api/openapi/cloud-hypervisor.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/vmm/src/api/openapi/cloud-hypervisor.yaml b/vmm/src/api/openapi/cloud-hypervisor.yaml index 1547b8d36..e0a888f65 100644 --- a/vmm/src/api/openapi/cloud-hypervisor.yaml +++ b/vmm/src/api/openapi/cloud-hypervisor.yaml @@ -1500,6 +1500,10 @@ components: $ref: "#/components/schemas/MemoryRestoreMode" resume: type: boolean + zone_updates: + type: array + items: + $ref: "#/components/schemas/VmMemoryZoneUpdateData" ReceiveMigrationData: required: @@ -1516,6 +1520,10 @@ components: TLS is only supported with tcp:: receiver URLs. memory_mode: $ref: "#/components/schemas/MigrationMode" + zone_updates: + type: array + items: + $ref: "#/components/schemas/VmMemoryZoneUpdateData" MigrationMode: type: string @@ -1526,6 +1534,18 @@ components: destination resumes. Postcopy resumes the destination first and faults guest pages in on demand. + VmMemoryZoneUpdateData: + type: object + required: [id, host_numa_node] + properties: + id: + type: string + minLength: 1 + host_numa_node: + type: integer + format: uint32 + minimum: 0 + TimeoutStrategy: type: string enum: ["Cancel", "Ignore"]