From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 588F76A2EC for ; Thu, 4 Mar 2021 13:52:19 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 5675A1A620 for ; Thu, 4 Mar 2021 13:52:19 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 5D2251A5EB for ; Thu, 4 Mar 2021 13:52:17 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 27714462C4 for ; Thu, 4 Mar 2021 13:52:17 +0100 (CET) From: Stefan Reiter To: pve-devel@lists.proxmox.com Date: Thu, 4 Mar 2021 13:52:05 +0100 Message-Id: <20210304125209.24078-4-s.reiter@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20210304125209.24078-1-s.reiter@proxmox.com> References: <20210304125209.24078-1-s.reiter@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.024 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH qemu-server 3/7] api: add Machine module to query machine types X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Mar 2021 12:52:19 -0000 The file is provided by pve-qemu-kvm. Signed-off-by: Stefan Reiter --- PVE/API2/Qemu/Machine.pm | 49 ++++++++++++++++++++++++++++++++++++++++ PVE/API2/Qemu/Makefile | 2 +- 2 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 PVE/API2/Qemu/Machine.pm diff --git a/PVE/API2/Qemu/Machine.pm b/PVE/API2/Qemu/Machine.pm new file mode 100644 index 0000000..c0a8c57 --- /dev/null +++ b/PVE/API2/Qemu/Machine.pm @@ -0,0 +1,49 @@ +package PVE::API2::Qemu::Machine; + +use strict; +use warnings; + +use PVE::RESTHandler; +use PVE::JSONSchema qw(get_standard_option); +use PVE::Tools qw(file_get_contents); + +use base qw(PVE::RESTHandler); + +__PACKAGE__->register_method({ + name => 'types', + path => '', + method => 'GET', + proxyto => 'node', + description => "Get available QEMU/KVM machine types.", + permissions => { + user => 'all', + }, + parameters => { + additionalProperties => 0, + properties => { + node => get_standard_option('pve-node'), + }, + }, + returns => { + type => 'array', + items => { + type => 'object', + properties => { + name => { + type => 'string', + description => "Name of machine type.", + }, + }, + }, + }, + code => sub { + my $content = eval { + file_get_contents("/usr/share/kvm/machine-versions-x86_64"); + }; + die "could not get supported machine versions (try updating 'pve-qemu-kvm') - $@" if $@; + my @data = split(m/\n/, $content); + @data = map { { name => $_ } } @data; + return \@data; + }}); + +1; diff --git a/PVE/API2/Qemu/Makefile b/PVE/API2/Qemu/Makefile index f4b7be6..5d4abda 100644 --- a/PVE/API2/Qemu/Makefile +++ b/PVE/API2/Qemu/Makefile @@ -1,4 +1,4 @@ -SOURCES=Agent.pm CPU.pm +SOURCES=Agent.pm CPU.pm Machine.pm .PHONY: install install: -- 2.20.1