From nobody Fri Apr 26 19:59:41 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1531145098698862.8146197373742; Mon, 9 Jul 2018 07:04:58 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 15BEB30DED14; Mon, 9 Jul 2018 14:04:56 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D003460928; Mon, 9 Jul 2018 14:04:55 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id F0AFB4A465; Mon, 9 Jul 2018 14:04:54 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id w69E4qwI001235 for ; Mon, 9 Jul 2018 10:04:52 -0400 Received: by smtp.corp.redhat.com (Postfix) id 16803111DCE9; Mon, 9 Jul 2018 14:04:52 +0000 (UTC) Received: from angien.brq.redhat.com (unknown [10.43.2.136]) by smtp.corp.redhat.com (Postfix) with ESMTP id AF352111DCE8 for ; Mon, 9 Jul 2018 14:04:51 +0000 (UTC) From: Peter Krempa To: libvir-list@redhat.com Date: Mon, 9 Jul 2018 16:12:36 +0200 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.78 on 10.11.54.3 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 1/4] tests: qemu: Use qmp schema data from the qemucapabilities test X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.47]); Mon, 09 Jul 2018 14:04:56 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Add helpers that allow using the latest schema from the replies from an actual qemu which are recorded for the purpose of the qemucapabilities test instead of an unsynced copy stored in qemuqapischema.json. Signed-off-by: Peter Krempa Reviewed-by: J=EF=BF=BDn Tomko --- tests/qemumonitorjsontest.c | 13 +++++---- tests/testutilsqemuschema.c | 65 +++++++++++++++++++++++++++++++++++++++++= +--- tests/testutilsqemuschema.h | 3 +++ 3 files changed, 73 insertions(+), 8 deletions(-) diff --git a/tests/qemumonitorjsontest.c b/tests/qemumonitorjsontest.c index c85bcbfc3b..9039cef423 100644 --- a/tests/qemumonitorjsontest.c +++ b/tests/qemumonitorjsontest.c @@ -2860,7 +2860,8 @@ mymain(void) virQEMUDriver driver; testQemuMonitorJSONSimpleFuncData simpleFunc; struct testQAPISchemaData qapiData; - char *metaschema =3D NULL; + virJSONValuePtr metaschema =3D NULL; + char *metaschemastr =3D NULL; #if !WITH_YAJL fputs("libvirt not compiled with JSON support, skipping this test\n", = stderr); @@ -3062,20 +3063,22 @@ mymain(void) DO_TEST_QAPI_SCHEMA("alternate 2", "blockdev-add/arg-type", false, "{\"driver\":\"qcow2\",\"file\": 1234}"); - if (!(metaschema =3D virTestLoadFilePath("qemuqapischema.json", NULL))= ) { - VIR_TEST_VERBOSE("failed to load qapi schema\n"); + if (!(metaschema =3D testQEMUSchemaGetLatest()) || + !(metaschemastr =3D virJSONValueToString(metaschema, false))) { + VIR_TEST_VERBOSE("failed to load latest qapi schema\n"); ret =3D -1; goto cleanup; } DO_TEST_QAPI_SCHEMA("schema-meta", "query-qmp-schema/ret-type", true, - metaschema); + metaschemastr); #undef DO_TEST_QAPI_SCHEMA cleanup: - VIR_FREE(metaschema); + VIR_FREE(metaschemastr); + virJSONValueFree(metaschema); virHashFree(qapiData.schema); qemuTestDriverFree(&driver); return (ret =3D=3D 0) ? EXIT_SUCCESS : EXIT_FAILURE; diff --git a/tests/testutilsqemuschema.c b/tests/testutilsqemuschema.c index 46bbc4f1e5..1cec5265e1 100644 --- a/tests/testutilsqemuschema.c +++ b/tests/testutilsqemuschema.c @@ -17,6 +17,7 @@ */ #include #include "testutils.h" +#include "testutilsqemu.h" #include "testutilsqemuschema.h" #include "qemu/qemu_qapi.h" @@ -516,13 +517,71 @@ testQEMUSchemaValidate(virJSONValuePtr obj, } +/** + * testQEMUSchemaGetLatest: + * + * Returns the schema data as the qemu monitor would reply from the latest + * replies file used for qemucapabilitiestest for the x86_64 architecture. + */ +virJSONValuePtr +testQEMUSchemaGetLatest(void) +{ + char *capsLatestFile =3D NULL; + char *capsLatest =3D NULL; + char *schemaReply; + char *end; + virJSONValuePtr reply =3D NULL; + virJSONValuePtr schema =3D NULL; + + if (!(capsLatestFile =3D testQemuGetLatestCapsForArch(abs_srcdir "/qem= ucapabilitiesdata", + "x86_64", "replies= "))) { + VIR_TEST_VERBOSE("failed to find latest caps replies\n"); + return NULL; + } + + VIR_TEST_DEBUG("replies file: '%s'", capsLatestFile); + + if (virTestLoadFile(capsLatestFile, &capsLatest) < 0) + goto cleanup; + + if (!(schemaReply =3D strstr(capsLatest, "\"execute\": \"query-qmp-sch= ema\"")) || + !(schemaReply =3D strstr(schemaReply, "\n\n")) || + !(end =3D strstr(schemaReply + 2, "\n\n"))) { + VIR_TEST_VERBOSE("failed to find reply to 'query-qmp-schema' in '%= s'\n", + capsLatestFile); + goto cleanup; + } + + schemaReply +=3D 2; + *end =3D '\0'; + + if (!(reply =3D virJSONValueFromString(schemaReply))) { + VIR_TEST_VERBOSE("failed to parse 'query-qmp-schema' reply from '%= s'\n", + capsLatestFile); + goto cleanup; + } + + if (!(schema =3D virJSONValueObjectStealArray(reply, "return"))) { + VIR_TEST_VERBOSE("missing qapi schema data in reply in '%s'\n", + capsLatestFile); + goto cleanup; + } + + cleanup: + VIR_FREE(capsLatestFile); + VIR_FREE(capsLatest); + virJSONValueFree(reply); + return schema; +} + + virHashTablePtr testQEMUSchemaLoad(void) { - virJSONValuePtr schemajson; + virJSONValuePtr schema; - if (!(schemajson =3D virTestLoadFileJSON("qemuqapischema.json", NULL))) + if (!(schema =3D testQEMUSchemaGetLatest())) return NULL; - return virQEMUQAPISchemaConvert(schemajson); + return virQEMUQAPISchemaConvert(schema); } diff --git a/tests/testutilsqemuschema.h b/tests/testutilsqemuschema.h index cb383db174..c69435f420 100644 --- a/tests/testutilsqemuschema.h +++ b/tests/testutilsqemuschema.h @@ -26,5 +26,8 @@ testQEMUSchemaValidate(virJSONValuePtr obj, virHashTablePtr schema, virBufferPtr debug); +virJSONValuePtr +testQEMUSchemaGetLatest(void); + virHashTablePtr testQEMUSchemaLoad(void); --=20 2.16.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri Apr 26 19:59:41 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1531145110609397.0260842613727; Mon, 9 Jul 2018 07:05:10 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id EBE9087633; Mon, 9 Jul 2018 14:05:07 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 6AEF353B33; Mon, 9 Jul 2018 14:05:07 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id AE7A118037EF; Mon, 9 Jul 2018 14:05:06 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id w69E4r0j001245 for ; Mon, 9 Jul 2018 10:04:53 -0400 Received: by smtp.corp.redhat.com (Postfix) id 5AC81111DCE9; Mon, 9 Jul 2018 14:04:53 +0000 (UTC) Received: from angien.brq.redhat.com (unknown [10.43.2.136]) by smtp.corp.redhat.com (Postfix) with ESMTP id 51141111DCE8 for ; Mon, 9 Jul 2018 14:04:52 +0000 (UTC) From: Peter Krempa To: libvir-list@redhat.com Date: Mon, 9 Jul 2018 16:12:37 +0200 Message-Id: <4f183a575eaf9028af6590226d3a1761efbe7f74.1531145382.git.pkrempa@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.78 on 10.11.54.3 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 2/4] tests: remove qemuqapischema.json X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Mon, 09 Jul 2018 14:05:09 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" We now take the schema from the qemucapabilitiestest data. Signed-off-by: Peter Krempa Reviewed-by: J=EF=BF=BDn Tomko --- tests/Makefile.am | 1 - tests/qemuqapischema.json | 11364 ----------------------------------------= ---- 2 files changed, 11365 deletions(-) delete mode 100644 tests/qemuqapischema.json diff --git a/tests/Makefile.am b/tests/Makefile.am index f5872fa42b..21a6c823d9 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -132,7 +132,6 @@ EXTRA_DIST =3D \ qemuxml2startupxmloutdata \ qemuxml2xmloutdata \ qemustatusxml2xmldata \ - qemuqapischema.json \ qemumemlockdata \ secretxml2xmlin \ securityselinuxhelperdata \ diff --git a/tests/qemuqapischema.json b/tests/qemuqapischema.json deleted file mode 100644 index d95b5e536e..0000000000 --- a/tests/qemuqapischema.json +++ /dev/null @@ -1,11364 +0,0 @@ -[ - { - "name": "query-status", - "ret-type": "1", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "SHUTDOWN", - "meta-type": "event", - "arg-type": "2" - }, - { - "name": "POWERDOWN", - "meta-type": "event", - "arg-type": "0" - }, - { - "name": "RESET", - "meta-type": "event", - "arg-type": "3" - }, - { - "name": "STOP", - "meta-type": "event", - "arg-type": "0" - }, - { - "name": "RESUME", - "meta-type": "event", - "arg-type": "0" - }, - { - "name": "SUSPEND", - "meta-type": "event", - "arg-type": "0" - }, - { - "name": "SUSPEND_DISK", - "meta-type": "event", - "arg-type": "0" - }, - { - "name": "WAKEUP", - "meta-type": "event", - "arg-type": "0" - }, - { - "name": "WATCHDOG", - "meta-type": "event", - "arg-type": "4" - }, - { - "name": "watchdog-set-action", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "5" - }, - { - "name": "GUEST_PANICKED", - "meta-type": "event", - "arg-type": "6" - }, - { - "name": "x-block-latency-histogram-set", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "7" - }, - { - "name": "query-block", - "ret-type": "[8]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-blockstats", - "ret-type": "[10]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "9" - }, - { - "name": "query-block-jobs", - "ret-type": "[11]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "block_passwd", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "12" - }, - { - "name": "block_resize", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "13" - }, - { - "name": "blockdev-snapshot-sync", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "14" - }, - { - "name": "blockdev-snapshot", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "15" - }, - { - "name": "change-backing-file", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "16" - }, - { - "name": "block-commit", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "17" - }, - { - "name": "drive-backup", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "18" - }, - { - "name": "blockdev-backup", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "19" - }, - { - "name": "query-named-block-nodes", - "ret-type": "[20]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "drive-mirror", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "21" - }, - { - "name": "block-dirty-bitmap-add", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "22" - }, - { - "name": "block-dirty-bitmap-remove", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "23" - }, - { - "name": "block-dirty-bitmap-clear", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "23" - }, - { - "name": "x-debug-block-dirty-bitmap-sha256", - "ret-type": "24", - "allow-oob": false, - "meta-type": "command", - "arg-type": "23" - }, - { - "name": "blockdev-mirror", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "25" - }, - { - "name": "block_set_io_throttle", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "26" - }, - { - "name": "block-stream", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "27" - }, - { - "name": "block-job-set-speed", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "28" - }, - { - "name": "block-job-cancel", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "29" - }, - { - "name": "block-job-pause", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "30" - }, - { - "name": "block-job-resume", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "31" - }, - { - "name": "block-job-complete", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "32" - }, - { - "name": "block-job-dismiss", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "33" - }, - { - "name": "block-job-finalize", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "34" - }, - { - "name": "blockdev-add", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "35" - }, - { - "name": "blockdev-del", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "36" - }, - { - "name": "x-blockdev-create", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "37" - }, - { - "name": "blockdev-open-tray", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "38" - }, - { - "name": "blockdev-close-tray", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "39" - }, - { - "name": "blockdev-remove-medium", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "40" - }, - { - "name": "blockdev-insert-medium", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "41" - }, - { - "name": "blockdev-change-medium", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "42" - }, - { - "name": "BLOCK_IMAGE_CORRUPTED", - "meta-type": "event", - "arg-type": "43" - }, - { - "name": "BLOCK_IO_ERROR", - "meta-type": "event", - "arg-type": "44" - }, - { - "name": "BLOCK_JOB_COMPLETED", - "meta-type": "event", - "arg-type": "45" - }, - { - "name": "BLOCK_JOB_CANCELLED", - "meta-type": "event", - "arg-type": "46" - }, - { - "name": "BLOCK_JOB_ERROR", - "meta-type": "event", - "arg-type": "47" - }, - { - "name": "BLOCK_JOB_READY", - "meta-type": "event", - "arg-type": "48" - }, - { - "name": "BLOCK_JOB_PENDING", - "meta-type": "event", - "arg-type": "49" - }, - { - "name": "BLOCK_WRITE_THRESHOLD", - "meta-type": "event", - "arg-type": "50" - }, - { - "name": "block-set-write-threshold", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "51" - }, - { - "name": "x-blockdev-change", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "52" - }, - { - "name": "x-blockdev-set-iothread", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "53" - }, - { - "name": "blockdev-snapshot-internal-sync", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "54" - }, - { - "name": "blockdev-snapshot-delete-internal-sync", - "ret-type": "56", - "allow-oob": false, - "meta-type": "command", - "arg-type": "55" - }, - { - "name": "eject", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "57" - }, - { - "name": "nbd-server-start", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "58" - }, - { - "name": "nbd-server-add", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "59" - }, - { - "name": "nbd-server-remove", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "60" - }, - { - "name": "nbd-server-stop", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "DEVICE_TRAY_MOVED", - "meta-type": "event", - "arg-type": "61" - }, - { - "name": "QUORUM_FAILURE", - "meta-type": "event", - "arg-type": "62" - }, - { - "name": "QUORUM_REPORT_BAD", - "meta-type": "event", - "arg-type": "63" - }, - { - "name": "query-chardev", - "ret-type": "[64]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-chardev-backends", - "ret-type": "[65]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "ringbuf-write", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "66" - }, - { - "name": "ringbuf-read", - "ret-type": "str", - "allow-oob": false, - "meta-type": "command", - "arg-type": "67" - }, - { - "name": "chardev-add", - "ret-type": "69", - "allow-oob": false, - "meta-type": "command", - "arg-type": "68" - }, - { - "name": "chardev-change", - "ret-type": "69", - "allow-oob": false, - "meta-type": "command", - "arg-type": "70" - }, - { - "name": "chardev-remove", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "71" - }, - { - "name": "chardev-send-break", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "72" - }, - { - "name": "VSERPORT_CHANGE", - "meta-type": "event", - "arg-type": "73" - }, - { - "name": "set_link", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "74" - }, - { - "name": "netdev_add", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "75" - }, - { - "name": "netdev_del", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "76" - }, - { - "name": "query-rx-filter", - "ret-type": "[78]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "77" - }, - { - "name": "NIC_RX_FILTER_CHANGED", - "meta-type": "event", - "arg-type": "79" - }, - { - "name": "query-rocker", - "ret-type": "81", - "allow-oob": false, - "meta-type": "command", - "arg-type": "80" - }, - { - "name": "query-rocker-ports", - "ret-type": "[83]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "82" - }, - { - "name": "query-rocker-of-dpa-flows", - "ret-type": "[85]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "84" - }, - { - "name": "query-rocker-of-dpa-groups", - "ret-type": "[87]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "86" - }, - { - "name": "query-tpm-models", - "ret-type": "[88]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-tpm-types", - "ret-type": "[89]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-tpm", - "ret-type": "[90]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "set_password", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "91" - }, - { - "name": "expire_password", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "92" - }, - { - "name": "screendump", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "93" - }, - { - "name": "query-spice", - "ret-type": "94", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "SPICE_CONNECTED", - "meta-type": "event", - "arg-type": "95" - }, - { - "name": "SPICE_INITIALIZED", - "meta-type": "event", - "arg-type": "96" - }, - { - "name": "SPICE_DISCONNECTED", - "meta-type": "event", - "arg-type": "97" - }, - { - "name": "SPICE_MIGRATE_COMPLETED", - "meta-type": "event", - "arg-type": "0" - }, - { - "name": "query-vnc", - "ret-type": "98", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-vnc-servers", - "ret-type": "[99]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "change-vnc-password", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "100" - }, - { - "name": "VNC_CONNECTED", - "meta-type": "event", - "arg-type": "101" - }, - { - "name": "VNC_INITIALIZED", - "meta-type": "event", - "arg-type": "102" - }, - { - "name": "VNC_DISCONNECTED", - "meta-type": "event", - "arg-type": "103" - }, - { - "name": "query-mice", - "ret-type": "[104]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "send-key", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "105" - }, - { - "name": "input-send-event", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "106" - }, - { - "name": "query-migrate", - "ret-type": "107", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "migrate-set-capabilities", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "108" - }, - { - "name": "query-migrate-capabilities", - "ret-type": "[109]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "migrate-set-parameters", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "110" - }, - { - "name": "query-migrate-parameters", - "ret-type": "111", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "client_migrate_info", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "112" - }, - { - "name": "migrate-start-postcopy", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "MIGRATION", - "meta-type": "event", - "arg-type": "113" - }, - { - "name": "MIGRATION_PASS", - "meta-type": "event", - "arg-type": "114" - }, - { - "name": "x-colo-lost-heartbeat", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "migrate_cancel", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "migrate-continue", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "115" - }, - { - "name": "migrate_set_downtime", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "116" - }, - { - "name": "migrate_set_speed", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "117" - }, - { - "name": "migrate-set-cache-size", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "118" - }, - { - "name": "query-migrate-cache-size", - "ret-type": "int", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "migrate", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "119" - }, - { - "name": "migrate-incoming", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "120" - }, - { - "name": "xen-save-devices-state", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "121" - }, - { - "name": "xen-set-replication", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "122" - }, - { - "name": "query-xen-replication-status", - "ret-type": "123", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "xen-colo-do-checkpoint", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "transaction", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "124" - }, - { - "name": "trace-event-get-state", - "ret-type": "[126]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "125" - }, - { - "name": "trace-event-set-state", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "127" - }, - { - "name": "query-qmp-schema", - "ret-type": "[128]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "qmp_capabilities", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "129" - }, - { - "name": "query-version", - "ret-type": "130", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-commands", - "ret-type": "[131]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "add_client", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "132" - }, - { - "name": "query-name", - "ret-type": "133", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-kvm", - "ret-type": "134", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-uuid", - "ret-type": "135", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-events", - "ret-type": "[136]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-cpus", - "ret-type": "[137]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-cpus-fast", - "ret-type": "[138]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-iothreads", - "ret-type": "[139]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-balloon", - "ret-type": "140", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "BALLOON_CHANGE", - "meta-type": "event", - "arg-type": "141" - }, - { - "name": "query-pci", - "ret-type": "[142]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "quit", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "stop", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "system_reset", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "system_powerdown", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "cpu-add", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "143" - }, - { - "name": "memsave", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "144" - }, - { - "name": "pmemsave", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "145" - }, - { - "name": "cont", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "system_wakeup", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "inject-nmi", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "balloon", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "146" - }, - { - "name": "human-monitor-command", - "ret-type": "str", - "allow-oob": false, - "meta-type": "command", - "arg-type": "147" - }, - { - "name": "qom-list", - "ret-type": "[149]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "148" - }, - { - "name": "qom-get", - "ret-type": "any", - "allow-oob": false, - "meta-type": "command", - "arg-type": "150" - }, - { - "name": "qom-set", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "151" - }, - { - "name": "change", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "152" - }, - { - "name": "qom-list-types", - "ret-type": "[154]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "153" - }, - { - "name": "device-list-properties", - "ret-type": "[149]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "155" - }, - { - "name": "qom-list-properties", - "ret-type": "[149]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "156" - }, - { - "name": "xen-set-global-dirty-log", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "157" - }, - { - "name": "device_add", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "158" - }, - { - "name": "device_del", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "159" - }, - { - "name": "DEVICE_DELETED", - "meta-type": "event", - "arg-type": "160" - }, - { - "name": "dump-guest-memory", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "161" - }, - { - "name": "query-dump", - "ret-type": "162", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "DUMP_COMPLETED", - "meta-type": "event", - "arg-type": "163" - }, - { - "name": "query-dump-guest-memory-capability", - "ret-type": "164", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "dump-skeys", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "165" - }, - { - "name": "object-add", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "166" - }, - { - "name": "object-del", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "167" - }, - { - "name": "getfd", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "168" - }, - { - "name": "closefd", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "169" - }, - { - "name": "query-machines", - "ret-type": "[170]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-memory-size-summary", - "ret-type": "171", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-cpu-definitions", - "ret-type": "[172]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-cpu-model-expansion", - "ret-type": "174", - "allow-oob": false, - "meta-type": "command", - "arg-type": "173" - }, - { - "name": "query-cpu-model-comparison", - "ret-type": "176", - "allow-oob": false, - "meta-type": "command", - "arg-type": "175" - }, - { - "name": "query-cpu-model-baseline", - "ret-type": "178", - "allow-oob": false, - "meta-type": "command", - "arg-type": "177" - }, - { - "name": "add-fd", - "ret-type": "180", - "allow-oob": false, - "meta-type": "command", - "arg-type": "179" - }, - { - "name": "remove-fd", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "181" - }, - { - "name": "query-fdsets", - "ret-type": "[182]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-target", - "ret-type": "183", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-command-line-options", - "ret-type": "[185]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "184" - }, - { - "name": "query-memdev", - "ret-type": "[186]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-memory-devices", - "ret-type": "[187]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "MEM_UNPLUG_ERROR", - "meta-type": "event", - "arg-type": "188" - }, - { - "name": "query-acpi-ospm-status", - "ret-type": "[189]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "ACPI_DEVICE_OST", - "meta-type": "event", - "arg-type": "190" - }, - { - "name": "rtc-reset-reinjection", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "RTC_CHANGE", - "meta-type": "event", - "arg-type": "191" - }, - { - "name": "xen-load-devices-state", - "ret-type": "0", - "allow-oob": false, - "meta-type": "command", - "arg-type": "192" - }, - { - "name": "query-gic-capabilities", - "ret-type": "[193]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-hotpluggable-cpus", - "ret-type": "[194]", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-vm-generation-id", - "ret-type": "195", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-sev", - "ret-type": "196", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-sev-launch-measure", - "ret-type": "197", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "query-sev-capabilities", - "ret-type": "198", - "allow-oob": false, - "meta-type": "command", - "arg-type": "0" - }, - { - "name": "COMMAND_DROPPED", - "meta-type": "event", - "arg-type": "199" - }, - { - "name": "x-oob-test", - "ret-type": "0", - "allow-oob": true, - "meta-type": "command", - "arg-type": "200" - }, - { - "name": "0", - "members": [ - ], - "meta-type": "object" - }, - { - "name": "1", - "members": [ - { - "name": "running", - "type": "bool" - }, - { - "name": "singlestep", - "type": "bool" - }, - { - "name": "status", - "type": "201" - } - ], - "meta-type": "object" - }, - { - "name": "2", - "members": [ - { - "name": "guest", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "3", - "members": [ - { - "name": "guest", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "4", - "members": [ - { - "name": "action", - "type": "202" - } - ], - "meta-type": "object" - }, - { - "name": "5", - "members": [ - { - "name": "action", - "type": "202" - } - ], - "meta-type": "object" - }, - { - "name": "6", - "members": [ - { - "name": "action", - "type": "203" - }, - { - "name": "info", - "default": null, - "type": "204" - } - ], - "meta-type": "object" - }, - { - "name": "7", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "boundaries", - "default": null, - "type": "[int]" - }, - { - "name": "boundaries-read", - "default": null, - "type": "[int]" - }, - { - "name": "boundaries-write", - "default": null, - "type": "[int]" - }, - { - "name": "boundaries-flush", - "default": null, - "type": "[int]" - } - ], - "meta-type": "object" - }, - { - "name": "[8]", - "element-type": "8", - "meta-type": "array" - }, - { - "name": "8", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "qdev", - "default": null, - "type": "str" - }, - { - "name": "type", - "type": "str" - }, - { - "name": "removable", - "type": "bool" - }, - { - "name": "locked", - "type": "bool" - }, - { - "name": "inserted", - "default": null, - "type": "20" - }, - { - "name": "tray_open", - "default": null, - "type": "bool" - }, - { - "name": "io-status", - "default": null, - "type": "205" - }, - { - "name": "dirty-bitmaps", - "default": null, - "type": "[206]" - } - ], - "meta-type": "object" - }, - { - "name": "9", - "members": [ - { - "name": "query-nodes", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "[10]", - "element-type": "10", - "meta-type": "array" - }, - { - "name": "10", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "node-name", - "default": null, - "type": "str" - }, - { - "name": "stats", - "type": "207" - }, - { - "name": "parent", - "default": null, - "type": "10" - }, - { - "name": "backing", - "default": null, - "type": "10" - } - ], - "meta-type": "object" - }, - { - "name": "[11]", - "element-type": "11", - "meta-type": "array" - }, - { - "name": "11", - "members": [ - { - "name": "type", - "type": "str" - }, - { - "name": "device", - "type": "str" - }, - { - "name": "len", - "type": "int" - }, - { - "name": "offset", - "type": "int" - }, - { - "name": "busy", - "type": "bool" - }, - { - "name": "paused", - "type": "bool" - }, - { - "name": "speed", - "type": "int" - }, - { - "name": "io-status", - "type": "205" - }, - { - "name": "ready", - "type": "bool" - }, - { - "name": "status", - "type": "208" - }, - { - "name": "auto-finalize", - "type": "bool" - }, - { - "name": "auto-dismiss", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "12", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "node-name", - "default": null, - "type": "str" - }, - { - "name": "password", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "13", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "node-name", - "default": null, - "type": "str" - }, - { - "name": "size", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "14", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "node-name", - "default": null, - "type": "str" - }, - { - "name": "snapshot-file", - "type": "str" - }, - { - "name": "snapshot-node-name", - "default": null, - "type": "str" - }, - { - "name": "format", - "default": null, - "type": "str" - }, - { - "name": "mode", - "default": null, - "type": "209" - } - ], - "meta-type": "object" - }, - { - "name": "15", - "members": [ - { - "name": "node", - "type": "str" - }, - { - "name": "overlay", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "16", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "image-node-name", - "type": "str" - }, - { - "name": "backing-file", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "17", - "members": [ - { - "name": "job-id", - "default": null, - "type": "str" - }, - { - "name": "device", - "type": "str" - }, - { - "name": "base", - "default": null, - "type": "str" - }, - { - "name": "top", - "default": null, - "type": "str" - }, - { - "name": "backing-file", - "default": null, - "type": "str" - }, - { - "name": "speed", - "default": null, - "type": "int" - }, - { - "name": "filter-node-name", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "18", - "members": [ - { - "name": "job-id", - "default": null, - "type": "str" - }, - { - "name": "device", - "type": "str" - }, - { - "name": "target", - "type": "str" - }, - { - "name": "format", - "default": null, - "type": "str" - }, - { - "name": "sync", - "type": "210" - }, - { - "name": "mode", - "default": null, - "type": "209" - }, - { - "name": "speed", - "default": null, - "type": "int" - }, - { - "name": "bitmap", - "default": null, - "type": "str" - }, - { - "name": "compress", - "default": null, - "type": "bool" - }, - { - "name": "on-source-error", - "default": null, - "type": "211" - }, - { - "name": "on-target-error", - "default": null, - "type": "211" - }, - { - "name": "auto-finalize", - "default": null, - "type": "bool" - }, - { - "name": "auto-dismiss", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "19", - "members": [ - { - "name": "job-id", - "default": null, - "type": "str" - }, - { - "name": "device", - "type": "str" - }, - { - "name": "target", - "type": "str" - }, - { - "name": "sync", - "type": "210" - }, - { - "name": "speed", - "default": null, - "type": "int" - }, - { - "name": "compress", - "default": null, - "type": "bool" - }, - { - "name": "on-source-error", - "default": null, - "type": "211" - }, - { - "name": "on-target-error", - "default": null, - "type": "211" - }, - { - "name": "auto-finalize", - "default": null, - "type": "bool" - }, - { - "name": "auto-dismiss", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "[20]", - "element-type": "20", - "meta-type": "array" - }, - { - "name": "20", - "members": [ - { - "name": "file", - "type": "str" - }, - { - "name": "node-name", - "default": null, - "type": "str" - }, - { - "name": "ro", - "type": "bool" - }, - { - "name": "drv", - "type": "str" - }, - { - "name": "backing_file", - "default": null, - "type": "str" - }, - { - "name": "backing_file_depth", - "type": "int" - }, - { - "name": "encrypted", - "type": "bool" - }, - { - "name": "encryption_key_missing", - "type": "bool" - }, - { - "name": "detect_zeroes", - "type": "212" - }, - { - "name": "bps", - "type": "int" - }, - { - "name": "bps_rd", - "type": "int" - }, - { - "name": "bps_wr", - "type": "int" - }, - { - "name": "iops", - "type": "int" - }, - { - "name": "iops_rd", - "type": "int" - }, - { - "name": "iops_wr", - "type": "int" - }, - { - "name": "image", - "type": "213" - }, - { - "name": "bps_max", - "default": null, - "type": "int" - }, - { - "name": "bps_rd_max", - "default": null, - "type": "int" - }, - { - "name": "bps_wr_max", - "default": null, - "type": "int" - }, - { - "name": "iops_max", - "default": null, - "type": "int" - }, - { - "name": "iops_rd_max", - "default": null, - "type": "int" - }, - { - "name": "iops_wr_max", - "default": null, - "type": "int" - }, - { - "name": "bps_max_length", - "default": null, - "type": "int" - }, - { - "name": "bps_rd_max_length", - "default": null, - "type": "int" - }, - { - "name": "bps_wr_max_length", - "default": null, - "type": "int" - }, - { - "name": "iops_max_length", - "default": null, - "type": "int" - }, - { - "name": "iops_rd_max_length", - "default": null, - "type": "int" - }, - { - "name": "iops_wr_max_length", - "default": null, - "type": "int" - }, - { - "name": "iops_size", - "default": null, - "type": "int" - }, - { - "name": "group", - "default": null, - "type": "str" - }, - { - "name": "cache", - "type": "214" - }, - { - "name": "write_threshold", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "21", - "members": [ - { - "name": "job-id", - "default": null, - "type": "str" - }, - { - "name": "device", - "type": "str" - }, - { - "name": "target", - "type": "str" - }, - { - "name": "format", - "default": null, - "type": "str" - }, - { - "name": "node-name", - "default": null, - "type": "str" - }, - { - "name": "replaces", - "default": null, - "type": "str" - }, - { - "name": "sync", - "type": "210" - }, - { - "name": "mode", - "default": null, - "type": "209" - }, - { - "name": "speed", - "default": null, - "type": "int" - }, - { - "name": "granularity", - "default": null, - "type": "int" - }, - { - "name": "buf-size", - "default": null, - "type": "int" - }, - { - "name": "on-source-error", - "default": null, - "type": "211" - }, - { - "name": "on-target-error", - "default": null, - "type": "211" - }, - { - "name": "unmap", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "22", - "members": [ - { - "name": "node", - "type": "str" - }, - { - "name": "name", - "type": "str" - }, - { - "name": "granularity", - "default": null, - "type": "int" - }, - { - "name": "persistent", - "default": null, - "type": "bool" - }, - { - "name": "autoload", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "23", - "members": [ - { - "name": "node", - "type": "str" - }, - { - "name": "name", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "24", - "members": [ - { - "name": "sha256", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "25", - "members": [ - { - "name": "job-id", - "default": null, - "type": "str" - }, - { - "name": "device", - "type": "str" - }, - { - "name": "target", - "type": "str" - }, - { - "name": "replaces", - "default": null, - "type": "str" - }, - { - "name": "sync", - "type": "210" - }, - { - "name": "speed", - "default": null, - "type": "int" - }, - { - "name": "granularity", - "default": null, - "type": "int" - }, - { - "name": "buf-size", - "default": null, - "type": "int" - }, - { - "name": "on-source-error", - "default": null, - "type": "211" - }, - { - "name": "on-target-error", - "default": null, - "type": "211" - }, - { - "name": "filter-node-name", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "26", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "id", - "default": null, - "type": "str" - }, - { - "name": "bps", - "type": "int" - }, - { - "name": "bps_rd", - "type": "int" - }, - { - "name": "bps_wr", - "type": "int" - }, - { - "name": "iops", - "type": "int" - }, - { - "name": "iops_rd", - "type": "int" - }, - { - "name": "iops_wr", - "type": "int" - }, - { - "name": "bps_max", - "default": null, - "type": "int" - }, - { - "name": "bps_rd_max", - "default": null, - "type": "int" - }, - { - "name": "bps_wr_max", - "default": null, - "type": "int" - }, - { - "name": "iops_max", - "default": null, - "type": "int" - }, - { - "name": "iops_rd_max", - "default": null, - "type": "int" - }, - { - "name": "iops_wr_max", - "default": null, - "type": "int" - }, - { - "name": "bps_max_length", - "default": null, - "type": "int" - }, - { - "name": "bps_rd_max_length", - "default": null, - "type": "int" - }, - { - "name": "bps_wr_max_length", - "default": null, - "type": "int" - }, - { - "name": "iops_max_length", - "default": null, - "type": "int" - }, - { - "name": "iops_rd_max_length", - "default": null, - "type": "int" - }, - { - "name": "iops_wr_max_length", - "default": null, - "type": "int" - }, - { - "name": "iops_size", - "default": null, - "type": "int" - }, - { - "name": "group", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "27", - "members": [ - { - "name": "job-id", - "default": null, - "type": "str" - }, - { - "name": "device", - "type": "str" - }, - { - "name": "base", - "default": null, - "type": "str" - }, - { - "name": "base-node", - "default": null, - "type": "str" - }, - { - "name": "backing-file", - "default": null, - "type": "str" - }, - { - "name": "speed", - "default": null, - "type": "int" - }, - { - "name": "on-error", - "default": null, - "type": "211" - } - ], - "meta-type": "object" - }, - { - "name": "28", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "speed", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "29", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "force", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "30", - "members": [ - { - "name": "device", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "31", - "members": [ - { - "name": "device", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "32", - "members": [ - { - "name": "device", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "33", - "members": [ - { - "name": "id", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "34", - "members": [ - { - "name": "id", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "35", - "tag": "driver", - "variants": [ - { - "case": "blkdebug", - "type": "218" - }, - { - "case": "blkverify", - "type": "219" - }, - { - "case": "bochs", - "type": "220" - }, - { - "case": "cloop", - "type": "220" - }, - { - "case": "dmg", - "type": "220" - }, - { - "case": "file", - "type": "221" - }, - { - "case": "ftp", - "type": "222" - }, - { - "case": "ftps", - "type": "223" - }, - { - "case": "gluster", - "type": "224" - }, - { - "case": "host_cdrom", - "type": "221" - }, - { - "case": "host_device", - "type": "221" - }, - { - "case": "http", - "type": "225" - }, - { - "case": "https", - "type": "226" - }, - { - "case": "iscsi", - "type": "227" - }, - { - "case": "luks", - "type": "228" - }, - { - "case": "nbd", - "type": "229" - }, - { - "case": "nfs", - "type": "230" - }, - { - "case": "null-aio", - "type": "231" - }, - { - "case": "null-co", - "type": "231" - }, - { - "case": "nvme", - "type": "232" - }, - { - "case": "parallels", - "type": "220" - }, - { - "case": "qcow2", - "type": "233" - }, - { - "case": "qcow", - "type": "234" - }, - { - "case": "qed", - "type": "235" - }, - { - "case": "quorum", - "type": "236" - }, - { - "case": "raw", - "type": "237" - }, - { - "case": "rbd", - "type": "238" - }, - { - "case": "replication", - "type": "239" - }, - { - "case": "sheepdog", - "type": "240" - }, - { - "case": "ssh", - "type": "241" - }, - { - "case": "throttle", - "type": "242" - }, - { - "case": "vdi", - "type": "220" - }, - { - "case": "vhdx", - "type": "220" - }, - { - "case": "vmdk", - "type": "235" - }, - { - "case": "vpc", - "type": "220" - }, - { - "case": "vvfat", - "type": "243" - }, - { - "case": "vxhs", - "type": "244" - } - ], - "members": [ - { - "name": "driver", - "type": "215" - }, - { - "name": "node-name", - "default": null, - "type": "str" - }, - { - "name": "discard", - "default": null, - "type": "216" - }, - { - "name": "cache", - "default": null, - "type": "217" - }, - { - "name": "read-only", - "default": null, - "type": "bool" - }, - { - "name": "force-share", - "default": null, - "type": "bool" - }, - { - "name": "detect-zeroes", - "default": null, - "type": "212" - } - ], - "meta-type": "object" - }, - { - "name": "36", - "members": [ - { - "name": "node-name", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "37", - "tag": "driver", - "variants": [ - { - "case": "blkdebug", - "type": "245" - }, - { - "case": "blkverify", - "type": "245" - }, - { - "case": "bochs", - "type": "245" - }, - { - "case": "cloop", - "type": "245" - }, - { - "case": "dmg", - "type": "245" - }, - { - "case": "file", - "type": "246" - }, - { - "case": "ftp", - "type": "245" - }, - { - "case": "ftps", - "type": "245" - }, - { - "case": "gluster", - "type": "247" - }, - { - "case": "host_cdrom", - "type": "245" - }, - { - "case": "host_device", - "type": "245" - }, - { - "case": "http", - "type": "245" - }, - { - "case": "https", - "type": "245" - }, - { - "case": "iscsi", - "type": "245" - }, - { - "case": "luks", - "type": "248" - }, - { - "case": "nbd", - "type": "245" - }, - { - "case": "nfs", - "type": "249" - }, - { - "case": "null-aio", - "type": "245" - }, - { - "case": "null-co", - "type": "245" - }, - { - "case": "nvme", - "type": "245" - }, - { - "case": "parallels", - "type": "250" - }, - { - "case": "qcow", - "type": "251" - }, - { - "case": "qcow2", - "type": "252" - }, - { - "case": "qed", - "type": "253" - }, - { - "case": "quorum", - "type": "245" - }, - { - "case": "raw", - "type": "245" - }, - { - "case": "rbd", - "type": "254" - }, - { - "case": "replication", - "type": "245" - }, - { - "case": "sheepdog", - "type": "255" - }, - { - "case": "ssh", - "type": "256" - }, - { - "case": "throttle", - "type": "245" - }, - { - "case": "vdi", - "type": "257" - }, - { - "case": "vhdx", - "type": "258" - }, - { - "case": "vmdk", - "type": "245" - }, - { - "case": "vpc", - "type": "259" - }, - { - "case": "vvfat", - "type": "245" - }, - { - "case": "vxhs", - "type": "245" - } - ], - "members": [ - { - "name": "driver", - "type": "215" - } - ], - "meta-type": "object" - }, - { - "name": "38", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "id", - "default": null, - "type": "str" - }, - { - "name": "force", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "39", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "id", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "40", - "members": [ - { - "name": "id", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "41", - "members": [ - { - "name": "id", - "type": "str" - }, - { - "name": "node-name", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "42", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "id", - "default": null, - "type": "str" - }, - { - "name": "filename", - "type": "str" - }, - { - "name": "format", - "default": null, - "type": "str" - }, - { - "name": "read-only-mode", - "default": null, - "type": "260" - } - ], - "meta-type": "object" - }, - { - "name": "43", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "node-name", - "default": null, - "type": "str" - }, - { - "name": "msg", - "type": "str" - }, - { - "name": "offset", - "default": null, - "type": "int" - }, - { - "name": "size", - "default": null, - "type": "int" - }, - { - "name": "fatal", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "44", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "node-name", - "default": null, - "type": "str" - }, - { - "name": "operation", - "type": "261" - }, - { - "name": "action", - "type": "262" - }, - { - "name": "nospace", - "default": null, - "type": "bool" - }, - { - "name": "reason", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "45", - "members": [ - { - "name": "type", - "type": "263" - }, - { - "name": "device", - "type": "str" - }, - { - "name": "len", - "type": "int" - }, - { - "name": "offset", - "type": "int" - }, - { - "name": "speed", - "type": "int" - }, - { - "name": "error", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "46", - "members": [ - { - "name": "type", - "type": "263" - }, - { - "name": "device", - "type": "str" - }, - { - "name": "len", - "type": "int" - }, - { - "name": "offset", - "type": "int" - }, - { - "name": "speed", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "47", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "operation", - "type": "261" - }, - { - "name": "action", - "type": "262" - } - ], - "meta-type": "object" - }, - { - "name": "48", - "members": [ - { - "name": "type", - "type": "263" - }, - { - "name": "device", - "type": "str" - }, - { - "name": "len", - "type": "int" - }, - { - "name": "offset", - "type": "int" - }, - { - "name": "speed", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "49", - "members": [ - { - "name": "type", - "type": "263" - }, - { - "name": "id", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "50", - "members": [ - { - "name": "node-name", - "type": "str" - }, - { - "name": "amount-exceeded", - "type": "int" - }, - { - "name": "write-threshold", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "51", - "members": [ - { - "name": "node-name", - "type": "str" - }, - { - "name": "write-threshold", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "52", - "members": [ - { - "name": "parent", - "type": "str" - }, - { - "name": "child", - "default": null, - "type": "str" - }, - { - "name": "node", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "53", - "members": [ - { - "name": "node-name", - "type": "str" - }, - { - "name": "iothread", - "type": "264" - }, - { - "name": "force", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "54", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "name", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "55", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "id", - "default": null, - "type": "str" - }, - { - "name": "name", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "56", - "members": [ - { - "name": "id", - "type": "str" - }, - { - "name": "name", - "type": "str" - }, - { - "name": "vm-state-size", - "type": "int" - }, - { - "name": "date-sec", - "type": "int" - }, - { - "name": "date-nsec", - "type": "int" - }, - { - "name": "vm-clock-sec", - "type": "int" - }, - { - "name": "vm-clock-nsec", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "57", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "id", - "default": null, - "type": "str" - }, - { - "name": "force", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "58", - "members": [ - { - "name": "addr", - "type": "265" - }, - { - "name": "tls-creds", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "59", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "name", - "default": null, - "type": "str" - }, - { - "name": "writable", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "60", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "mode", - "default": null, - "type": "266" - } - ], - "meta-type": "object" - }, - { - "name": "61", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "id", - "type": "str" - }, - { - "name": "tray-open", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "62", - "members": [ - { - "name": "reference", - "type": "str" - }, - { - "name": "sector-num", - "type": "int" - }, - { - "name": "sectors-count", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "63", - "members": [ - { - "name": "type", - "type": "267" - }, - { - "name": "error", - "default": null, - "type": "str" - }, - { - "name": "node-name", - "type": "str" - }, - { - "name": "sector-num", - "type": "int" - }, - { - "name": "sectors-count", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "[64]", - "element-type": "64", - "meta-type": "array" - }, - { - "name": "64", - "members": [ - { - "name": "label", - "type": "str" - }, - { - "name": "filename", - "type": "str" - }, - { - "name": "frontend-open", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "[65]", - "element-type": "65", - "meta-type": "array" - }, - { - "name": "65", - "members": [ - { - "name": "name", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "66", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "data", - "type": "str" - }, - { - "name": "format", - "default": null, - "type": "268" - } - ], - "meta-type": "object" - }, - { - "name": "67", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "format", - "default": null, - "type": "268" - } - ], - "meta-type": "object" - }, - { - "name": "str", - "json-type": "string", - "meta-type": "builtin" - }, - { - "name": "68", - "members": [ - { - "name": "id", - "type": "str" - }, - { - "name": "backend", - "type": "269" - } - ], - "meta-type": "object" - }, - { - "name": "69", - "members": [ - { - "name": "pty", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "70", - "members": [ - { - "name": "id", - "type": "str" - }, - { - "name": "backend", - "type": "269" - } - ], - "meta-type": "object" - }, - { - "name": "71", - "members": [ - { - "name": "id", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "72", - "members": [ - { - "name": "id", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "73", - "members": [ - { - "name": "id", - "type": "str" - }, - { - "name": "open", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "74", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "up", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "75", - "members": [ - { - "name": "type", - "type": "str" - }, - { - "name": "id", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "76", - "members": [ - { - "name": "id", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "77", - "members": [ - { - "name": "name", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[78]", - "element-type": "78", - "meta-type": "array" - }, - { - "name": "78", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "promiscuous", - "type": "bool" - }, - { - "name": "multicast", - "type": "270" - }, - { - "name": "unicast", - "type": "270" - }, - { - "name": "vlan", - "type": "270" - }, - { - "name": "broadcast-allowed", - "type": "bool" - }, - { - "name": "multicast-overflow", - "type": "bool" - }, - { - "name": "unicast-overflow", - "type": "bool" - }, - { - "name": "main-mac", - "type": "str" - }, - { - "name": "vlan-table", - "type": "[int]" - }, - { - "name": "unicast-table", - "type": "[str]" - }, - { - "name": "multicast-table", - "type": "[str]" - } - ], - "meta-type": "object" - }, - { - "name": "79", - "members": [ - { - "name": "name", - "default": null, - "type": "str" - }, - { - "name": "path", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "80", - "members": [ - { - "name": "name", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "81", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "id", - "type": "int" - }, - { - "name": "ports", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "82", - "members": [ - { - "name": "name", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[83]", - "element-type": "83", - "meta-type": "array" - }, - { - "name": "83", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "enabled", - "type": "bool" - }, - { - "name": "link-up", - "type": "bool" - }, - { - "name": "speed", - "type": "int" - }, - { - "name": "duplex", - "type": "271" - }, - { - "name": "autoneg", - "type": "272" - } - ], - "meta-type": "object" - }, - { - "name": "84", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "tbl-id", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "[85]", - "element-type": "85", - "meta-type": "array" - }, - { - "name": "85", - "members": [ - { - "name": "cookie", - "type": "int" - }, - { - "name": "hits", - "type": "int" - }, - { - "name": "key", - "type": "273" - }, - { - "name": "mask", - "type": "274" - }, - { - "name": "action", - "type": "275" - } - ], - "meta-type": "object" - }, - { - "name": "86", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "type", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "[87]", - "element-type": "87", - "meta-type": "array" - }, - { - "name": "87", - "members": [ - { - "name": "id", - "type": "int" - }, - { - "name": "type", - "type": "int" - }, - { - "name": "vlan-id", - "default": null, - "type": "int" - }, - { - "name": "pport", - "default": null, - "type": "int" - }, - { - "name": "index", - "default": null, - "type": "int" - }, - { - "name": "out-pport", - "default": null, - "type": "int" - }, - { - "name": "group-id", - "default": null, - "type": "int" - }, - { - "name": "set-vlan-id", - "default": null, - "type": "int" - }, - { - "name": "pop-vlan", - "default": null, - "type": "int" - }, - { - "name": "group-ids", - "default": null, - "type": "[int]" - }, - { - "name": "set-eth-src", - "default": null, - "type": "str" - }, - { - "name": "set-eth-dst", - "default": null, - "type": "str" - }, - { - "name": "ttl-check", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "[88]", - "element-type": "88", - "meta-type": "array" - }, - { - "name": "88", - "meta-type": "enum", - "values": [ - "tpm-tis", - "tpm-crb" - ] - }, - { - "name": "[89]", - "element-type": "89", - "meta-type": "array" - }, - { - "name": "89", - "meta-type": "enum", - "values": [ - "passthrough", - "emulator" - ] - }, - { - "name": "[90]", - "element-type": "90", - "meta-type": "array" - }, - { - "name": "90", - "members": [ - { - "name": "id", - "type": "str" - }, - { - "name": "model", - "type": "88" - }, - { - "name": "options", - "type": "276" - } - ], - "meta-type": "object" - }, - { - "name": "91", - "members": [ - { - "name": "protocol", - "type": "str" - }, - { - "name": "password", - "type": "str" - }, - { - "name": "connected", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "92", - "members": [ - { - "name": "protocol", - "type": "str" - }, - { - "name": "time", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "93", - "members": [ - { - "name": "filename", - "type": "str" - }, - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "head", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "94", - "members": [ - { - "name": "enabled", - "type": "bool" - }, - { - "name": "migrated", - "type": "bool" - }, - { - "name": "host", - "default": null, - "type": "str" - }, - { - "name": "port", - "default": null, - "type": "int" - }, - { - "name": "tls-port", - "default": null, - "type": "int" - }, - { - "name": "auth", - "default": null, - "type": "str" - }, - { - "name": "compiled-version", - "default": null, - "type": "str" - }, - { - "name": "mouse-mode", - "type": "277" - }, - { - "name": "channels", - "default": null, - "type": "[278]" - } - ], - "meta-type": "object" - }, - { - "name": "95", - "members": [ - { - "name": "server", - "type": "279" - }, - { - "name": "client", - "type": "279" - } - ], - "meta-type": "object" - }, - { - "name": "96", - "members": [ - { - "name": "server", - "type": "280" - }, - { - "name": "client", - "type": "278" - } - ], - "meta-type": "object" - }, - { - "name": "97", - "members": [ - { - "name": "server", - "type": "279" - }, - { - "name": "client", - "type": "279" - } - ], - "meta-type": "object" - }, - { - "name": "98", - "members": [ - { - "name": "enabled", - "type": "bool" - }, - { - "name": "host", - "default": null, - "type": "str" - }, - { - "name": "family", - "default": null, - "type": "281" - }, - { - "name": "service", - "default": null, - "type": "str" - }, - { - "name": "auth", - "default": null, - "type": "str" - }, - { - "name": "clients", - "default": null, - "type": "[282]" - } - ], - "meta-type": "object" - }, - { - "name": "[99]", - "element-type": "99", - "meta-type": "array" - }, - { - "name": "99", - "members": [ - { - "name": "id", - "type": "str" - }, - { - "name": "server", - "type": "[283]" - }, - { - "name": "clients", - "type": "[282]" - }, - { - "name": "auth", - "type": "284" - }, - { - "name": "vencrypt", - "default": null, - "type": "285" - }, - { - "name": "display", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "100", - "members": [ - { - "name": "password", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "101", - "members": [ - { - "name": "server", - "type": "286" - }, - { - "name": "client", - "type": "287" - } - ], - "meta-type": "object" - }, - { - "name": "102", - "members": [ - { - "name": "server", - "type": "286" - }, - { - "name": "client", - "type": "282" - } - ], - "meta-type": "object" - }, - { - "name": "103", - "members": [ - { - "name": "server", - "type": "286" - }, - { - "name": "client", - "type": "282" - } - ], - "meta-type": "object" - }, - { - "name": "[104]", - "element-type": "104", - "meta-type": "array" - }, - { - "name": "104", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "index", - "type": "int" - }, - { - "name": "current", - "type": "bool" - }, - { - "name": "absolute", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "105", - "members": [ - { - "name": "keys", - "type": "[288]" - }, - { - "name": "hold-time", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "106", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "head", - "default": null, - "type": "int" - }, - { - "name": "events", - "type": "[289]" - } - ], - "meta-type": "object" - }, - { - "name": "107", - "members": [ - { - "name": "status", - "default": null, - "type": "290" - }, - { - "name": "ram", - "default": null, - "type": "291" - }, - { - "name": "disk", - "default": null, - "type": "291" - }, - { - "name": "xbzrle-cache", - "default": null, - "type": "292" - }, - { - "name": "total-time", - "default": null, - "type": "int" - }, - { - "name": "expected-downtime", - "default": null, - "type": "int" - }, - { - "name": "downtime", - "default": null, - "type": "int" - }, - { - "name": "setup-time", - "default": null, - "type": "int" - }, - { - "name": "cpu-throttle-percentage", - "default": null, - "type": "int" - }, - { - "name": "error-desc", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "108", - "members": [ - { - "name": "capabilities", - "type": "[109]" - } - ], - "meta-type": "object" - }, - { - "name": "[109]", - "element-type": "109", - "meta-type": "array" - }, - { - "name": "109", - "members": [ - { - "name": "capability", - "type": "293" - }, - { - "name": "state", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "110", - "members": [ - { - "name": "compress-level", - "default": null, - "type": "int" - }, - { - "name": "compress-threads", - "default": null, - "type": "int" - }, - { - "name": "decompress-threads", - "default": null, - "type": "int" - }, - { - "name": "cpu-throttle-initial", - "default": null, - "type": "int" - }, - { - "name": "cpu-throttle-increment", - "default": null, - "type": "int" - }, - { - "name": "tls-creds", - "default": null, - "type": "264" - }, - { - "name": "tls-hostname", - "default": null, - "type": "264" - }, - { - "name": "max-bandwidth", - "default": null, - "type": "int" - }, - { - "name": "downtime-limit", - "default": null, - "type": "int" - }, - { - "name": "x-checkpoint-delay", - "default": null, - "type": "int" - }, - { - "name": "block-incremental", - "default": null, - "type": "bool" - }, - { - "name": "x-multifd-channels", - "default": null, - "type": "int" - }, - { - "name": "x-multifd-page-count", - "default": null, - "type": "int" - }, - { - "name": "xbzrle-cache-size", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "111", - "members": [ - { - "name": "compress-level", - "default": null, - "type": "int" - }, - { - "name": "compress-threads", - "default": null, - "type": "int" - }, - { - "name": "decompress-threads", - "default": null, - "type": "int" - }, - { - "name": "cpu-throttle-initial", - "default": null, - "type": "int" - }, - { - "name": "cpu-throttle-increment", - "default": null, - "type": "int" - }, - { - "name": "tls-creds", - "default": null, - "type": "str" - }, - { - "name": "tls-hostname", - "default": null, - "type": "str" - }, - { - "name": "max-bandwidth", - "default": null, - "type": "int" - }, - { - "name": "downtime-limit", - "default": null, - "type": "int" - }, - { - "name": "x-checkpoint-delay", - "default": null, - "type": "int" - }, - { - "name": "block-incremental", - "default": null, - "type": "bool" - }, - { - "name": "x-multifd-channels", - "default": null, - "type": "int" - }, - { - "name": "x-multifd-page-count", - "default": null, - "type": "int" - }, - { - "name": "xbzrle-cache-size", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "112", - "members": [ - { - "name": "protocol", - "type": "str" - }, - { - "name": "hostname", - "type": "str" - }, - { - "name": "port", - "default": null, - "type": "int" - }, - { - "name": "tls-port", - "default": null, - "type": "int" - }, - { - "name": "cert-subject", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "113", - "members": [ - { - "name": "status", - "type": "290" - } - ], - "meta-type": "object" - }, - { - "name": "114", - "members": [ - { - "name": "pass", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "115", - "members": [ - { - "name": "state", - "type": "290" - } - ], - "meta-type": "object" - }, - { - "name": "116", - "members": [ - { - "name": "value", - "type": "number" - } - ], - "meta-type": "object" - }, - { - "name": "117", - "members": [ - { - "name": "value", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "118", - "members": [ - { - "name": "value", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "int", - "json-type": "int", - "meta-type": "builtin" - }, - { - "name": "119", - "members": [ - { - "name": "uri", - "type": "str" - }, - { - "name": "blk", - "default": null, - "type": "bool" - }, - { - "name": "inc", - "default": null, - "type": "bool" - }, - { - "name": "detach", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "120", - "members": [ - { - "name": "uri", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "121", - "members": [ - { - "name": "filename", - "type": "str" - }, - { - "name": "live", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "122", - "members": [ - { - "name": "enable", - "type": "bool" - }, - { - "name": "primary", - "type": "bool" - }, - { - "name": "failover", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "123", - "members": [ - { - "name": "error", - "type": "bool" - }, - { - "name": "desc", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "124", - "members": [ - { - "name": "actions", - "type": "[294]" - }, - { - "name": "properties", - "default": null, - "type": "295" - } - ], - "meta-type": "object" - }, - { - "name": "125", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "vcpu", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "[126]", - "element-type": "126", - "meta-type": "array" - }, - { - "name": "126", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "state", - "type": "296" - }, - { - "name": "vcpu", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "127", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "enable", - "type": "bool" - }, - { - "name": "ignore-unavailable", - "default": null, - "type": "bool" - }, - { - "name": "vcpu", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "[128]", - "element-type": "128", - "meta-type": "array" - }, - { - "name": "128", - "tag": "meta-type", - "variants": [ - { - "case": "builtin", - "type": "298" - }, - { - "case": "enum", - "type": "299" - }, - { - "case": "array", - "type": "300" - }, - { - "case": "object", - "type": "301" - }, - { - "case": "alternate", - "type": "302" - }, - { - "case": "command", - "type": "303" - }, - { - "case": "event", - "type": "304" - } - ], - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "meta-type", - "type": "297" - } - ], - "meta-type": "object" - }, - { - "name": "129", - "members": [ - { - "name": "enable", - "default": null, - "type": "[305]" - } - ], - "meta-type": "object" - }, - { - "name": "130", - "members": [ - { - "name": "qemu", - "type": "306" - }, - { - "name": "package", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[131]", - "element-type": "131", - "meta-type": "array" - }, - { - "name": "131", - "members": [ - { - "name": "name", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "132", - "members": [ - { - "name": "protocol", - "type": "str" - }, - { - "name": "fdname", - "type": "str" - }, - { - "name": "skipauth", - "default": null, - "type": "bool" - }, - { - "name": "tls", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "133", - "members": [ - { - "name": "name", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "134", - "members": [ - { - "name": "enabled", - "type": "bool" - }, - { - "name": "present", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "135", - "members": [ - { - "name": "UUID", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[136]", - "element-type": "136", - "meta-type": "array" - }, - { - "name": "136", - "members": [ - { - "name": "name", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[137]", - "element-type": "137", - "meta-type": "array" - }, - { - "name": "137", - "tag": "arch", - "variants": [ - { - "case": "x86", - "type": "309" - }, - { - "case": "sparc", - "type": "310" - }, - { - "case": "ppc", - "type": "311" - }, - { - "case": "mips", - "type": "312" - }, - { - "case": "tricore", - "type": "313" - }, - { - "case": "s390", - "type": "314" - }, - { - "case": "riscv", - "type": "315" - }, - { - "case": "other", - "type": "316" - } - ], - "members": [ - { - "name": "CPU", - "type": "int" - }, - { - "name": "current", - "type": "bool" - }, - { - "name": "halted", - "type": "bool" - }, - { - "name": "qom_path", - "type": "str" - }, - { - "name": "thread_id", - "type": "int" - }, - { - "name": "props", - "default": null, - "type": "307" - }, - { - "name": "arch", - "type": "308" - } - ], - "meta-type": "object" - }, - { - "name": "[138]", - "element-type": "138", - "meta-type": "array" - }, - { - "name": "138", - "tag": "arch", - "variants": [ - { - "case": "x86", - "type": "316" - }, - { - "case": "sparc", - "type": "316" - }, - { - "case": "ppc", - "type": "316" - }, - { - "case": "mips", - "type": "316" - }, - { - "case": "tricore", - "type": "316" - }, - { - "case": "s390", - "type": "314" - }, - { - "case": "riscv", - "type": "315" - }, - { - "case": "other", - "type": "316" - } - ], - "members": [ - { - "name": "cpu-index", - "type": "int" - }, - { - "name": "qom-path", - "type": "str" - }, - { - "name": "thread-id", - "type": "int" - }, - { - "name": "props", - "default": null, - "type": "307" - }, - { - "name": "arch", - "type": "308" - } - ], - "meta-type": "object" - }, - { - "name": "[139]", - "element-type": "139", - "meta-type": "array" - }, - { - "name": "139", - "members": [ - { - "name": "id", - "type": "str" - }, - { - "name": "thread-id", - "type": "int" - }, - { - "name": "poll-max-ns", - "type": "int" - }, - { - "name": "poll-grow", - "type": "int" - }, - { - "name": "poll-shrink", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "140", - "members": [ - { - "name": "actual", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "141", - "members": [ - { - "name": "actual", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "[142]", - "element-type": "142", - "meta-type": "array" - }, - { - "name": "142", - "members": [ - { - "name": "bus", - "type": "int" - }, - { - "name": "devices", - "type": "[317]" - } - ], - "meta-type": "object" - }, - { - "name": "143", - "members": [ - { - "name": "id", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "144", - "members": [ - { - "name": "val", - "type": "int" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "filename", - "type": "str" - }, - { - "name": "cpu-index", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "145", - "members": [ - { - "name": "val", - "type": "int" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "filename", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "146", - "members": [ - { - "name": "value", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "147", - "members": [ - { - "name": "command-line", - "type": "str" - }, - { - "name": "cpu-index", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "148", - "members": [ - { - "name": "path", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[149]", - "element-type": "149", - "meta-type": "array" - }, - { - "name": "149", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "type", - "type": "str" - }, - { - "name": "description", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "150", - "members": [ - { - "name": "path", - "type": "str" - }, - { - "name": "property", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "any", - "json-type": "value", - "meta-type": "builtin" - }, - { - "name": "151", - "members": [ - { - "name": "path", - "type": "str" - }, - { - "name": "property", - "type": "str" - }, - { - "name": "value", - "type": "any" - } - ], - "meta-type": "object" - }, - { - "name": "152", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "target", - "type": "str" - }, - { - "name": "arg", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "153", - "members": [ - { - "name": "implements", - "default": null, - "type": "str" - }, - { - "name": "abstract", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "[154]", - "element-type": "154", - "meta-type": "array" - }, - { - "name": "154", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "abstract", - "default": null, - "type": "bool" - }, - { - "name": "parent", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "155", - "members": [ - { - "name": "typename", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "156", - "members": [ - { - "name": "typename", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "157", - "members": [ - { - "name": "enable", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "158", - "members": [ - { - "name": "driver", - "type": "str" - }, - { - "name": "bus", - "default": null, - "type": "str" - }, - { - "name": "id", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "159", - "members": [ - { - "name": "id", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "160", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "path", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "161", - "members": [ - { - "name": "paging", - "type": "bool" - }, - { - "name": "protocol", - "type": "str" - }, - { - "name": "detach", - "default": null, - "type": "bool" - }, - { - "name": "begin", - "default": null, - "type": "int" - }, - { - "name": "length", - "default": null, - "type": "int" - }, - { - "name": "format", - "default": null, - "type": "318" - } - ], - "meta-type": "object" - }, - { - "name": "162", - "members": [ - { - "name": "status", - "type": "319" - }, - { - "name": "completed", - "type": "int" - }, - { - "name": "total", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "163", - "members": [ - { - "name": "result", - "type": "162" - }, - { - "name": "error", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "164", - "members": [ - { - "name": "formats", - "type": "[318]" - } - ], - "meta-type": "object" - }, - { - "name": "165", - "members": [ - { - "name": "filename", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "166", - "members": [ - { - "name": "qom-type", - "type": "str" - }, - { - "name": "id", - "type": "str" - }, - { - "name": "props", - "default": null, - "type": "any" - } - ], - "meta-type": "object" - }, - { - "name": "167", - "members": [ - { - "name": "id", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "168", - "members": [ - { - "name": "fdname", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "169", - "members": [ - { - "name": "fdname", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[170]", - "element-type": "170", - "meta-type": "array" - }, - { - "name": "170", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "alias", - "default": null, - "type": "str" - }, - { - "name": "is-default", - "default": null, - "type": "bool" - }, - { - "name": "cpu-max", - "type": "int" - }, - { - "name": "hotpluggable-cpus", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "171", - "members": [ - { - "name": "base-memory", - "type": "int" - }, - { - "name": "plugged-memory", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "[172]", - "element-type": "172", - "meta-type": "array" - }, - { - "name": "172", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "migration-safe", - "default": null, - "type": "bool" - }, - { - "name": "static", - "type": "bool" - }, - { - "name": "unavailable-features", - "default": null, - "type": "[str]" - }, - { - "name": "typename", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "173", - "members": [ - { - "name": "type", - "type": "320" - }, - { - "name": "model", - "type": "321" - } - ], - "meta-type": "object" - }, - { - "name": "174", - "members": [ - { - "name": "model", - "type": "321" - } - ], - "meta-type": "object" - }, - { - "name": "175", - "members": [ - { - "name": "modela", - "type": "321" - }, - { - "name": "modelb", - "type": "321" - } - ], - "meta-type": "object" - }, - { - "name": "176", - "members": [ - { - "name": "result", - "type": "322" - }, - { - "name": "responsible-properties", - "type": "[str]" - } - ], - "meta-type": "object" - }, - { - "name": "177", - "members": [ - { - "name": "modela", - "type": "321" - }, - { - "name": "modelb", - "type": "321" - } - ], - "meta-type": "object" - }, - { - "name": "178", - "members": [ - { - "name": "model", - "type": "321" - } - ], - "meta-type": "object" - }, - { - "name": "179", - "members": [ - { - "name": "fdset-id", - "default": null, - "type": "int" - }, - { - "name": "opaque", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "180", - "members": [ - { - "name": "fdset-id", - "type": "int" - }, - { - "name": "fd", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "181", - "members": [ - { - "name": "fdset-id", - "type": "int" - }, - { - "name": "fd", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "[182]", - "element-type": "182", - "meta-type": "array" - }, - { - "name": "182", - "members": [ - { - "name": "fdset-id", - "type": "int" - }, - { - "name": "fds", - "type": "[323]" - } - ], - "meta-type": "object" - }, - { - "name": "183", - "members": [ - { - "name": "arch", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "184", - "members": [ - { - "name": "option", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[185]", - "element-type": "185", - "meta-type": "array" - }, - { - "name": "185", - "members": [ - { - "name": "option", - "type": "str" - }, - { - "name": "parameters", - "type": "[324]" - } - ], - "meta-type": "object" - }, - { - "name": "[186]", - "element-type": "186", - "meta-type": "array" - }, - { - "name": "186", - "members": [ - { - "name": "id", - "default": null, - "type": "str" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "merge", - "type": "bool" - }, - { - "name": "dump", - "type": "bool" - }, - { - "name": "prealloc", - "type": "bool" - }, - { - "name": "host-nodes", - "type": "[int]" - }, - { - "name": "policy", - "type": "325" - } - ], - "meta-type": "object" - }, - { - "name": "[187]", - "element-type": "187", - "meta-type": "array" - }, - { - "name": "187", - "tag": "type", - "variants": [ - { - "case": "dimm", - "type": "327" - }, - { - "case": "nvdimm", - "type": "327" - } - ], - "members": [ - { - "name": "type", - "type": "326" - } - ], - "meta-type": "object" - }, - { - "name": "188", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "msg", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[189]", - "element-type": "189", - "meta-type": "array" - }, - { - "name": "189", - "members": [ - { - "name": "device", - "default": null, - "type": "str" - }, - { - "name": "slot", - "type": "str" - }, - { - "name": "slot-type", - "type": "328" - }, - { - "name": "source", - "type": "int" - }, - { - "name": "status", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "190", - "members": [ - { - "name": "info", - "type": "189" - } - ], - "meta-type": "object" - }, - { - "name": "191", - "members": [ - { - "name": "offset", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "192", - "members": [ - { - "name": "filename", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[193]", - "element-type": "193", - "meta-type": "array" - }, - { - "name": "193", - "members": [ - { - "name": "version", - "type": "int" - }, - { - "name": "emulated", - "type": "bool" - }, - { - "name": "kernel", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "[194]", - "element-type": "194", - "meta-type": "array" - }, - { - "name": "194", - "members": [ - { - "name": "type", - "type": "str" - }, - { - "name": "vcpus-count", - "type": "int" - }, - { - "name": "props", - "type": "307" - }, - { - "name": "qom-path", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "195", - "members": [ - { - "name": "guid", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "196", - "members": [ - { - "name": "enabled", - "type": "bool" - }, - { - "name": "api-major", - "type": "int" - }, - { - "name": "api-minor", - "type": "int" - }, - { - "name": "build-id", - "type": "int" - }, - { - "name": "policy", - "type": "int" - }, - { - "name": "state", - "type": "329" - }, - { - "name": "handle", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "197", - "members": [ - { - "name": "data", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "198", - "members": [ - { - "name": "pdh", - "type": "str" - }, - { - "name": "cert-chain", - "type": "str" - }, - { - "name": "cbitpos", - "type": "int" - }, - { - "name": "reduced-phys-bits", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "199", - "members": [ - { - "name": "id", - "type": "any" - }, - { - "name": "reason", - "type": "330" - } - ], - "meta-type": "object" - }, - { - "name": "200", - "members": [ - { - "name": "lock", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "bool", - "json-type": "boolean", - "meta-type": "builtin" - }, - { - "name": "201", - "meta-type": "enum", - "values": [ - "debug", - "inmigrate", - "internal-error", - "io-error", - "paused", - "postmigrate", - "prelaunch", - "finish-migrate", - "restore-vm", - "running", - "save-vm", - "shutdown", - "suspended", - "watchdog", - "guest-panicked", - "colo" - ] - }, - { - "name": "202", - "meta-type": "enum", - "values": [ - "reset", - "shutdown", - "poweroff", - "pause", - "debug", - "none", - "inject-nmi" - ] - }, - { - "name": "203", - "meta-type": "enum", - "values": [ - "pause", - "poweroff" - ] - }, - { - "name": "204", - "tag": "type", - "variants": [ - { - "case": "hyper-v", - "type": "332" - }, - { - "case": "s390", - "type": "333" - } - ], - "members": [ - { - "name": "type", - "type": "331" - } - ], - "meta-type": "object" - }, - { - "name": "[int]", - "element-type": "int", - "meta-type": "array" - }, - { - "name": "205", - "meta-type": "enum", - "values": [ - "ok", - "failed", - "nospace" - ] - }, - { - "name": "[206]", - "element-type": "206", - "meta-type": "array" - }, - { - "name": "206", - "members": [ - { - "name": "name", - "default": null, - "type": "str" - }, - { - "name": "count", - "type": "int" - }, - { - "name": "granularity", - "type": "int" - }, - { - "name": "status", - "type": "334" - } - ], - "meta-type": "object" - }, - { - "name": "207", - "members": [ - { - "name": "rd_bytes", - "type": "int" - }, - { - "name": "wr_bytes", - "type": "int" - }, - { - "name": "rd_operations", - "type": "int" - }, - { - "name": "wr_operations", - "type": "int" - }, - { - "name": "flush_operations", - "type": "int" - }, - { - "name": "flush_total_time_ns", - "type": "int" - }, - { - "name": "wr_total_time_ns", - "type": "int" - }, - { - "name": "rd_total_time_ns", - "type": "int" - }, - { - "name": "wr_highest_offset", - "type": "int" - }, - { - "name": "rd_merged", - "type": "int" - }, - { - "name": "wr_merged", - "type": "int" - }, - { - "name": "idle_time_ns", - "default": null, - "type": "int" - }, - { - "name": "failed_rd_operations", - "type": "int" - }, - { - "name": "failed_wr_operations", - "type": "int" - }, - { - "name": "failed_flush_operations", - "type": "int" - }, - { - "name": "invalid_rd_operations", - "type": "int" - }, - { - "name": "invalid_wr_operations", - "type": "int" - }, - { - "name": "invalid_flush_operations", - "type": "int" - }, - { - "name": "account_invalid", - "type": "bool" - }, - { - "name": "account_failed", - "type": "bool" - }, - { - "name": "timed_stats", - "type": "[335]" - }, - { - "name": "x_rd_latency_histogram", - "default": null, - "type": "336" - }, - { - "name": "x_wr_latency_histogram", - "default": null, - "type": "336" - }, - { - "name": "x_flush_latency_histogram", - "default": null, - "type": "336" - } - ], - "meta-type": "object" - }, - { - "name": "208", - "meta-type": "enum", - "values": [ - "undefined", - "created", - "running", - "paused", - "ready", - "standby", - "waiting", - "pending", - "aborting", - "concluded", - "null" - ] - }, - { - "name": "209", - "meta-type": "enum", - "values": [ - "existing", - "absolute-paths" - ] - }, - { - "name": "210", - "meta-type": "enum", - "values": [ - "top", - "full", - "none", - "incremental" - ] - }, - { - "name": "211", - "meta-type": "enum", - "values": [ - "report", - "ignore", - "enospc", - "stop", - "auto" - ] - }, - { - "name": "212", - "meta-type": "enum", - "values": [ - "off", - "on", - "unmap" - ] - }, - { - "name": "213", - "members": [ - { - "name": "filename", - "type": "str" - }, - { - "name": "format", - "type": "str" - }, - { - "name": "dirty-flag", - "default": null, - "type": "bool" - }, - { - "name": "actual-size", - "default": null, - "type": "int" - }, - { - "name": "virtual-size", - "type": "int" - }, - { - "name": "cluster-size", - "default": null, - "type": "int" - }, - { - "name": "encrypted", - "default": null, - "type": "bool" - }, - { - "name": "compressed", - "default": null, - "type": "bool" - }, - { - "name": "backing-filename", - "default": null, - "type": "str" - }, - { - "name": "full-backing-filename", - "default": null, - "type": "str" - }, - { - "name": "backing-filename-format", - "default": null, - "type": "str" - }, - { - "name": "snapshots", - "default": null, - "type": "[56]" - }, - { - "name": "backing-image", - "default": null, - "type": "213" - }, - { - "name": "format-specific", - "default": null, - "type": "337" - } - ], - "meta-type": "object" - }, - { - "name": "214", - "members": [ - { - "name": "writeback", - "type": "bool" - }, - { - "name": "direct", - "type": "bool" - }, - { - "name": "no-flush", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "215", - "meta-type": "enum", - "values": [ - "blkdebug", - "blkverify", - "bochs", - "cloop", - "dmg", - "file", - "ftp", - "ftps", - "gluster", - "host_cdrom", - "host_device", - "http", - "https", - "iscsi", - "luks", - "nbd", - "nfs", - "null-aio", - "null-co", - "nvme", - "parallels", - "qcow", - "qcow2", - "qed", - "quorum", - "raw", - "rbd", - "replication", - "sheepdog", - "ssh", - "throttle", - "vdi", - "vhdx", - "vmdk", - "vpc", - "vvfat", - "vxhs" - ] - }, - { - "name": "216", - "meta-type": "enum", - "values": [ - "ignore", - "unmap" - ] - }, - { - "name": "217", - "members": [ - { - "name": "direct", - "default": null, - "type": "bool" - }, - { - "name": "no-flush", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "218", - "members": [ - { - "name": "image", - "type": "338" - }, - { - "name": "config", - "default": null, - "type": "str" - }, - { - "name": "align", - "default": null, - "type": "int" - }, - { - "name": "max-transfer", - "default": null, - "type": "int" - }, - { - "name": "opt-write-zero", - "default": null, - "type": "int" - }, - { - "name": "max-write-zero", - "default": null, - "type": "int" - }, - { - "name": "opt-discard", - "default": null, - "type": "int" - }, - { - "name": "max-discard", - "default": null, - "type": "int" - }, - { - "name": "inject-error", - "default": null, - "type": "[339]" - }, - { - "name": "set-state", - "default": null, - "type": "[340]" - } - ], - "meta-type": "object" - }, - { - "name": "219", - "members": [ - { - "name": "test", - "type": "338" - }, - { - "name": "raw", - "type": "338" - } - ], - "meta-type": "object" - }, - { - "name": "220", - "members": [ - { - "name": "file", - "type": "338" - } - ], - "meta-type": "object" - }, - { - "name": "221", - "members": [ - { - "name": "filename", - "type": "str" - }, - { - "name": "pr-manager", - "default": null, - "type": "str" - }, - { - "name": "locking", - "default": null, - "type": "341" - }, - { - "name": "aio", - "default": null, - "type": "342" - } - ], - "meta-type": "object" - }, - { - "name": "222", - "members": [ - { - "name": "url", - "type": "str" - }, - { - "name": "readahead", - "default": null, - "type": "int" - }, - { - "name": "timeout", - "default": null, - "type": "int" - }, - { - "name": "username", - "default": null, - "type": "str" - }, - { - "name": "password-secret", - "default": null, - "type": "str" - }, - { - "name": "proxy-username", - "default": null, - "type": "str" - }, - { - "name": "proxy-password-secret", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "223", - "members": [ - { - "name": "url", - "type": "str" - }, - { - "name": "readahead", - "default": null, - "type": "int" - }, - { - "name": "timeout", - "default": null, - "type": "int" - }, - { - "name": "username", - "default": null, - "type": "str" - }, - { - "name": "password-secret", - "default": null, - "type": "str" - }, - { - "name": "proxy-username", - "default": null, - "type": "str" - }, - { - "name": "proxy-password-secret", - "default": null, - "type": "str" - }, - { - "name": "sslverify", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "224", - "members": [ - { - "name": "volume", - "type": "str" - }, - { - "name": "path", - "type": "str" - }, - { - "name": "server", - "type": "[343]" - }, - { - "name": "debug", - "default": null, - "type": "int" - }, - { - "name": "logfile", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "225", - "members": [ - { - "name": "url", - "type": "str" - }, - { - "name": "readahead", - "default": null, - "type": "int" - }, - { - "name": "timeout", - "default": null, - "type": "int" - }, - { - "name": "username", - "default": null, - "type": "str" - }, - { - "name": "password-secret", - "default": null, - "type": "str" - }, - { - "name": "proxy-username", - "default": null, - "type": "str" - }, - { - "name": "proxy-password-secret", - "default": null, - "type": "str" - }, - { - "name": "cookie", - "default": null, - "type": "str" - }, - { - "name": "cookie-secret", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "226", - "members": [ - { - "name": "url", - "type": "str" - }, - { - "name": "readahead", - "default": null, - "type": "int" - }, - { - "name": "timeout", - "default": null, - "type": "int" - }, - { - "name": "username", - "default": null, - "type": "str" - }, - { - "name": "password-secret", - "default": null, - "type": "str" - }, - { - "name": "proxy-username", - "default": null, - "type": "str" - }, - { - "name": "proxy-password-secret", - "default": null, - "type": "str" - }, - { - "name": "cookie", - "default": null, - "type": "str" - }, - { - "name": "sslverify", - "default": null, - "type": "bool" - }, - { - "name": "cookie-secret", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "227", - "members": [ - { - "name": "transport", - "type": "344" - }, - { - "name": "portal", - "type": "str" - }, - { - "name": "target", - "type": "str" - }, - { - "name": "lun", - "default": null, - "type": "int" - }, - { - "name": "user", - "default": null, - "type": "str" - }, - { - "name": "password-secret", - "default": null, - "type": "str" - }, - { - "name": "initiator-name", - "default": null, - "type": "str" - }, - { - "name": "header-digest", - "default": null, - "type": "345" - }, - { - "name": "timeout", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "228", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "key-secret", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "229", - "members": [ - { - "name": "server", - "type": "343" - }, - { - "name": "export", - "default": null, - "type": "str" - }, - { - "name": "tls-creds", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "230", - "members": [ - { - "name": "server", - "type": "346" - }, - { - "name": "path", - "type": "str" - }, - { - "name": "user", - "default": null, - "type": "int" - }, - { - "name": "group", - "default": null, - "type": "int" - }, - { - "name": "tcp-syn-count", - "default": null, - "type": "int" - }, - { - "name": "readahead-size", - "default": null, - "type": "int" - }, - { - "name": "page-cache-size", - "default": null, - "type": "int" - }, - { - "name": "debug", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "231", - "members": [ - { - "name": "size", - "default": null, - "type": "int" - }, - { - "name": "latency-ns", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "232", - "members": [ - { - "name": "device", - "type": "str" - }, - { - "name": "namespace", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "233", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "backing", - "default": null, - "type": "347" - }, - { - "name": "lazy-refcounts", - "default": null, - "type": "bool" - }, - { - "name": "pass-discard-request", - "default": null, - "type": "bool" - }, - { - "name": "pass-discard-snapshot", - "default": null, - "type": "bool" - }, - { - "name": "pass-discard-other", - "default": null, - "type": "bool" - }, - { - "name": "overlap-check", - "default": null, - "type": "348" - }, - { - "name": "cache-size", - "default": null, - "type": "int" - }, - { - "name": "l2-cache-size", - "default": null, - "type": "int" - }, - { - "name": "l2-cache-entry-size", - "default": null, - "type": "int" - }, - { - "name": "refcount-cache-size", - "default": null, - "type": "int" - }, - { - "name": "cache-clean-interval", - "default": null, - "type": "int" - }, - { - "name": "encrypt", - "default": null, - "type": "349" - } - ], - "meta-type": "object" - }, - { - "name": "234", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "backing", - "default": null, - "type": "347" - }, - { - "name": "encrypt", - "default": null, - "type": "350" - } - ], - "meta-type": "object" - }, - { - "name": "235", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "backing", - "default": null, - "type": "347" - } - ], - "meta-type": "object" - }, - { - "name": "236", - "members": [ - { - "name": "blkverify", - "default": null, - "type": "bool" - }, - { - "name": "children", - "type": "[338]" - }, - { - "name": "vote-threshold", - "type": "int" - }, - { - "name": "rewrite-corrupted", - "default": null, - "type": "bool" - }, - { - "name": "read-pattern", - "default": null, - "type": "351" - } - ], - "meta-type": "object" - }, - { - "name": "237", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "offset", - "default": null, - "type": "int" - }, - { - "name": "size", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "238", - "members": [ - { - "name": "pool", - "type": "str" - }, - { - "name": "image", - "type": "str" - }, - { - "name": "conf", - "default": null, - "type": "str" - }, - { - "name": "snapshot", - "default": null, - "type": "str" - }, - { - "name": "user", - "default": null, - "type": "str" - }, - { - "name": "server", - "default": null, - "type": "[352]" - } - ], - "meta-type": "object" - }, - { - "name": "239", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "mode", - "type": "353" - }, - { - "name": "top-id", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "240", - "members": [ - { - "name": "server", - "type": "343" - }, - { - "name": "vdi", - "type": "str" - }, - { - "name": "snap-id", - "default": null, - "type": "int" - }, - { - "name": "tag", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "241", - "members": [ - { - "name": "server", - "type": "354" - }, - { - "name": "path", - "type": "str" - }, - { - "name": "user", - "default": null, - "type": "str" - }, - { - "name": "host-key-check", - "default": null, - "type": "355" - } - ], - "meta-type": "object" - }, - { - "name": "242", - "members": [ - { - "name": "throttle-group", - "type": "str" - }, - { - "name": "file", - "type": "338" - } - ], - "meta-type": "object" - }, - { - "name": "243", - "members": [ - { - "name": "dir", - "type": "str" - }, - { - "name": "fat-type", - "default": null, - "type": "int" - }, - { - "name": "floppy", - "default": null, - "type": "bool" - }, - { - "name": "label", - "default": null, - "type": "str" - }, - { - "name": "rw", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "244", - "members": [ - { - "name": "vdisk-id", - "type": "str" - }, - { - "name": "server", - "type": "352" - }, - { - "name": "tls-creds", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "245", - "members": [ - ], - "meta-type": "object" - }, - { - "name": "246", - "members": [ - { - "name": "filename", - "type": "str" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "preallocation", - "default": null, - "type": "356" - }, - { - "name": "nocow", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "247", - "members": [ - { - "name": "location", - "type": "224" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "preallocation", - "default": null, - "type": "356" - } - ], - "meta-type": "object" - }, - { - "name": "248", - "members": [ - { - "name": "key-secret", - "default": null, - "type": "str" - }, - { - "name": "cipher-alg", - "default": null, - "type": "357" - }, - { - "name": "cipher-mode", - "default": null, - "type": "358" - }, - { - "name": "ivgen-alg", - "default": null, - "type": "359" - }, - { - "name": "ivgen-hash-alg", - "default": null, - "type": "360" - }, - { - "name": "hash-alg", - "default": null, - "type": "360" - }, - { - "name": "iter-time", - "default": null, - "type": "int" - }, - { - "name": "file", - "type": "338" - }, - { - "name": "size", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "249", - "members": [ - { - "name": "location", - "type": "230" - }, - { - "name": "size", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "250", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "cluster-size", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "251", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "backing-file", - "default": null, - "type": "str" - }, - { - "name": "encrypt", - "default": null, - "type": "361" - } - ], - "meta-type": "object" - }, - { - "name": "252", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "version", - "default": null, - "type": "362" - }, - { - "name": "backing-file", - "default": null, - "type": "str" - }, - { - "name": "backing-fmt", - "default": null, - "type": "215" - }, - { - "name": "encrypt", - "default": null, - "type": "361" - }, - { - "name": "cluster-size", - "default": null, - "type": "int" - }, - { - "name": "preallocation", - "default": null, - "type": "356" - }, - { - "name": "lazy-refcounts", - "default": null, - "type": "bool" - }, - { - "name": "refcount-bits", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "253", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "backing-file", - "default": null, - "type": "str" - }, - { - "name": "backing-fmt", - "default": null, - "type": "215" - }, - { - "name": "cluster-size", - "default": null, - "type": "int" - }, - { - "name": "table-size", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "254", - "members": [ - { - "name": "location", - "type": "238" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "cluster-size", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "255", - "members": [ - { - "name": "location", - "type": "240" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "backing-file", - "default": null, - "type": "str" - }, - { - "name": "preallocation", - "default": null, - "type": "356" - }, - { - "name": "redundancy", - "default": null, - "type": "363" - }, - { - "name": "object-size", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "256", - "members": [ - { - "name": "location", - "type": "241" - }, - { - "name": "size", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "257", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "static", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "258", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "log-size", - "default": null, - "type": "int" - }, - { - "name": "block-size", - "default": null, - "type": "int" - }, - { - "name": "subformat", - "default": null, - "type": "364" - }, - { - "name": "block-state-zero", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "259", - "members": [ - { - "name": "file", - "type": "338" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "subformat", - "default": null, - "type": "365" - }, - { - "name": "force-size", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "260", - "meta-type": "enum", - "values": [ - "retain", - "read-only", - "read-write" - ] - }, - { - "name": "261", - "meta-type": "enum", - "values": [ - "read", - "write" - ] - }, - { - "name": "262", - "meta-type": "enum", - "values": [ - "ignore", - "report", - "stop" - ] - }, - { - "name": "263", - "meta-type": "enum", - "values": [ - "commit", - "stream", - "mirror", - "backup" - ] - }, - { - "name": "264", - "members": [ - { - "type": "str" - }, - { - "type": "null" - } - ], - "meta-type": "alternate" - }, - { - "name": "265", - "tag": "type", - "variants": [ - { - "case": "inet", - "type": "367" - }, - { - "case": "unix", - "type": "368" - }, - { - "case": "vsock", - "type": "369" - }, - { - "case": "fd", - "type": "370" - } - ], - "members": [ - { - "name": "type", - "type": "366" - } - ], - "meta-type": "object" - }, - { - "name": "266", - "meta-type": "enum", - "values": [ - "safe", - "hard" - ] - }, - { - "name": "267", - "meta-type": "enum", - "values": [ - "read", - "write", - "flush" - ] - }, - { - "name": "268", - "meta-type": "enum", - "values": [ - "utf8", - "base64" - ] - }, - { - "name": "269", - "tag": "type", - "variants": [ - { - "case": "file", - "type": "372" - }, - { - "case": "serial", - "type": "373" - }, - { - "case": "parallel", - "type": "373" - }, - { - "case": "pipe", - "type": "373" - }, - { - "case": "socket", - "type": "374" - }, - { - "case": "udp", - "type": "375" - }, - { - "case": "pty", - "type": "376" - }, - { - "case": "null", - "type": "376" - }, - { - "case": "mux", - "type": "377" - }, - { - "case": "msmouse", - "type": "376" - }, - { - "case": "wctablet", - "type": "376" - }, - { - "case": "braille", - "type": "376" - }, - { - "case": "testdev", - "type": "376" - }, - { - "case": "stdio", - "type": "378" - }, - { - "case": "console", - "type": "376" - }, - { - "case": "spicevmc", - "type": "379" - }, - { - "case": "spiceport", - "type": "380" - }, - { - "case": "vc", - "type": "381" - }, - { - "case": "ringbuf", - "type": "382" - }, - { - "case": "memory", - "type": "382" - } - ], - "members": [ - { - "name": "type", - "type": "371" - } - ], - "meta-type": "object" - }, - { - "name": "270", - "meta-type": "enum", - "values": [ - "normal", - "none", - "all" - ] - }, - { - "name": "[str]", - "element-type": "str", - "meta-type": "array" - }, - { - "name": "271", - "meta-type": "enum", - "values": [ - "half", - "full" - ] - }, - { - "name": "272", - "meta-type": "enum", - "values": [ - "off", - "on" - ] - }, - { - "name": "273", - "members": [ - { - "name": "priority", - "type": "int" - }, - { - "name": "tbl-id", - "type": "int" - }, - { - "name": "in-pport", - "default": null, - "type": "int" - }, - { - "name": "tunnel-id", - "default": null, - "type": "int" - }, - { - "name": "vlan-id", - "default": null, - "type": "int" - }, - { - "name": "eth-type", - "default": null, - "type": "int" - }, - { - "name": "eth-src", - "default": null, - "type": "str" - }, - { - "name": "eth-dst", - "default": null, - "type": "str" - }, - { - "name": "ip-proto", - "default": null, - "type": "int" - }, - { - "name": "ip-tos", - "default": null, - "type": "int" - }, - { - "name": "ip-dst", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "274", - "members": [ - { - "name": "in-pport", - "default": null, - "type": "int" - }, - { - "name": "tunnel-id", - "default": null, - "type": "int" - }, - { - "name": "vlan-id", - "default": null, - "type": "int" - }, - { - "name": "eth-src", - "default": null, - "type": "str" - }, - { - "name": "eth-dst", - "default": null, - "type": "str" - }, - { - "name": "ip-proto", - "default": null, - "type": "int" - }, - { - "name": "ip-tos", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "275", - "members": [ - { - "name": "goto-tbl", - "default": null, - "type": "int" - }, - { - "name": "group-id", - "default": null, - "type": "int" - }, - { - "name": "tunnel-lport", - "default": null, - "type": "int" - }, - { - "name": "vlan-id", - "default": null, - "type": "int" - }, - { - "name": "new-vlan-id", - "default": null, - "type": "int" - }, - { - "name": "out-pport", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "276", - "tag": "type", - "variants": [ - { - "case": "passthrough", - "type": "384" - }, - { - "case": "emulator", - "type": "385" - } - ], - "members": [ - { - "name": "type", - "type": "383" - } - ], - "meta-type": "object" - }, - { - "name": "277", - "meta-type": "enum", - "values": [ - "client", - "server", - "unknown" - ] - }, - { - "name": "[278]", - "element-type": "278", - "meta-type": "array" - }, - { - "name": "278", - "members": [ - { - "name": "host", - "type": "str" - }, - { - "name": "port", - "type": "str" - }, - { - "name": "family", - "type": "281" - }, - { - "name": "connection-id", - "type": "int" - }, - { - "name": "channel-type", - "type": "int" - }, - { - "name": "channel-id", - "type": "int" - }, - { - "name": "tls", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "279", - "members": [ - { - "name": "host", - "type": "str" - }, - { - "name": "port", - "type": "str" - }, - { - "name": "family", - "type": "281" - } - ], - "meta-type": "object" - }, - { - "name": "280", - "members": [ - { - "name": "host", - "type": "str" - }, - { - "name": "port", - "type": "str" - }, - { - "name": "family", - "type": "281" - }, - { - "name": "auth", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "281", - "meta-type": "enum", - "values": [ - "ipv4", - "ipv6", - "unix", - "vsock", - "unknown" - ] - }, - { - "name": "[282]", - "element-type": "282", - "meta-type": "array" - }, - { - "name": "282", - "members": [ - { - "name": "host", - "type": "str" - }, - { - "name": "service", - "type": "str" - }, - { - "name": "family", - "type": "281" - }, - { - "name": "websocket", - "type": "bool" - }, - { - "name": "x509_dname", - "default": null, - "type": "str" - }, - { - "name": "sasl_username", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[283]", - "element-type": "283", - "meta-type": "array" - }, - { - "name": "283", - "members": [ - { - "name": "host", - "type": "str" - }, - { - "name": "service", - "type": "str" - }, - { - "name": "family", - "type": "281" - }, - { - "name": "websocket", - "type": "bool" - }, - { - "name": "auth", - "type": "284" - }, - { - "name": "vencrypt", - "default": null, - "type": "285" - } - ], - "meta-type": "object" - }, - { - "name": "284", - "meta-type": "enum", - "values": [ - "none", - "vnc", - "ra2", - "ra2ne", - "tight", - "ultra", - "tls", - "vencrypt", - "sasl" - ] - }, - { - "name": "285", - "meta-type": "enum", - "values": [ - "plain", - "tls-none", - "x509-none", - "tls-vnc", - "x509-vnc", - "tls-plain", - "x509-plain", - "tls-sasl", - "x509-sasl" - ] - }, - { - "name": "286", - "members": [ - { - "name": "host", - "type": "str" - }, - { - "name": "service", - "type": "str" - }, - { - "name": "family", - "type": "281" - }, - { - "name": "websocket", - "type": "bool" - }, - { - "name": "auth", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "287", - "members": [ - { - "name": "host", - "type": "str" - }, - { - "name": "service", - "type": "str" - }, - { - "name": "family", - "type": "281" - }, - { - "name": "websocket", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "[288]", - "element-type": "288", - "meta-type": "array" - }, - { - "name": "288", - "tag": "type", - "variants": [ - { - "case": "number", - "type": "387" - }, - { - "case": "qcode", - "type": "388" - } - ], - "members": [ - { - "name": "type", - "type": "386" - } - ], - "meta-type": "object" - }, - { - "name": "[289]", - "element-type": "289", - "meta-type": "array" - }, - { - "name": "289", - "tag": "type", - "variants": [ - { - "case": "key", - "type": "390" - }, - { - "case": "btn", - "type": "391" - }, - { - "case": "rel", - "type": "392" - }, - { - "case": "abs", - "type": "392" - } - ], - "members": [ - { - "name": "type", - "type": "389" - } - ], - "meta-type": "object" - }, - { - "name": "290", - "meta-type": "enum", - "values": [ - "none", - "setup", - "cancelling", - "cancelled", - "active", - "postcopy-active", - "completed", - "failed", - "colo", - "pre-switchover", - "device" - ] - }, - { - "name": "291", - "members": [ - { - "name": "transferred", - "type": "int" - }, - { - "name": "remaining", - "type": "int" - }, - { - "name": "total", - "type": "int" - }, - { - "name": "duplicate", - "type": "int" - }, - { - "name": "skipped", - "type": "int" - }, - { - "name": "normal", - "type": "int" - }, - { - "name": "normal-bytes", - "type": "int" - }, - { - "name": "dirty-pages-rate", - "type": "int" - }, - { - "name": "mbps", - "type": "number" - }, - { - "name": "dirty-sync-count", - "type": "int" - }, - { - "name": "postcopy-requests", - "type": "int" - }, - { - "name": "page-size", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "292", - "members": [ - { - "name": "cache-size", - "type": "int" - }, - { - "name": "bytes", - "type": "int" - }, - { - "name": "pages", - "type": "int" - }, - { - "name": "cache-miss", - "type": "int" - }, - { - "name": "cache-miss-rate", - "type": "number" - }, - { - "name": "overflow", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "293", - "meta-type": "enum", - "values": [ - "xbzrle", - "rdma-pin-all", - "auto-converge", - "zero-blocks", - "compress", - "events", - "postcopy-ram", - "x-colo", - "release-ram", - "block", - "return-path", - "pause-before-switchover", - "x-multifd", - "dirty-bitmaps" - ] - }, - { - "name": "number", - "json-type": "number", - "meta-type": "builtin" - }, - { - "name": "[294]", - "element-type": "294", - "meta-type": "array" - }, - { - "name": "294", - "tag": "type", - "variants": [ - { - "case": "abort", - "type": "394" - }, - { - "case": "block-dirty-bitmap-add", - "type": "395" - }, - { - "case": "block-dirty-bitmap-clear", - "type": "396" - }, - { - "case": "blockdev-backup", - "type": "397" - }, - { - "case": "blockdev-snapshot", - "type": "398" - }, - { - "case": "blockdev-snapshot-internal-sync", - "type": "399" - }, - { - "case": "blockdev-snapshot-sync", - "type": "400" - }, - { - "case": "drive-backup", - "type": "401" - } - ], - "members": [ - { - "name": "type", - "type": "393" - } - ], - "meta-type": "object" - }, - { - "name": "295", - "members": [ - { - "name": "completion-mode", - "default": null, - "type": "402" - } - ], - "meta-type": "object" - }, - { - "name": "296", - "meta-type": "enum", - "values": [ - "unavailable", - "disabled", - "enabled" - ] - }, - { - "name": "297", - "meta-type": "enum", - "values": [ - "builtin", - "enum", - "array", - "object", - "alternate", - "command", - "event" - ] - }, - { - "name": "298", - "members": [ - { - "name": "json-type", - "type": "403" - } - ], - "meta-type": "object" - }, - { - "name": "299", - "members": [ - { - "name": "values", - "type": "[str]" - } - ], - "meta-type": "object" - }, - { - "name": "300", - "members": [ - { - "name": "element-type", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "301", - "members": [ - { - "name": "members", - "type": "[404]" - }, - { - "name": "tag", - "default": null, - "type": "str" - }, - { - "name": "variants", - "default": null, - "type": "[405]" - } - ], - "meta-type": "object" - }, - { - "name": "302", - "members": [ - { - "name": "members", - "type": "[406]" - } - ], - "meta-type": "object" - }, - { - "name": "303", - "members": [ - { - "name": "arg-type", - "type": "str" - }, - { - "name": "ret-type", - "type": "str" - }, - { - "name": "allow-oob", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "304", - "members": [ - { - "name": "arg-type", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[305]", - "element-type": "305", - "meta-type": "array" - }, - { - "name": "305", - "meta-type": "enum", - "values": [ - "oob" - ] - }, - { - "name": "306", - "members": [ - { - "name": "major", - "type": "int" - }, - { - "name": "minor", - "type": "int" - }, - { - "name": "micro", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "307", - "members": [ - { - "name": "node-id", - "default": null, - "type": "int" - }, - { - "name": "socket-id", - "default": null, - "type": "int" - }, - { - "name": "core-id", - "default": null, - "type": "int" - }, - { - "name": "thread-id", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "308", - "meta-type": "enum", - "values": [ - "x86", - "sparc", - "ppc", - "mips", - "tricore", - "s390", - "riscv", - "other" - ] - }, - { - "name": "309", - "members": [ - { - "name": "pc", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "310", - "members": [ - { - "name": "pc", - "type": "int" - }, - { - "name": "npc", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "311", - "members": [ - { - "name": "nip", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "312", - "members": [ - { - "name": "PC", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "313", - "members": [ - { - "name": "PC", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "314", - "members": [ - { - "name": "cpu-state", - "type": "407" - } - ], - "meta-type": "object" - }, - { - "name": "315", - "members": [ - { - "name": "pc", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "316", - "members": [ - ], - "meta-type": "object" - }, - { - "name": "[317]", - "element-type": "317", - "meta-type": "array" - }, - { - "name": "317", - "members": [ - { - "name": "bus", - "type": "int" - }, - { - "name": "slot", - "type": "int" - }, - { - "name": "function", - "type": "int" - }, - { - "name": "class_info", - "type": "408" - }, - { - "name": "id", - "type": "409" - }, - { - "name": "irq", - "default": null, - "type": "int" - }, - { - "name": "qdev_id", - "type": "str" - }, - { - "name": "pci_bridge", - "default": null, - "type": "410" - }, - { - "name": "regions", - "type": "[411]" - } - ], - "meta-type": "object" - }, - { - "name": "318", - "meta-type": "enum", - "values": [ - "elf", - "kdump-zlib", - "kdump-lzo", - "kdump-snappy" - ] - }, - { - "name": "319", - "meta-type": "enum", - "values": [ - "none", - "active", - "completed", - "failed" - ] - }, - { - "name": "[318]", - "element-type": "318", - "meta-type": "array" - }, - { - "name": "320", - "meta-type": "enum", - "values": [ - "static", - "full" - ] - }, - { - "name": "321", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "props", - "default": null, - "type": "any" - } - ], - "meta-type": "object" - }, - { - "name": "322", - "meta-type": "enum", - "values": [ - "incompatible", - "identical", - "superset", - "subset" - ] - }, - { - "name": "[323]", - "element-type": "323", - "meta-type": "array" - }, - { - "name": "323", - "members": [ - { - "name": "fd", - "type": "int" - }, - { - "name": "opaque", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[324]", - "element-type": "324", - "meta-type": "array" - }, - { - "name": "324", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "type", - "type": "412" - }, - { - "name": "help", - "default": null, - "type": "str" - }, - { - "name": "default", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "325", - "meta-type": "enum", - "values": [ - "default", - "preferred", - "bind", - "interleave" - ] - }, - { - "name": "326", - "meta-type": "enum", - "values": [ - "dimm", - "nvdimm" - ] - }, - { - "name": "327", - "members": [ - { - "name": "data", - "type": "413" - } - ], - "meta-type": "object" - }, - { - "name": "328", - "meta-type": "enum", - "values": [ - "DIMM", - "CPU" - ] - }, - { - "name": "329", - "meta-type": "enum", - "values": [ - "uninit", - "launch-update", - "launch-secret", - "running", - "send-update", - "receive-update" - ] - }, - { - "name": "330", - "meta-type": "enum", - "values": [ - "queue-full" - ] - }, - { - "name": "331", - "meta-type": "enum", - "values": [ - "hyper-v", - "s390" - ] - }, - { - "name": "332", - "members": [ - { - "name": "arg1", - "type": "int" - }, - { - "name": "arg2", - "type": "int" - }, - { - "name": "arg3", - "type": "int" - }, - { - "name": "arg4", - "type": "int" - }, - { - "name": "arg5", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "333", - "members": [ - { - "name": "core", - "type": "int" - }, - { - "name": "psw-mask", - "type": "int" - }, - { - "name": "psw-addr", - "type": "int" - }, - { - "name": "reason", - "type": "414" - } - ], - "meta-type": "object" - }, - { - "name": "334", - "meta-type": "enum", - "values": [ - "active", - "disabled", - "frozen", - "locked" - ] - }, - { - "name": "[335]", - "element-type": "335", - "meta-type": "array" - }, - { - "name": "335", - "members": [ - { - "name": "interval_length", - "type": "int" - }, - { - "name": "min_rd_latency_ns", - "type": "int" - }, - { - "name": "max_rd_latency_ns", - "type": "int" - }, - { - "name": "avg_rd_latency_ns", - "type": "int" - }, - { - "name": "min_wr_latency_ns", - "type": "int" - }, - { - "name": "max_wr_latency_ns", - "type": "int" - }, - { - "name": "avg_wr_latency_ns", - "type": "int" - }, - { - "name": "min_flush_latency_ns", - "type": "int" - }, - { - "name": "max_flush_latency_ns", - "type": "int" - }, - { - "name": "avg_flush_latency_ns", - "type": "int" - }, - { - "name": "avg_rd_queue_depth", - "type": "number" - }, - { - "name": "avg_wr_queue_depth", - "type": "number" - } - ], - "meta-type": "object" - }, - { - "name": "336", - "members": [ - { - "name": "boundaries", - "type": "[int]" - }, - { - "name": "bins", - "type": "[int]" - } - ], - "meta-type": "object" - }, - { - "name": "[56]", - "element-type": "56", - "meta-type": "array" - }, - { - "name": "337", - "tag": "type", - "variants": [ - { - "case": "qcow2", - "type": "416" - }, - { - "case": "vmdk", - "type": "417" - }, - { - "case": "luks", - "type": "418" - } - ], - "members": [ - { - "name": "type", - "type": "415" - } - ], - "meta-type": "object" - }, - { - "name": "338", - "members": [ - { - "type": "35" - }, - { - "type": "str" - } - ], - "meta-type": "alternate" - }, - { - "name": "[339]", - "element-type": "339", - "meta-type": "array" - }, - { - "name": "339", - "members": [ - { - "name": "event", - "type": "419" - }, - { - "name": "state", - "default": null, - "type": "int" - }, - { - "name": "errno", - "default": null, - "type": "int" - }, - { - "name": "sector", - "default": null, - "type": "int" - }, - { - "name": "once", - "default": null, - "type": "bool" - }, - { - "name": "immediately", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "[340]", - "element-type": "340", - "meta-type": "array" - }, - { - "name": "340", - "members": [ - { - "name": "event", - "type": "419" - }, - { - "name": "state", - "default": null, - "type": "int" - }, - { - "name": "new_state", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "341", - "meta-type": "enum", - "values": [ - "auto", - "on", - "off" - ] - }, - { - "name": "342", - "meta-type": "enum", - "values": [ - "threads", - "native" - ] - }, - { - "name": "[343]", - "element-type": "343", - "meta-type": "array" - }, - { - "name": "343", - "tag": "type", - "variants": [ - { - "case": "inet", - "type": "354" - }, - { - "case": "unix", - "type": "421" - }, - { - "case": "vsock", - "type": "422" - }, - { - "case": "fd", - "type": "423" - } - ], - "members": [ - { - "name": "type", - "type": "420" - } - ], - "meta-type": "object" - }, - { - "name": "344", - "meta-type": "enum", - "values": [ - "tcp", - "iser" - ] - }, - { - "name": "345", - "meta-type": "enum", - "values": [ - "crc32c", - "none", - "crc32c-none", - "none-crc32c" - ] - }, - { - "name": "346", - "members": [ - { - "name": "type", - "type": "424" - }, - { - "name": "host", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "347", - "members": [ - { - "type": "35" - }, - { - "type": "str" - }, - { - "type": "null" - } - ], - "meta-type": "alternate" - }, - { - "name": "348", - "members": [ - { - "type": "425" - }, - { - "type": "426" - } - ], - "meta-type": "alternate" - }, - { - "name": "349", - "tag": "format", - "variants": [ - { - "case": "aes", - "type": "428" - }, - { - "case": "luks", - "type": "429" - } - ], - "members": [ - { - "name": "format", - "type": "427" - } - ], - "meta-type": "object" - }, - { - "name": "350", - "tag": "format", - "variants": [ - { - "case": "aes", - "type": "428" - } - ], - "members": [ - { - "name": "format", - "type": "430" - } - ], - "meta-type": "object" - }, - { - "name": "[338]", - "element-type": "338", - "meta-type": "array" - }, - { - "name": "351", - "meta-type": "enum", - "values": [ - "quorum", - "fifo" - ] - }, - { - "name": "[352]", - "element-type": "352", - "meta-type": "array" - }, - { - "name": "352", - "members": [ - { - "name": "host", - "type": "str" - }, - { - "name": "port", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "353", - "meta-type": "enum", - "values": [ - "primary", - "secondary" - ] - }, - { - "name": "354", - "members": [ - { - "name": "host", - "type": "str" - }, - { - "name": "port", - "type": "str" - }, - { - "name": "numeric", - "default": null, - "type": "bool" - }, - { - "name": "to", - "default": null, - "type": "int" - }, - { - "name": "ipv4", - "default": null, - "type": "bool" - }, - { - "name": "ipv6", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "355", - "tag": "mode", - "variants": [ - { - "case": "none", - "type": "432" - }, - { - "case": "hash", - "type": "433" - }, - { - "case": "known_hosts", - "type": "432" - } - ], - "members": [ - { - "name": "mode", - "type": "431" - } - ], - "meta-type": "object" - }, - { - "name": "356", - "meta-type": "enum", - "values": [ - "off", - "metadata", - "falloc", - "full" - ] - }, - { - "name": "357", - "meta-type": "enum", - "values": [ - "aes-128", - "aes-192", - "aes-256", - "des-rfb", - "3des", - "cast5-128", - "serpent-128", - "serpent-192", - "serpent-256", - "twofish-128", - "twofish-192", - "twofish-256" - ] - }, - { - "name": "358", - "meta-type": "enum", - "values": [ - "ecb", - "cbc", - "xts", - "ctr" - ] - }, - { - "name": "359", - "meta-type": "enum", - "values": [ - "plain", - "plain64", - "essiv" - ] - }, - { - "name": "360", - "meta-type": "enum", - "values": [ - "md5", - "sha1", - "sha224", - "sha256", - "sha384", - "sha512", - "ripemd160" - ] - }, - { - "name": "361", - "tag": "format", - "variants": [ - { - "case": "qcow", - "type": "428" - }, - { - "case": "luks", - "type": "435" - } - ], - "members": [ - { - "name": "format", - "type": "434" - } - ], - "meta-type": "object" - }, - { - "name": "362", - "meta-type": "enum", - "values": [ - "v2", - "v3" - ] - }, - { - "name": "363", - "tag": "type", - "variants": [ - { - "case": "full", - "type": "437" - }, - { - "case": "erasure-coded", - "type": "438" - } - ], - "members": [ - { - "name": "type", - "type": "436" - } - ], - "meta-type": "object" - }, - { - "name": "364", - "meta-type": "enum", - "values": [ - "dynamic", - "fixed" - ] - }, - { - "name": "365", - "meta-type": "enum", - "values": [ - "dynamic", - "fixed" - ] - }, - { - "name": "null", - "json-type": "null", - "meta-type": "builtin" - }, - { - "name": "366", - "meta-type": "enum", - "values": [ - "inet", - "unix", - "vsock", - "fd" - ] - }, - { - "name": "367", - "members": [ - { - "name": "data", - "type": "354" - } - ], - "meta-type": "object" - }, - { - "name": "368", - "members": [ - { - "name": "data", - "type": "421" - } - ], - "meta-type": "object" - }, - { - "name": "369", - "members": [ - { - "name": "data", - "type": "422" - } - ], - "meta-type": "object" - }, - { - "name": "370", - "members": [ - { - "name": "data", - "type": "423" - } - ], - "meta-type": "object" - }, - { - "name": "371", - "meta-type": "enum", - "values": [ - "file", - "serial", - "parallel", - "pipe", - "socket", - "udp", - "pty", - "null", - "mux", - "msmouse", - "wctablet", - "braille", - "testdev", - "stdio", - "console", - "spicevmc", - "spiceport", - "vc", - "ringbuf", - "memory" - ] - }, - { - "name": "372", - "members": [ - { - "name": "data", - "type": "439" - } - ], - "meta-type": "object" - }, - { - "name": "373", - "members": [ - { - "name": "data", - "type": "440" - } - ], - "meta-type": "object" - }, - { - "name": "374", - "members": [ - { - "name": "data", - "type": "441" - } - ], - "meta-type": "object" - }, - { - "name": "375", - "members": [ - { - "name": "data", - "type": "442" - } - ], - "meta-type": "object" - }, - { - "name": "376", - "members": [ - { - "name": "data", - "type": "443" - } - ], - "meta-type": "object" - }, - { - "name": "377", - "members": [ - { - "name": "data", - "type": "444" - } - ], - "meta-type": "object" - }, - { - "name": "378", - "members": [ - { - "name": "data", - "type": "445" - } - ], - "meta-type": "object" - }, - { - "name": "379", - "members": [ - { - "name": "data", - "type": "446" - } - ], - "meta-type": "object" - }, - { - "name": "380", - "members": [ - { - "name": "data", - "type": "447" - } - ], - "meta-type": "object" - }, - { - "name": "381", - "members": [ - { - "name": "data", - "type": "448" - } - ], - "meta-type": "object" - }, - { - "name": "382", - "members": [ - { - "name": "data", - "type": "449" - } - ], - "meta-type": "object" - }, - { - "name": "383", - "meta-type": "enum", - "values": [ - "passthrough", - "emulator" - ] - }, - { - "name": "384", - "members": [ - { - "name": "data", - "type": "450" - } - ], - "meta-type": "object" - }, - { - "name": "385", - "members": [ - { - "name": "data", - "type": "451" - } - ], - "meta-type": "object" - }, - { - "name": "386", - "meta-type": "enum", - "values": [ - "number", - "qcode" - ] - }, - { - "name": "387", - "members": [ - { - "name": "data", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "388", - "members": [ - { - "name": "data", - "type": "452" - } - ], - "meta-type": "object" - }, - { - "name": "389", - "meta-type": "enum", - "values": [ - "key", - "btn", - "rel", - "abs" - ] - }, - { - "name": "390", - "members": [ - { - "name": "data", - "type": "453" - } - ], - "meta-type": "object" - }, - { - "name": "391", - "members": [ - { - "name": "data", - "type": "454" - } - ], - "meta-type": "object" - }, - { - "name": "392", - "members": [ - { - "name": "data", - "type": "455" - } - ], - "meta-type": "object" - }, - { - "name": "393", - "meta-type": "enum", - "values": [ - "abort", - "block-dirty-bitmap-add", - "block-dirty-bitmap-clear", - "blockdev-backup", - "blockdev-snapshot", - "blockdev-snapshot-internal-sync", - "blockdev-snapshot-sync", - "drive-backup" - ] - }, - { - "name": "394", - "members": [ - { - "name": "data", - "type": "456" - } - ], - "meta-type": "object" - }, - { - "name": "395", - "members": [ - { - "name": "data", - "type": "22" - } - ], - "meta-type": "object" - }, - { - "name": "396", - "members": [ - { - "name": "data", - "type": "23" - } - ], - "meta-type": "object" - }, - { - "name": "397", - "members": [ - { - "name": "data", - "type": "19" - } - ], - "meta-type": "object" - }, - { - "name": "398", - "members": [ - { - "name": "data", - "type": "15" - } - ], - "meta-type": "object" - }, - { - "name": "399", - "members": [ - { - "name": "data", - "type": "54" - } - ], - "meta-type": "object" - }, - { - "name": "400", - "members": [ - { - "name": "data", - "type": "14" - } - ], - "meta-type": "object" - }, - { - "name": "401", - "members": [ - { - "name": "data", - "type": "18" - } - ], - "meta-type": "object" - }, - { - "name": "402", - "meta-type": "enum", - "values": [ - "individual", - "grouped" - ] - }, - { - "name": "403", - "meta-type": "enum", - "values": [ - "string", - "number", - "int", - "boolean", - "null", - "object", - "array", - "value" - ] - }, - { - "name": "[404]", - "element-type": "404", - "meta-type": "array" - }, - { - "name": "404", - "members": [ - { - "name": "name", - "type": "str" - }, - { - "name": "type", - "type": "str" - }, - { - "name": "default", - "default": null, - "type": "any" - } - ], - "meta-type": "object" - }, - { - "name": "[405]", - "element-type": "405", - "meta-type": "array" - }, - { - "name": "405", - "members": [ - { - "name": "case", - "type": "str" - }, - { - "name": "type", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "[406]", - "element-type": "406", - "meta-type": "array" - }, - { - "name": "406", - "members": [ - { - "name": "type", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "407", - "meta-type": "enum", - "values": [ - "uninitialized", - "stopped", - "check-stop", - "operating", - "load" - ] - }, - { - "name": "408", - "members": [ - { - "name": "desc", - "default": null, - "type": "str" - }, - { - "name": "class", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "409", - "members": [ - { - "name": "device", - "type": "int" - }, - { - "name": "vendor", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "410", - "members": [ - { - "name": "bus", - "type": "457" - }, - { - "name": "devices", - "default": null, - "type": "[317]" - } - ], - "meta-type": "object" - }, - { - "name": "[411]", - "element-type": "411", - "meta-type": "array" - }, - { - "name": "411", - "members": [ - { - "name": "bar", - "type": "int" - }, - { - "name": "type", - "type": "str" - }, - { - "name": "address", - "type": "int" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "prefetch", - "default": null, - "type": "bool" - }, - { - "name": "mem_type_64", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "412", - "meta-type": "enum", - "values": [ - "string", - "boolean", - "number", - "size" - ] - }, - { - "name": "413", - "members": [ - { - "name": "id", - "default": null, - "type": "str" - }, - { - "name": "addr", - "type": "int" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "slot", - "type": "int" - }, - { - "name": "node", - "type": "int" - }, - { - "name": "memdev", - "type": "str" - }, - { - "name": "hotplugged", - "type": "bool" - }, - { - "name": "hotpluggable", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "414", - "meta-type": "enum", - "values": [ - "unknown", - "disabled-wait", - "extint-loop", - "pgmint-loop", - "opint-loop" - ] - }, - { - "name": "415", - "meta-type": "enum", - "values": [ - "qcow2", - "vmdk", - "luks" - ] - }, - { - "name": "416", - "members": [ - { - "name": "data", - "type": "458" - } - ], - "meta-type": "object" - }, - { - "name": "417", - "members": [ - { - "name": "data", - "type": "459" - } - ], - "meta-type": "object" - }, - { - "name": "418", - "members": [ - { - "name": "data", - "type": "460" - } - ], - "meta-type": "object" - }, - { - "name": "419", - "meta-type": "enum", - "values": [ - "l1_update", - "l1_grow_alloc_table", - "l1_grow_write_table", - "l1_grow_activate_table", - "l2_load", - "l2_update", - "l2_update_compressed", - "l2_alloc_cow_read", - "l2_alloc_write", - "read_aio", - "read_backing_aio", - "read_compressed", - "write_aio", - "write_compressed", - "vmstate_load", - "vmstate_save", - "cow_read", - "cow_write", - "reftable_load", - "reftable_grow", - "reftable_update", - "refblock_load", - "refblock_update", - "refblock_update_part", - "refblock_alloc", - "refblock_alloc_hookup", - "refblock_alloc_write", - "refblock_alloc_write_blocks", - "refblock_alloc_write_table", - "refblock_alloc_switch_table", - "cluster_alloc", - "cluster_alloc_bytes", - "cluster_free", - "flush_to_os", - "flush_to_disk", - "pwritev_rmw_head", - "pwritev_rmw_after_head", - "pwritev_rmw_tail", - "pwritev_rmw_after_tail", - "pwritev", - "pwritev_zero", - "pwritev_done", - "empty_image_prepare", - "l1_shrink_write_table", - "l1_shrink_free_l2_clusters", - "cor_write" - ] - }, - { - "name": "420", - "meta-type": "enum", - "values": [ - "inet", - "unix", - "vsock", - "fd" - ] - }, - { - "name": "421", - "members": [ - { - "name": "path", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "422", - "members": [ - { - "name": "cid", - "type": "str" - }, - { - "name": "port", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "423", - "members": [ - { - "name": "str", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "424", - "meta-type": "enum", - "values": [ - "inet" - ] - }, - { - "name": "425", - "members": [ - { - "name": "template", - "default": null, - "type": "426" - }, - { - "name": "main-header", - "default": null, - "type": "bool" - }, - { - "name": "active-l1", - "default": null, - "type": "bool" - }, - { - "name": "active-l2", - "default": null, - "type": "bool" - }, - { - "name": "refcount-table", - "default": null, - "type": "bool" - }, - { - "name": "refcount-block", - "default": null, - "type": "bool" - }, - { - "name": "snapshot-table", - "default": null, - "type": "bool" - }, - { - "name": "inactive-l1", - "default": null, - "type": "bool" - }, - { - "name": "inactive-l2", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "426", - "meta-type": "enum", - "values": [ - "none", - "constant", - "cached", - "all" - ] - }, - { - "name": "427", - "meta-type": "enum", - "values": [ - "aes", - "luks" - ] - }, - { - "name": "428", - "members": [ - { - "name": "key-secret", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "429", - "members": [ - { - "name": "key-secret", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "430", - "meta-type": "enum", - "values": [ - "aes" - ] - }, - { - "name": "431", - "meta-type": "enum", - "values": [ - "none", - "hash", - "known_hosts" - ] - }, - { - "name": "432", - "members": [ - ], - "meta-type": "object" - }, - { - "name": "433", - "members": [ - { - "name": "type", - "type": "461" - }, - { - "name": "hash", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "434", - "meta-type": "enum", - "values": [ - "qcow", - "luks" - ] - }, - { - "name": "435", - "members": [ - { - "name": "key-secret", - "default": null, - "type": "str" - }, - { - "name": "cipher-alg", - "default": null, - "type": "357" - }, - { - "name": "cipher-mode", - "default": null, - "type": "358" - }, - { - "name": "ivgen-alg", - "default": null, - "type": "359" - }, - { - "name": "ivgen-hash-alg", - "default": null, - "type": "360" - }, - { - "name": "hash-alg", - "default": null, - "type": "360" - }, - { - "name": "iter-time", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "436", - "meta-type": "enum", - "values": [ - "full", - "erasure-coded" - ] - }, - { - "name": "437", - "members": [ - { - "name": "copies", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "438", - "members": [ - { - "name": "data-strips", - "type": "int" - }, - { - "name": "parity-strips", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "439", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - }, - { - "name": "in", - "default": null, - "type": "str" - }, - { - "name": "out", - "type": "str" - }, - { - "name": "append", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "440", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - }, - { - "name": "device", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "441", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - }, - { - "name": "addr", - "type": "265" - }, - { - "name": "tls-creds", - "default": null, - "type": "str" - }, - { - "name": "server", - "default": null, - "type": "bool" - }, - { - "name": "wait", - "default": null, - "type": "bool" - }, - { - "name": "nodelay", - "default": null, - "type": "bool" - }, - { - "name": "telnet", - "default": null, - "type": "bool" - }, - { - "name": "tn3270", - "default": null, - "type": "bool" - }, - { - "name": "reconnect", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "442", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - }, - { - "name": "remote", - "type": "265" - }, - { - "name": "local", - "default": null, - "type": "265" - } - ], - "meta-type": "object" - }, - { - "name": "443", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "444", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - }, - { - "name": "chardev", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "445", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - }, - { - "name": "signal", - "default": null, - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "446", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - }, - { - "name": "type", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "447", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - }, - { - "name": "fqdn", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "448", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - }, - { - "name": "width", - "default": null, - "type": "int" - }, - { - "name": "height", - "default": null, - "type": "int" - }, - { - "name": "cols", - "default": null, - "type": "int" - }, - { - "name": "rows", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "449", - "members": [ - { - "name": "logfile", - "default": null, - "type": "str" - }, - { - "name": "logappend", - "default": null, - "type": "bool" - }, - { - "name": "size", - "default": null, - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "450", - "members": [ - { - "name": "path", - "default": null, - "type": "str" - }, - { - "name": "cancel-path", - "default": null, - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "451", - "members": [ - { - "name": "chardev", - "type": "str" - } - ], - "meta-type": "object" - }, - { - "name": "452", - "meta-type": "enum", - "values": [ - "unmapped", - "shift", - "shift_r", - "alt", - "alt_r", - "ctrl", - "ctrl_r", - "menu", - "esc", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "0", - "minus", - "equal", - "backspace", - "tab", - "q", - "w", - "e", - "r", - "t", - "y", - "u", - "i", - "o", - "p", - "bracket_left", - "bracket_right", - "ret", - "a", - "s", - "d", - "f", - "g", - "h", - "j", - "k", - "l", - "semicolon", - "apostrophe", - "grave_accent", - "backslash", - "z", - "x", - "c", - "v", - "b", - "n", - "m", - "comma", - "dot", - "slash", - "asterisk", - "spc", - "caps_lock", - "f1", - "f2", - "f3", - "f4", - "f5", - "f6", - "f7", - "f8", - "f9", - "f10", - "num_lock", - "scroll_lock", - "kp_divide", - "kp_multiply", - "kp_subtract", - "kp_add", - "kp_enter", - "kp_decimal", - "sysrq", - "kp_0", - "kp_1", - "kp_2", - "kp_3", - "kp_4", - "kp_5", - "kp_6", - "kp_7", - "kp_8", - "kp_9", - "less", - "f11", - "f12", - "print", - "home", - "pgup", - "pgdn", - "end", - "left", - "up", - "down", - "right", - "insert", - "delete", - "stop", - "again", - "props", - "undo", - "front", - "copy", - "open", - "paste", - "find", - "cut", - "lf", - "help", - "meta_l", - "meta_r", - "compose", - "pause", - "ro", - "hiragana", - "henkan", - "yen", - "muhenkan", - "katakanahiragana", - "kp_comma", - "kp_equals", - "power", - "sleep", - "wake", - "audionext", - "audioprev", - "audiostop", - "audioplay", - "audiomute", - "volumeup", - "volumedown", - "mediaselect", - "mail", - "calculator", - "computer", - "ac_home", - "ac_back", - "ac_forward", - "ac_refresh", - "ac_bookmarks" - ] - }, - { - "name": "453", - "members": [ - { - "name": "key", - "type": "288" - }, - { - "name": "down", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "454", - "members": [ - { - "name": "button", - "type": "462" - }, - { - "name": "down", - "type": "bool" - } - ], - "meta-type": "object" - }, - { - "name": "455", - "members": [ - { - "name": "axis", - "type": "463" - }, - { - "name": "value", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "456", - "members": [ - ], - "meta-type": "object" - }, - { - "name": "457", - "members": [ - { - "name": "number", - "type": "int" - }, - { - "name": "secondary", - "type": "int" - }, - { - "name": "subordinate", - "type": "int" - }, - { - "name": "io_range", - "type": "464" - }, - { - "name": "memory_range", - "type": "464" - }, - { - "name": "prefetchable_range", - "type": "464" - } - ], - "meta-type": "object" - }, - { - "name": "458", - "members": [ - { - "name": "compat", - "type": "str" - }, - { - "name": "lazy-refcounts", - "default": null, - "type": "bool" - }, - { - "name": "corrupt", - "default": null, - "type": "bool" - }, - { - "name": "refcount-bits", - "type": "int" - }, - { - "name": "encrypt", - "default": null, - "type": "465" - } - ], - "meta-type": "object" - }, - { - "name": "459", - "members": [ - { - "name": "create-type", - "type": "str" - }, - { - "name": "cid", - "type": "int" - }, - { - "name": "parent-cid", - "type": "int" - }, - { - "name": "extents", - "type": "[213]" - } - ], - "meta-type": "object" - }, - { - "name": "460", - "members": [ - { - "name": "cipher-alg", - "type": "357" - }, - { - "name": "cipher-mode", - "type": "358" - }, - { - "name": "ivgen-alg", - "type": "359" - }, - { - "name": "ivgen-hash-alg", - "default": null, - "type": "360" - }, - { - "name": "hash-alg", - "type": "360" - }, - { - "name": "payload-offset", - "type": "int" - }, - { - "name": "master-key-iters", - "type": "int" - }, - { - "name": "uuid", - "type": "str" - }, - { - "name": "slots", - "type": "[466]" - } - ], - "meta-type": "object" - }, - { - "name": "461", - "meta-type": "enum", - "values": [ - "md5", - "sha1" - ] - }, - { - "name": "462", - "meta-type": "enum", - "values": [ - "left", - "middle", - "right", - "wheel-up", - "wheel-down", - "side", - "extra" - ] - }, - { - "name": "463", - "meta-type": "enum", - "values": [ - "x", - "y" - ] - }, - { - "name": "464", - "members": [ - { - "name": "base", - "type": "int" - }, - { - "name": "limit", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "465", - "tag": "format", - "variants": [ - { - "case": "aes", - "type": "467" - }, - { - "case": "luks", - "type": "460" - } - ], - "members": [ - { - "name": "format", - "type": "427" - } - ], - "meta-type": "object" - }, - { - "name": "[213]", - "element-type": "213", - "meta-type": "array" - }, - { - "name": "[466]", - "element-type": "466", - "meta-type": "array" - }, - { - "name": "466", - "members": [ - { - "name": "active", - "type": "bool" - }, - { - "name": "iters", - "default": null, - "type": "int" - }, - { - "name": "stripes", - "default": null, - "type": "int" - }, - { - "name": "key-offset", - "type": "int" - } - ], - "meta-type": "object" - }, - { - "name": "467", - "members": [ - ], - "meta-type": "object" - } -] --=20 2.16.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri Apr 26 19:59:41 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1531222753494491.94676331734286; Tue, 10 Jul 2018 04:39:13 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 16E9E81DEC; Tue, 10 Jul 2018 11:39:12 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C394BBB907; Tue, 10 Jul 2018 11:39:11 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 75A324A464; Tue, 10 Jul 2018 11:39:11 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id w69E4tWp001260 for ; Mon, 9 Jul 2018 10:04:55 -0400 Received: by smtp.corp.redhat.com (Postfix) id 30E02111DCE9; Mon, 9 Jul 2018 14:04:55 +0000 (UTC) Received: from angien.brq.redhat.com (unknown [10.43.2.136]) by smtp.corp.redhat.com (Postfix) with ESMTP id 99EDC111DCE8 for ; Mon, 9 Jul 2018 14:04:53 +0000 (UTC) From: Peter Krempa To: libvir-list@redhat.com Date: Mon, 9 Jul 2018 16:12:38 +0200 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.78 on 10.11.54.3 X-loop: libvir-list@redhat.com X-Mailman-Approved-At: Tue, 10 Jul 2018 07:39:09 -0400 Subject: [libvirt] [PATCH 3/4] tests: qemucaps: Add test data for upcoming qemu 3.0.0 X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.27 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Tue, 10 Jul 2018 11:39:12 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Based on qemu commit ab3257c281c1a1a91da1090ac9e38ddd8f860c63 Signed-off-by: Peter Krempa Reviewed-by: J=EF=BF=BDn Tomko --- .../qemucapabilitiesdata/caps_3.0.0.x86_64.replies | 22718 +++++++++++++++= ++++ tests/qemucapabilitiesdata/caps_3.0.0.x86_64.xml | 1213 + tests/qemucapabilitiestest.c | 1 + 3 files changed, 23932 insertions(+) create mode 100644 tests/qemucapabilitiesdata/caps_3.0.0.x86_64.replies create mode 100644 tests/qemucapabilitiesdata/caps_3.0.0.x86_64.xml diff --git a/tests/qemucapabilitiesdata/caps_3.0.0.x86_64.replies b/tests/q= emucapabilitiesdata/caps_3.0.0.x86_64.replies new file mode 100644 index 0000000000..257f0ecbe2 --- /dev/null +++ b/tests/qemucapabilitiesdata/caps_3.0.0.x86_64.replies @@ -0,0 +1,22718 @@ +{ + "execute": "qmp_capabilities", + "id": "libvirt-1" +} + +{ + "return": { + }, + "id": "libvirt-1" +} + +{ + "execute": "query-version", + "id": "libvirt-2" +} + +{ + "return": { + "qemu": { + "micro": 50, + "minor": 12, + "major": 2 + }, + "package": "v2.12.0-2284-gab3257c281" + }, + "id": "libvirt-2" +} + +{ + "execute": "query-target", + "id": "libvirt-3" +} + +{ + "return": { + "arch": "x86_64" + }, + "id": "libvirt-3" +} + +{ + "execute": "query-commands", + "id": "libvirt-4" +} + +{ + "return": [ + { + "name": "netdev_add" + }, + { + "name": "device_add" + }, + { + "name": "query-qmp-schema" + }, + { + "name": "set-numa-node" + }, + { + "name": "query-sev-capabilities" + }, + { + "name": "query-sev-launch-measure" + }, + { + "name": "query-sev" + }, + { + "name": "query-vm-generation-id" + }, + { + "name": "query-hotpluggable-cpus" + }, + { + "name": "xen-load-devices-state" + }, + { + "name": "rtc-reset-reinjection" + }, + { + "name": "query-acpi-ospm-status" + }, + { + "name": "query-memory-devices" + }, + { + "name": "query-memdev" + }, + { + "name": "query-command-line-options" + }, + { + "name": "query-target" + }, + { + "name": "query-fdsets" + }, + { + "name": "remove-fd" + }, + { + "name": "add-fd" + }, + { + "name": "query-cpu-model-expansion" + }, + { + "name": "query-cpu-definitions" + }, + { + "name": "query-memory-size-summary" + }, + { + "name": "query-machines" + }, + { + "name": "closefd" + }, + { + "name": "getfd" + }, + { + "name": "object-del" + }, + { + "name": "object-add" + }, + { + "name": "query-dump-guest-memory-capability" + }, + { + "name": "query-dump" + }, + { + "name": "dump-guest-memory" + }, + { + "name": "device_del" + }, + { + "name": "xen-set-global-dirty-log" + }, + { + "name": "qom-list-properties" + }, + { + "name": "device-list-properties" + }, + { + "name": "qom-list-types" + }, + { + "name": "change" + }, + { + "name": "qom-set" + }, + { + "name": "qom-get" + }, + { + "name": "qom-list" + }, + { + "name": "human-monitor-command" + }, + { + "name": "balloon" + }, + { + "name": "inject-nmi" + }, + { + "name": "system_wakeup" + }, + { + "name": "exit-preconfig" + }, + { + "name": "cont" + }, + { + "name": "pmemsave" + }, + { + "name": "memsave" + }, + { + "name": "cpu-add" + }, + { + "name": "system_powerdown" + }, + { + "name": "system_reset" + }, + { + "name": "stop" + }, + { + "name": "quit" + }, + { + "name": "query-pci" + }, + { + "name": "query-balloon" + }, + { + "name": "query-iothreads" + }, + { + "name": "query-cpus-fast" + }, + { + "name": "query-cpus" + }, + { + "name": "query-events" + }, + { + "name": "query-uuid" + }, + { + "name": "query-kvm" + }, + { + "name": "query-name" + }, + { + "name": "add_client" + }, + { + "name": "query-commands" + }, + { + "name": "query-version" + }, + { + "name": "qmp_capabilities" + }, + { + "name": "trace-event-set-state" + }, + { + "name": "trace-event-get-state" + }, + { + "name": "transaction" + }, + { + "name": "migrate-pause" + }, + { + "name": "migrate-recover" + }, + { + "name": "xen-colo-do-checkpoint" + }, + { + "name": "query-xen-replication-status" + }, + { + "name": "xen-set-replication" + }, + { + "name": "xen-save-devices-state" + }, + { + "name": "migrate-incoming" + }, + { + "name": "migrate" + }, + { + "name": "query-migrate-cache-size" + }, + { + "name": "migrate-set-cache-size" + }, + { + "name": "migrate_set_speed" + }, + { + "name": "migrate_set_downtime" + }, + { + "name": "migrate-continue" + }, + { + "name": "migrate_cancel" + }, + { + "name": "x-colo-lost-heartbeat" + }, + { + "name": "migrate-start-postcopy" + }, + { + "name": "client_migrate_info" + }, + { + "name": "query-migrate-parameters" + }, + { + "name": "migrate-set-parameters" + }, + { + "name": "query-migrate-capabilities" + }, + { + "name": "migrate-set-capabilities" + }, + { + "name": "query-migrate" + }, + { + "name": "input-send-event" + }, + { + "name": "send-key" + }, + { + "name": "query-mice" + }, + { + "name": "change-vnc-password" + }, + { + "name": "query-vnc-servers" + }, + { + "name": "query-vnc" + }, + { + "name": "query-spice" + }, + { + "name": "screendump" + }, + { + "name": "expire_password" + }, + { + "name": "set_password" + }, + { + "name": "query-tpm" + }, + { + "name": "query-tpm-types" + }, + { + "name": "query-tpm-models" + }, + { + "name": "query-rocker-of-dpa-groups" + }, + { + "name": "query-rocker-of-dpa-flows" + }, + { + "name": "query-rocker-ports" + }, + { + "name": "query-rocker" + }, + { + "name": "query-rx-filter" + }, + { + "name": "netdev_del" + }, + { + "name": "set_link" + }, + { + "name": "chardev-send-break" + }, + { + "name": "chardev-remove" + }, + { + "name": "chardev-change" + }, + { + "name": "chardev-add" + }, + { + "name": "ringbuf-read" + }, + { + "name": "ringbuf-write" + }, + { + "name": "query-chardev-backends" + }, + { + "name": "query-chardev" + }, + { + "name": "nbd-server-stop" + }, + { + "name": "x-nbd-server-add-bitmap" + }, + { + "name": "nbd-server-remove" + }, + { + "name": "nbd-server-add" + }, + { + "name": "nbd-server-start" + }, + { + "name": "eject" + }, + { + "name": "blockdev-snapshot-delete-internal-sync" + }, + { + "name": "blockdev-snapshot-internal-sync" + }, + { + "name": "query-pr-managers" + }, + { + "name": "x-blockdev-set-iothread" + }, + { + "name": "x-blockdev-change" + }, + { + "name": "block-set-write-threshold" + }, + { + "name": "blockdev-change-medium" + }, + { + "name": "blockdev-insert-medium" + }, + { + "name": "blockdev-remove-medium" + }, + { + "name": "blockdev-close-tray" + }, + { + "name": "blockdev-open-tray" + }, + { + "name": "blockdev-create" + }, + { + "name": "blockdev-del" + }, + { + "name": "blockdev-add" + }, + { + "name": "block-job-finalize" + }, + { + "name": "block-job-dismiss" + }, + { + "name": "block-job-complete" + }, + { + "name": "block-job-resume" + }, + { + "name": "block-job-pause" + }, + { + "name": "block-job-cancel" + }, + { + "name": "block-job-set-speed" + }, + { + "name": "block-stream" + }, + { + "name": "block_set_io_throttle" + }, + { + "name": "blockdev-mirror" + }, + { + "name": "x-debug-block-dirty-bitmap-sha256" + }, + { + "name": "x-block-dirty-bitmap-merge" + }, + { + "name": "x-block-dirty-bitmap-disable" + }, + { + "name": "x-block-dirty-bitmap-enable" + }, + { + "name": "block-dirty-bitmap-clear" + }, + { + "name": "block-dirty-bitmap-remove" + }, + { + "name": "block-dirty-bitmap-add" + }, + { + "name": "drive-mirror" + }, + { + "name": "query-named-block-nodes" + }, + { + "name": "blockdev-backup" + }, + { + "name": "drive-backup" + }, + { + "name": "block-commit" + }, + { + "name": "change-backing-file" + }, + { + "name": "blockdev-snapshot" + }, + { + "name": "blockdev-snapshot-sync" + }, + { + "name": "block_resize" + }, + { + "name": "block_passwd" + }, + { + "name": "query-block-jobs" + }, + { + "name": "query-blockstats" + }, + { + "name": "query-block" + }, + { + "name": "x-block-latency-histogram-set" + }, + { + "name": "query-jobs" + }, + { + "name": "job-finalize" + }, + { + "name": "job-dismiss" + }, + { + "name": "job-complete" + }, + { + "name": "job-cancel" + }, + { + "name": "job-resume" + }, + { + "name": "job-pause" + }, + { + "name": "watchdog-set-action" + }, + { + "name": "query-status" + } + ], + "id": "libvirt-4" +} + +{ + "execute": "add-fd", + "arguments": { + "fdset-id": 0, + "opaque": "/dev/null" + }, + "id": "libvirt-5" +} + +{ + "return": { + "fd": 17, + "fdset-id": 0 + }, + "id": "libvirt-5" +} + +{ + "execute": "block-commit", + "arguments": { + "device": "bogus" + }, + "id": "libvirt-6" +} + +{ + "id": "libvirt-6", + "error": { + "class": "DeviceNotFound", + "desc": "Device 'bogus' not found" + } +} + +{ + "execute": "query-kvm", + "id": "libvirt-7" +} + +{ + "return": { + "enabled": true, + "present": true + }, + "id": "libvirt-7" +} + +{ + "execute": "query-events", + "id": "libvirt-8" +} + +{ + "return": [ + { + "name": "COMMAND_DROPPED" + }, + { + "name": "RTC_CHANGE" + }, + { + "name": "ACPI_DEVICE_OST" + }, + { + "name": "MEM_UNPLUG_ERROR" + }, + { + "name": "DUMP_COMPLETED" + }, + { + "name": "DEVICE_DELETED" + }, + { + "name": "BALLOON_CHANGE" + }, + { + "name": "MIGRATION_PASS" + }, + { + "name": "MIGRATION" + }, + { + "name": "VNC_DISCONNECTED" + }, + { + "name": "VNC_INITIALIZED" + }, + { + "name": "VNC_CONNECTED" + }, + { + "name": "SPICE_MIGRATE_COMPLETED" + }, + { + "name": "SPICE_DISCONNECTED" + }, + { + "name": "SPICE_INITIALIZED" + }, + { + "name": "SPICE_CONNECTED" + }, + { + "name": "NIC_RX_FILTER_CHANGED" + }, + { + "name": "VSERPORT_CHANGE" + }, + { + "name": "QUORUM_REPORT_BAD" + }, + { + "name": "QUORUM_FAILURE" + }, + { + "name": "PR_MANAGER_STATUS_CHANGED" + }, + { + "name": "DEVICE_TRAY_MOVED" + }, + { + "name": "BLOCK_WRITE_THRESHOLD" + }, + { + "name": "BLOCK_JOB_PENDING" + }, + { + "name": "BLOCK_JOB_READY" + }, + { + "name": "BLOCK_JOB_ERROR" + }, + { + "name": "BLOCK_JOB_CANCELLED" + }, + { + "name": "BLOCK_JOB_COMPLETED" + }, + { + "name": "BLOCK_IO_ERROR" + }, + { + "name": "BLOCK_IMAGE_CORRUPTED" + }, + { + "name": "JOB_STATUS_CHANGE" + }, + { + "name": "GUEST_PANICKED" + }, + { + "name": "WATCHDOG" + }, + { + "name": "WAKEUP" + }, + { + "name": "SUSPEND_DISK" + }, + { + "name": "SUSPEND" + }, + { + "name": "RESUME" + }, + { + "name": "STOP" + }, + { + "name": "RESET" + }, + { + "name": "POWERDOWN" + }, + { + "name": "SHUTDOWN" + } + ], + "id": "libvirt-8" +} + +{ + "execute": "qom-list-types", + "id": "libvirt-9" +} + +{ + "return": [ + { + "name": "vhost-vsock-pci", + "parent": "virtio-pci" + }, + { + "name": "scsi-generic", + "parent": "scsi-device" + }, + { + "name": "qio-channel-tls", + "parent": "qio-channel" + }, + { + "name": "scsi-hd", + "parent": "scsi-disk-base" + }, + { + "name": "pc-0.10-machine", + "parent": "generic-pc-machine" + }, + { + "name": "usb-bot", + "parent": "usb-storage-dev" + }, + { + "name": "chardev-null", + "parent": "chardev" + }, + { + "name": "chardev-parallel", + "parent": "chardev" + }, + { + "name": "qemu-xhci", + "parent": "base-xhci" + }, + { + "name": "lsi53c895a", + "parent": "pci-device" + }, + { + "name": "kvm-ioapic", + "parent": "ioapic-common" + }, + { + "name": "virtio-keyboard-pci", + "parent": "virtio-input-hid-pci" + }, + { + "name": "xen-sysbus", + "parent": "bus" + }, + { + "name": "i440FX", + "parent": "pci-device" + }, + { + "name": "ide-hd", + "parent": "ide-device" + }, + { + "name": "Opteron_G1-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "kvm64-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "virtio-net-device", + "parent": "virtio-device" + }, + { + "name": "kvm-i8259", + "parent": "pic-common" + }, + { + "name": "at24c-eeprom", + "parent": "i2c-slave" + }, + { + "name": "chardev-pty", + "parent": "chardev" + }, + { + "name": "xen-apic", + "parent": "apic-common" + }, + { + "name": "SUNW,fdtwo", + "parent": "base-sysbus-fdc" + }, + { + "name": "isa-pcspk", + "parent": "isa-device" + }, + { + "name": "Haswell-IBRS-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "loader", + "parent": "device" + }, + { + "name": "filter-rewriter", + "parent": "netfilter" + }, + { + "name": "virtio-serial-pci", + "parent": "virtio-pci" + }, + { + "name": "Nehalem-IBRS-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "pc-0.12-machine", + "parent": "generic-pc-machine" + }, + { + "name": "pcie-root-port", + "parent": "pcie-root-port-base" + }, + { + "name": "virtio-crypto-device", + "parent": "virtio-device" + }, + { + "name": "usb-host", + "parent": "usb-device" + }, + { + "name": "pc-0.11-machine", + "parent": "generic-pc-machine" + }, + { + "name": "usb-bt-dongle", + "parent": "usb-device" + }, + { + "name": "igd-passthrough-isa-bridge", + "parent": "pci-device" + }, + { + "name": "qemu64-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "virtio-input-host-pci", + "parent": "virtio-input-pci" + }, + { + "name": "pc-i440fx-2.10-machine", + "parent": "generic-pc-machine" + }, + { + "name": "phenom-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "e1000", + "parent": "e1000-base" + }, + { + "name": "PIIX3-xen", + "parent": "pci-piix3" + }, + { + "name": "pc-i440fx-1.4-machine", + "parent": "generic-pc-machine" + }, + { + "name": "ICH9-LPC", + "parent": "pci-device" + }, + { + "name": "sysbus-ahci", + "parent": "sys-bus-device" + }, + { + "name": "ich9-usb-uhci4", + "parent": "pci-uhci-usb" + }, + { + "name": "ich9-usb-uhci6", + "parent": "pci-uhci-usb" + }, + { + "name": "pc-q35-2.6-machine", + "parent": "generic-pc-machine" + }, + { + "name": "usb-mtp", + "parent": "usb-device" + }, + { + "name": "ich9-usb-uhci5", + "parent": "pci-uhci-usb" + }, + { + "name": "chardev-spicevmc", + "parent": "chardev-spice" + }, + { + "name": "ich9-usb-uhci3", + "parent": "pci-uhci-usb" + }, + { + "name": "ich9-usb-uhci2", + "parent": "pci-uhci-usb" + }, + { + "name": "ich9-usb-uhci1", + "parent": "pci-uhci-usb" + }, + { + "name": "tls-creds-psk", + "parent": "tls-creds" + }, + { + "name": "tpci200", + "parent": "pci-device" + }, + { + "name": "memory-backend-file", + "parent": "memory-backend" + }, + { + "name": "pc-q35-2.5-machine", + "parent": "generic-pc-machine" + }, + { + "name": "AMDVI-PCI", + "parent": "pci-device" + }, + { + "name": "rtl8139", + "parent": "pci-device" + }, + { + "name": "chardev-hci", + "parent": "chardev" + }, + { + "name": "pc-q35-2.4-machine", + "parent": "generic-pc-machine" + }, + { + "name": "megasas", + "parent": "megasas-base" + }, + { + "name": "base-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "container", + "parent": "object" + }, + { + "name": "qxl-vga", + "parent": "pci-qxl" + }, + { + "name": "scsi-block", + "parent": "scsi-disk-base" + }, + { + "name": "Opteron_G2-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "unimplemented-device", + "parent": "sys-bus-device" + }, + { + "name": "pc-i440fx-3.0-machine", + "parent": "generic-pc-machine" + }, + { + "name": "scsi-cd", + "parent": "scsi-disk-base" + }, + { + "name": "pxb-bus", + "parent": "PCI" + }, + { + "name": "pc-0.14-machine", + "parent": "generic-pc-machine" + }, + { + "name": "accel", + "parent": "object" + }, + { + "name": "pc-i440fx-2.12-machine", + "parent": "generic-pc-machine" + }, + { + "name": "floppy-bus", + "parent": "bus" + }, + { + "name": "usb-audio", + "parent": "usb-device" + }, + { + "name": "virtio-vga", + "parent": "virtio-pci" + }, + { + "name": "vmware-svga", + "parent": "pci-device" + }, + { + "name": "isa-serial", + "parent": "isa-device" + }, + { + "name": "pc-0.13-machine", + "parent": "generic-pc-machine" + }, + { + "name": "vhost-scsi-pci", + "parent": "virtio-pci" + }, + { + "name": "virtio-serial-device", + "parent": "virtio-device" + }, + { + "name": "isa-debug-exit", + "parent": "isa-device" + }, + { + "name": "chardev-gdb", + "parent": "chardev" + }, + { + "name": "fdc37m81x-superio", + "parent": "isa-superio" + }, + { + "name": "pc-testdev", + "parent": "isa-device" + }, + { + "name": "xen-backend", + "parent": "xen-sysdev" + }, + { + "name": "Haswell-noTSX-IBRS-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "pr-manager-helper", + "parent": "pr-manager" + }, + { + "name": "fw_cfg_mem", + "parent": "fw_cfg" + }, + { + "name": "tls-creds-anon", + "parent": "tls-creds" + }, + { + "name": "pc-q35-2.8-machine", + "parent": "generic-pc-machine" + }, + { + "name": "ide-cd", + "parent": "ide-device" + }, + { + "name": "usb-uas", + "parent": "usb-device" + }, + { + "name": "pc-i440fx-2.11-machine", + "parent": "generic-pc-machine" + }, + { + "name": "pc-i440fx-1.6-machine", + "parent": "generic-pc-machine" + }, + { + "name": "chardev-socket", + "parent": "chardev" + }, + { + "name": "virtio-balloon-pci", + "parent": "virtio-pci" + }, + { + "name": "iothread", + "parent": "object" + }, + { + "name": "filter-redirector", + "parent": "netfilter" + }, + { + "name": "sb16", + "parent": "isa-device" + }, + { + "name": "486-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "pc-q35-2.7-machine", + "parent": "generic-pc-machine" + }, + { + "name": "pc-i440fx-1.5-machine", + "parent": "generic-pc-machine" + }, + { + "name": "chardev-mux", + "parent": "chardev" + }, + { + "name": "bochs-display", + "parent": "pci-device" + }, + { + "name": "usb-ccid", + "parent": "usb-device" + }, + { + "name": "isa-cirrus-vga", + "parent": "isa-device" + }, + { + "name": "vhost-vsock-device", + "parent": "virtio-device" + }, + { + "name": "sdhci-pci", + "parent": "pci-device" + }, + { + "name": "virtio-input-host-device", + "parent": "virtio-input-device" + }, + { + "name": "i82559er", + "parent": "pci-device" + }, + { + "name": "pci-bridge", + "parent": "base-pci-bridge" + }, + { + "name": "cs4231a", + "parent": "isa-device" + }, + { + "name": "ivshmem-doorbell", + "parent": "ivshmem-common" + }, + { + "name": "chardev-udp", + "parent": "chardev" + }, + { + "name": "virtio-rng-device", + "parent": "virtio-device" + }, + { + "name": "isa-parallel", + "parent": "isa-device" + }, + { + "name": "piix4-ide", + "parent": "pci-ide" + }, + { + "name": "adlib", + "parent": "isa-device" + }, + { + "name": "pc-0.15-machine", + "parent": "generic-pc-machine" + }, + { + "name": "kvmvapic", + "parent": "sys-bus-device" + }, + { + "name": "hda-micro", + "parent": "hda-audio" + }, + { + "name": "pci-bridge-seat", + "parent": "pci-bridge" + }, + { + "name": "dc390", + "parent": "am53c974" + }, + { + "name": "qemu,register", + "parent": "device" + }, + { + "name": "IDE", + "parent": "bus" + }, + { + "name": "fw_cfg_io", + "parent": "fw_cfg" + }, + { + "name": "tpm-crb", + "parent": "device" + }, + { + "name": "memory-backend-ram", + "parent": "memory-backend" + }, + { + "name": "am53c974", + "parent": "pci-device" + }, + { + "name": "virtio-blk-device", + "parent": "virtio-device" + }, + { + "name": "nvdimm", + "parent": "pc-dimm" + }, + { + "name": "mc146818rtc", + "parent": "isa-device" + }, + { + "name": "qio-channel-websock", + "parent": "qio-channel" + }, + { + "name": "qio-channel-file", + "parent": "qio-channel" + }, + { + "name": "chardev-msmouse", + "parent": "chardev" + }, + { + "name": "chardev-pipe", + "parent": "chardev-fd" + }, + { + "name": "pc-q35-2.9-machine", + "parent": "generic-pc-machine" + }, + { + "name": "pc-i440fx-1.7-machine", + "parent": "generic-pc-machine" + }, + { + "name": "cryptodev-backend-builtin", + "parent": "cryptodev-backend" + }, + { + "name": "hda-output", + "parent": "hda-audio" + }, + { + "name": "mmio_interface", + "parent": "device" + }, + { + "name": "chardev-spiceport", + "parent": "chardev-spice" + }, + { + "name": "VGA", + "parent": "pci-vga" + }, + { + "name": "KnightsMill-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "sga", + "parent": "isa-device" + }, + { + "name": "i8257", + "parent": "isa-device" + }, + { + "name": "qio-net-listener", + "parent": "object" + }, + { + "name": "port92", + "parent": "isa-device" + }, + { + "name": "mptsas1068", + "parent": "pci-device" + }, + { + "name": "edu", + "parent": "pci-device" + }, + { + "name": "virtio-mouse-pci", + "parent": "virtio-input-hid-pci" + }, + { + "name": "Skylake-Client-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "ICH9 SMB", + "parent": "pci-device" + }, + { + "name": "Broadwell-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "vfio-pci-igd-lpc-bridge", + "parent": "pci-device" + }, + { + "name": "HDA", + "parent": "bus" + }, + { + "name": "n270-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "pcm3680_pci", + "parent": "pci-device" + }, + { + "name": "usb-redir", + "parent": "usb-device" + }, + { + "name": "floppy", + "parent": "device" + }, + { + "name": "qemu:memory-region", + "parent": "object" + }, + { + "name": "mioe3680_pci", + "parent": "pci-device" + }, + { + "name": "sysbus-ohci", + "parent": "sys-bus-device" + }, + { + "name": "chardev-ringbuf", + "parent": "chardev" + }, + { + "name": "max-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "can-bus", + "parent": "object" + }, + { + "name": "qtest-accel", + "parent": "accel" + }, + { + "name": "qio-channel-command", + "parent": "qio-channel" + }, + { + "name": "pxb-host", + "parent": "pci-host-bridge" + }, + { + "name": "IvyBridge-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "xio3130-downstream", + "parent": "pcie-slot" + }, + { + "name": "virtio-gpu-device", + "parent": "virtio-device" + }, + { + "name": "virtio-blk-pci", + "parent": "virtio-pci" + }, + { + "name": "cirrus-vga", + "parent": "pci-device" + }, + { + "name": "isa-ipmi-kcs", + "parent": "isa-device" + }, + { + "name": "kvmclock", + "parent": "sys-bus-device" + }, + { + "name": "cryptodev-vhost-user", + "parent": "cryptodev-backend" + }, + { + "name": "Opteron_G3-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "lsi53c810", + "parent": "lsi53c895a" + }, + { + "name": "System", + "parent": "bus" + }, + { + "name": "Westmere-IBRS-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "usb-serial", + "parent": "usb-serial-dev" + }, + { + "name": "vt82c686b-usb-uhci", + "parent": "pci-uhci-usb" + }, + { + "name": "chardev-file", + "parent": "chardev-fd" + }, + { + "name": "pc-q35-2.10-machine", + "parent": "generic-pc-machine" + }, + { + "name": "intel-iommu", + "parent": "x86-iommu" + }, + { + "name": "PCIE", + "parent": "PCI" + }, + { + "name": "tpm-tis", + "parent": "isa-device" + }, + { + "name": "xen-sysdev", + "parent": "sys-bus-device" + }, + { + "name": "pcie-pci-bridge", + "parent": "base-pci-bridge" + }, + { + "name": "qio-dns-resolver", + "parent": "object" + }, + { + "name": "vhost-user-blk-pci", + "parent": "virtio-pci" + }, + { + "name": "virtio-serial-bus", + "parent": "bus" + }, + { + "name": "kvm-pit", + "parent": "pit-common" + }, + { + "name": "secondary-vga", + "parent": "pci-vga" + }, + { + "name": "vhost-scsi", + "parent": "vhost-scsi-common" + }, + { + "name": "pci-ohci", + "parent": "pci-device" + }, + { + "name": "cfi.pflash01", + "parent": "sys-bus-device" + }, + { + "name": "usb-hub", + "parent": "usb-device" + }, + { + "name": "ccid-bus", + "parent": "bus" + }, + { + "name": "xenpv-machine", + "parent": "machine" + }, + { + "name": "EPYC-IBPB-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "input-linux", + "parent": "object" + }, + { + "name": "piix3-ide-xen", + "parent": "pci-ide" + }, + { + "name": "vmgenid", + "parent": "device" + }, + { + "name": "pc-q35-3.0-machine", + "parent": "generic-pc-machine" + }, + { + "name": "pci-serial", + "parent": "pci-device" + }, + { + "name": "vmport", + "parent": "isa-device" + }, + { + "name": "vhost-user-scsi-pci", + "parent": "virtio-pci" + }, + { + "name": "ipmi-bmc-extern", + "parent": "ipmi-bmc" + }, + { + "name": "PIIX4_PM", + "parent": "pci-device" + }, + { + "name": "i8042", + "parent": "isa-device" + }, + { + "name": "coreduo-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "i82559c", + "parent": "pci-device" + }, + { + "name": "i82559b", + "parent": "pci-device" + }, + { + "name": "i82559a", + "parent": "pci-device" + }, + { + "name": "pc-q35-2.12-machine", + "parent": "generic-pc-machine" + }, + { + "name": "SCSI", + "parent": "bus" + }, + { + "name": "rocker", + "parent": "pci-device" + }, + { + "name": "pcnet", + "parent": "pci-device" + }, + { + "name": "rng-egd", + "parent": "rng-backend" + }, + { + "name": "Skylake-Server-IBRS-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "Opteron_G4-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "pc-q35-2.11-machine", + "parent": "generic-pc-machine" + }, + { + "name": "chardev-testdev", + "parent": "chardev" + }, + { + "name": "PIIX3", + "parent": "pci-piix3" + }, + { + "name": "filter-dump", + "parent": "netfilter" + }, + { + "name": "migration", + "parent": "device" + }, + { + "name": "vmmouse", + "parent": "isa-device" + }, + { + "name": "i82558b", + "parent": "pci-device" + }, + { + "name": "i82558a", + "parent": "pci-device" + }, + { + "name": "ioapic", + "parent": "ioapic-common" + }, + { + "name": "smbus-eeprom", + "parent": "smbus-device" + }, + { + "name": "Haswell-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "i82801", + "parent": "pci-device" + }, + { + "name": "tls-creds-x509", + "parent": "tls-creds" + }, + { + "name": "virtio-net-pci", + "parent": "virtio-pci" + }, + { + "name": "virtio-keyboard-device", + "parent": "virtio-input-hid-device" + }, + { + "name": "i82562", + "parent": "pci-device" + }, + { + "name": "Haswell-noTSX-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "usb-net", + "parent": "usb-device" + }, + { + "name": "tpm-passthrough", + "parent": "tpm-backend" + }, + { + "name": "q35-pcihost", + "parent": "pcie-host-bridge" + }, + { + "name": "amd-iommu", + "parent": "x86-iommu" + }, + { + "name": "i440FX-pcihost", + "parent": "pci-host-bridge" + }, + { + "name": "i82557c", + "parent": "pci-device" + }, + { + "name": "i82557b", + "parent": "pci-device" + }, + { + "name": "i82557a", + "parent": "pci-device" + }, + { + "name": "chardev-memory", + "parent": "chardev-ringbuf" + }, + { + "name": "isa-i8259", + "parent": "pic-common" + }, + { + "name": "virtio-gpu-pci", + "parent": "virtio-pci" + }, + { + "name": "i82551", + "parent": "pci-device" + }, + { + "name": "pc-i440fx-2.0-machine", + "parent": "generic-pc-machine" + }, + { + "name": "SandyBridge-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "split-irq", + "parent": "device" + }, + { + "name": "usb-mouse", + "parent": "usb-hid" + }, + { + "name": "sdhci-bus", + "parent": "sd-bus" + }, + { + "name": "i82550", + "parent": "pci-device" + }, + { + "name": "host-x86_64-cpu", + "parent": "max-x86_64-cpu" + }, + { + "name": "virtio-crypto-pci", + "parent": "virtio-pci" + }, + { + "name": "ich9-usb-ehci1", + "parent": "pci-ehci-usb" + }, + { + "name": "ich9-usb-ehci2", + "parent": "pci-ehci-usb" + }, + { + "name": "vfio-pci", + "parent": "pci-device" + }, + { + "name": "filter-mirror", + "parent": "netfilter" + }, + { + "name": "isa-ide", + "parent": "isa-device" + }, + { + "name": "irq", + "parent": "object" + }, + { + "name": "throttle-group", + "parent": "object" + }, + { + "name": "IvyBridge-IBRS-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "memory-backend-memfd", + "parent": "memory-backend" + }, + { + "name": "can-host-socketcan", + "parent": "can-host" + }, + { + "name": "nec-usb-xhci", + "parent": "base-xhci" + }, + { + "name": "qio-channel-socket", + "parent": "qio-channel" + }, + { + "name": "pvscsi", + "parent": "pci-device" + }, + { + "name": "piix3-usb-uhci", + "parent": "pci-uhci-usb" + }, + { + "name": "virtserialport", + "parent": "virtio-serial-port" + }, + { + "name": "sd-bus", + "parent": "bus" + }, + { + "name": "Opteron_G5-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "ich9-ahci", + "parent": "pci-device" + }, + { + "name": "chardev-stdio", + "parent": "chardev-fd" + }, + { + "name": "Skylake-Client-IBRS-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "pc-dimm", + "parent": "device" + }, + { + "name": "gus", + "parent": "isa-device" + }, + { + "name": "hyperv-testdev", + "parent": "isa-device" + }, + { + "name": "isa-vga", + "parent": "isa-device" + }, + { + "name": "pc-i440fx-2.2-machine", + "parent": "generic-pc-machine" + }, + { + "name": "xen-pci-passthrough", + "parent": "pci-device" + }, + { + "name": "cryptodev-backend", + "parent": "object" + }, + { + "name": "IndustryPack", + "parent": "bus" + }, + { + "name": "pc-i440fx-2.1-machine", + "parent": "generic-pc-machine" + }, + { + "name": "or-irq", + "parent": "device" + }, + { + "name": "ipmi-bmc-sim", + "parent": "ipmi-bmc" + }, + { + "name": "Broadwell-noTSX-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "usb-ehci", + "parent": "pci-ehci-usb" + }, + { + "name": "pentium2-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "chardev-vc", + "parent": "chardev" + }, + { + "name": "virtio-rng-pci", + "parent": "virtio-pci" + }, + { + "name": "filter-replay", + "parent": "netfilter" + }, + { + "name": "e1000-82545em", + "parent": "e1000-base" + }, + { + "name": "chardev-wctablet", + "parent": "chardev" + }, + { + "name": "pc-i440fx-2.5-machine", + "parent": "generic-pc-machine" + }, + { + "name": "e1000-82544gc", + "parent": "e1000-base" + }, + { + "name": "hpet", + "parent": "sys-bus-device" + }, + { + "name": "Broadwell-noTSX-IBRS-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "ioh3420", + "parent": "pcie-root-port-base" + }, + { + "name": "pc-i440fx-2.4-machine", + "parent": "generic-pc-machine" + }, + { + "name": "virtio-9p-pci", + "parent": "virtio-pci" + }, + { + "name": "vmcoreinfo", + "parent": "device" + }, + { + "name": "filter-buffer", + "parent": "netfilter" + }, + { + "name": "pci-serial-4x", + "parent": "pci-device" + }, + { + "name": "athlon-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "ich9-intel-hda", + "parent": "intel-hda-generic" + }, + { + "name": "pc-i440fx-2.3-machine", + "parent": "generic-pc-machine" + }, + { + "name": "virtio-9p-device", + "parent": "virtio-device" + }, + { + "name": "ivshmem", + "parent": "ivshmem-common" + }, + { + "name": "imx-usdhc", + "parent": "generic-sdhci" + }, + { + "name": "isa-ipmi-bt", + "parent": "isa-device" + }, + { + "name": "ipoctal232", + "parent": "ipack-device" + }, + { + "name": "virtio-tablet-device", + "parent": "virtio-input-hid-device" + }, + { + "name": "virtio-scsi-pci", + "parent": "virtio-pci" + }, + { + "name": "piix3-ide", + "parent": "pci-ide" + }, + { + "name": "ES1370", + "parent": "pci-device" + }, + { + "name": "xen-pvdevice", + "parent": "pci-device" + }, + { + "name": "virtio-pci-bus", + "parent": "virtio-bus" + }, + { + "name": "x3130-upstream", + "parent": "pcie-port" + }, + { + "name": "xenfv-machine", + "parent": "generic-pc-machine" + }, + { + "name": "pci-testdev", + "parent": "pci-device" + }, + { + "name": "qemu-console", + "parent": "object" + }, + { + "name": "ISA", + "parent": "bus" + }, + { + "name": "piix4-usb-uhci", + "parent": "pci-uhci-usb" + }, + { + "name": "pc-i440fx-2.7-machine", + "parent": "generic-pc-machine" + }, + { + "name": "tcg-accel", + "parent": "accel" + }, + { + "name": "virtconsole", + "parent": "virtserialport" + }, + { + "name": "pentium3-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "pci-serial-2x", + "parent": "pci-device" + }, + { + "name": "ne2k_isa", + "parent": "isa-device" + }, + { + "name": "Nehalem-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "isa-fdc", + "parent": "isa-device" + }, + { + "name": "pc-i440fx-2.6-machine", + "parent": "generic-pc-machine" + }, + { + "name": "xen-platform", + "parent": "pci-device" + }, + { + "name": "chardev-serial", + "parent": "chardev-fd" + }, + { + "name": "igd-passthrough-i440FX", + "parent": "i440FX" + }, + { + "name": "colo-compare", + "parent": "object" + }, + { + "name": "e1000e", + "parent": "pci-device" + }, + { + "name": "virtio-tablet-pci", + "parent": "virtio-input-hid-pci" + }, + { + "name": "usb-bus", + "parent": "bus" + }, + { + "name": "smc37c669-superio", + "parent": "isa-superio" + }, + { + "name": "i82801b11-bridge", + "parent": "base-pci-bridge" + }, + { + "name": "PCI", + "parent": "bus" + }, + { + "name": "usb-storage", + "parent": "usb-storage-dev" + }, + { + "name": "vhost-user-scsi", + "parent": "vhost-scsi-common" + }, + { + "name": "mch", + "parent": "pci-device" + }, + { + "name": "ib700", + "parent": "isa-device" + }, + { + "name": "esp", + "parent": "sys-bus-device" + }, + { + "name": "isabus-bridge", + "parent": "sys-bus-device" + }, + { + "name": "vhost-user-blk", + "parent": "virtio-device" + }, + { + "name": "qemu32-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "ne2k_pci", + "parent": "pci-device" + }, + { + "name": "Broadwell-IBRS-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "tpm-emulator", + "parent": "tpm-backend" + }, + { + "name": "ivshmem-plain", + "parent": "ivshmem-common" + }, + { + "name": "usb-kbd", + "parent": "usb-hid" + }, + { + "name": "isa-applesmc", + "parent": "isa-device" + }, + { + "name": "xen-accel", + "parent": "accel" + }, + { + "name": "secret", + "parent": "object" + }, + { + "name": "hda-duplex", + "parent": "hda-audio" + }, + { + "name": "kvm32-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "pc-i440fx-2.9-machine", + "parent": "generic-pc-machine" + }, + { + "name": "kvm-apic", + "parent": "apic-common" + }, + { + "name": "sev-guest", + "parent": "object" + }, + { + "name": "virtio-balloon-device", + "parent": "virtio-device" + }, + { + "name": "none-machine", + "parent": "machine" + }, + { + "name": "sysbus-fdc", + "parent": "base-sysbus-fdc" + }, + { + "name": "megasas-gen2", + "parent": "megasas-base" + }, + { + "name": "pc-1.0-machine", + "parent": "generic-pc-machine" + }, + { + "name": "core2duo-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "qxl", + "parent": "pci-qxl" + }, + { + "name": "ramfb", + "parent": "sys-bus-device" + }, + { + "name": "pc-i440fx-2.8-machine", + "parent": "generic-pc-machine" + }, + { + "name": "nvme", + "parent": "pci-device" + }, + { + "name": "isa-debugcon", + "parent": "isa-device" + }, + { + "name": "SandyBridge-IBRS-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "Skylake-Server-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "pentium-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "usb-tablet", + "parent": "usb-hid" + }, + { + "name": "qio-channel-buffer", + "parent": "qio-channel" + }, + { + "name": "scsi-disk", + "parent": "scsi-disk-base" + }, + { + "name": "usb-braille", + "parent": "usb-serial-dev" + }, + { + "name": "intel-hda", + "parent": "intel-hda-generic" + }, + { + "name": "kvm-accel", + "parent": "accel" + }, + { + "name": "pxb-pcie-bus", + "parent": "PCIE" + }, + { + "name": "virtio-scsi-device", + "parent": "virtio-scsi-common" + }, + { + "name": "AC97", + "parent": "pci-device" + }, + { + "name": "usb-wacom-tablet", + "parent": "usb-device" + }, + { + "name": "i2c-bus", + "parent": "bus" + }, + { + "name": "EPYC-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "virtio-mouse-device", + "parent": "virtio-input-hid-device" + }, + { + "name": "Conroe-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "pxb-pcie", + "parent": "pci-device" + }, + { + "name": "pc-1.3-machine", + "parent": "generic-pc-machine" + }, + { + "name": "ide-drive", + "parent": "ide-device" + }, + { + "name": "generic-sdhci", + "parent": "sys-bus-device" + }, + { + "name": "isa-pit", + "parent": "pit-common" + }, + { + "name": "pxb", + "parent": "pci-device" + }, + { + "name": "pc-1.2-machine", + "parent": "generic-pc-machine" + }, + { + "name": "intel-iommu-iommu-memory-region", + "parent": "qemu:iommu-memory-region" + }, + { + "name": "pc-1.1-machine", + "parent": "generic-pc-machine" + }, + { + "name": "sd-card", + "parent": "device" + }, + { + "name": "kvaser_pci", + "parent": "pci-device" + }, + { + "name": "vmxnet3", + "parent": "pci-device" + }, + { + "name": "i6300esb", + "parent": "pci-device" + }, + { + "name": "Westmere-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "amd-iommu-iommu-memory-region", + "parent": "qemu:iommu-memory-region" + }, + { + "name": "pvpanic", + "parent": "isa-device" + }, + { + "name": "Penryn-x86_64-cpu", + "parent": "x86_64-cpu" + }, + { + "name": "apic", + "parent": "apic-common" + }, + { + "name": "isapc-machine", + "parent": "generic-pc-machine" + }, + { + "name": "rng-random", + "parent": "rng-backend" + } + ], + "id": "libvirt-9" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-blk-pci" + }, + "id": "libvirt-10" +} + +{ + "return": [ + { + "name": "iothread", + "type": "link" + }, + { + "name": "secs", + "type": "uint32" + }, + { + "name": "request-merging", + "description": "on/off", + "type": "bool" + }, + { + "name": "min_io_size", + "type": "uint16" + }, + { + "name": "event_idx", + "description": "on/off", + "type": "bool" + }, + { + "name": "serial", + "type": "str" + }, + { + "name": "heads", + "type": "uint32" + }, + { + "name": "ioeventfd", + "description": "on/off", + "type": "bool" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "scsi", + "description": "on/off", + "type": "bool" + }, + { + "name": "cyls", + "type": "uint32" + }, + { + "name": "x-disable-pcie", + "description": "on/off", + "type": "bool" + }, + { + "name": "logical_block_size", + "description": "A power of two between 512 and 32768", + "type": "uint16" + }, + { + "name": "indirect_desc", + "description": "on/off", + "type": "bool" + }, + { + "name": "queue-size", + "type": "uint16" + }, + { + "name": "disable-modern", + "type": "bool" + }, + { + "name": "drive", + "description": "Node name or ID of a block device to use as a backen= d", + "type": "str" + }, + { + "name": "disable-legacy", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-lnkctl-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "werror", + "description": "Error handling policy, report/ignore/enospc/stop/aut= o", + "type": "BlockdevOnError" + }, + { + "name": "bootindex", + "type": "int32" + }, + { + "name": "discard_granularity", + "type": "uint32" + }, + { + "name": "rerror", + "description": "Error handling policy, report/ignore/enospc/stop/aut= o", + "type": "BlockdevOnError" + }, + { + "name": "page-per-vq", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-deverr-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-pm-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "any_layout", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "share-rw", + "type": "bool" + }, + { + "name": "physical_block_size", + "description": "A power of two between 512 and 32768", + "type": "uint16" + }, + { + "name": "config-wce", + "description": "on/off", + "type": "bool" + }, + { + "name": "class", + "type": "uint32" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "migrate-extra", + "description": "on/off", + "type": "bool" + }, + { + "name": "modern-pio-notify", + "description": "on/off", + "type": "bool" + }, + { + "name": "vectors", + "type": "uint32" + }, + { + "name": "iommu_platform", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "virtio-backend", + "type": "child" + }, + { + "name": "x-ignore-backend-features", + "type": "bool" + }, + { + "name": "notify_on_empty", + "description": "on/off", + "type": "bool" + }, + { + "name": "write-cache", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "num-queues", + "type": "uint16" + }, + { + "name": "opt_io_size", + "type": "uint32" + }, + { + "name": "ats", + "description": "on/off", + "type": "bool" + }, + { + "name": "virtio-pci-bus-master-bug-migration", + "description": "on/off", + "type": "bool" + }, + { + "name": "romfile", + "type": "str" + } + ], + "id": "libvirt-10" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-net-pci" + }, + "id": "libvirt-11" +} + +{ + "return": [ + { + "name": "ctrl_mac_addr", + "description": "on/off", + "type": "bool" + }, + { + "name": "romfile", + "type": "str" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "status", + "description": "on/off", + "type": "bool" + }, + { + "name": "notify_on_empty", + "description": "on/off", + "type": "bool" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-pm-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "indirect_desc", + "description": "on/off", + "type": "bool" + }, + { + "name": "guest_csum", + "description": "on/off", + "type": "bool" + }, + { + "name": "speed", + "type": "int32" + }, + { + "name": "ctrl_rx", + "description": "on/off", + "type": "bool" + }, + { + "name": "ctrl_vq", + "description": "on/off", + "type": "bool" + }, + { + "name": "bootindex", + "type": "int32" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "disable-modern", + "type": "bool" + }, + { + "name": "mrg_rxbuf", + "description": "on/off", + "type": "bool" + }, + { + "name": "host_tso6", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-txtimer", + "type": "uint32" + }, + { + "name": "host_tso4", + "description": "on/off", + "type": "bool" + }, + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "ctrl_rx_extra", + "description": "on/off", + "type": "bool" + }, + { + "name": "gso", + "description": "on/off", + "type": "bool" + }, + { + "name": "page-per-vq", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-disable-pcie", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-ignore-backend-features", + "type": "bool" + }, + { + "name": "x-txburst", + "type": "int32" + }, + { + "name": "iommu_platform", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-lnkctl-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "host_mtu", + "type": "uint16" + }, + { + "name": "ctrl_vlan", + "description": "on/off", + "type": "bool" + }, + { + "name": "event_idx", + "description": "on/off", + "type": "bool" + }, + { + "name": "virtio-backend", + "type": "child" + }, + { + "name": "guest_announce", + "description": "on/off", + "type": "bool" + }, + { + "name": "vectors", + "type": "uint32" + }, + { + "name": "guest_tso4", + "description": "on/off", + "type": "bool" + }, + { + "name": "host_ecn", + "description": "on/off", + "type": "bool" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "ats", + "description": "on/off", + "type": "bool" + }, + { + "name": "host_ufo", + "description": "on/off", + "type": "bool" + }, + { + "name": "duplex", + "type": "str" + }, + { + "name": "guest_tso6", + "description": "on/off", + "type": "bool" + }, + { + "name": "ctrl_guest_offloads", + "description": "on/off", + "type": "bool" + }, + { + "name": "csum", + "description": "on/off", + "type": "bool" + }, + { + "name": "modern-pio-notify", + "description": "on/off", + "type": "bool" + }, + { + "name": "ioeventfd", + "description": "on/off", + "type": "bool" + }, + { + "name": "mq", + "description": "on/off", + "type": "bool" + }, + { + "name": "any_layout", + "description": "on/off", + "type": "bool" + }, + { + "name": "guest_ecn", + "description": "on/off", + "type": "bool" + }, + { + "name": "guest_ufo", + "description": "on/off", + "type": "bool" + }, + { + "name": "virtio-pci-bus-master-bug-migration", + "description": "on/off", + "type": "bool" + }, + { + "name": "mac", + "description": "Ethernet 6-byte MAC Address, example: 52:54:00:12:34= :56", + "type": "str" + }, + { + "name": "tx_queue_size", + "type": "uint16" + }, + { + "name": "disable-legacy", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "tx", + "type": "str" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-mtu-bypass-backend", + "type": "bool" + }, + { + "name": "x-pcie-deverr-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "netdev", + "description": "ID of a netdev to use as a backend", + "type": "str" + }, + { + "name": "migrate-extra", + "description": "on/off", + "type": "bool" + }, + { + "name": "rx_queue_size", + "type": "uint16" + } + ], + "id": "libvirt-11" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-scsi-pci" + }, + "id": "libvirt-12" +} + +{ + "return": [ + { + "name": "event_idx", + "description": "on/off", + "type": "bool" + }, + { + "name": "ioeventfd", + "description": "on/off", + "type": "bool" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "virtqueue_size", + "type": "uint32" + }, + { + "name": "x-disable-pcie", + "description": "on/off", + "type": "bool" + }, + { + "name": "indirect_desc", + "description": "on/off", + "type": "bool" + }, + { + "name": "cmd_per_lun", + "type": "uint32" + }, + { + "name": "disable-modern", + "type": "bool" + }, + { + "name": "num_queues", + "type": "uint32" + }, + { + "name": "disable-legacy", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-lnkctl-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "hotplug", + "description": "on/off", + "type": "bool" + }, + { + "name": "page-per-vq", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-deverr-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-pm-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "max_sectors", + "type": "uint32" + }, + { + "name": "param_change", + "description": "on/off", + "type": "bool" + }, + { + "name": "any_layout", + "description": "on/off", + "type": "bool" + }, + { + "name": "iothread", + "type": "link" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "migrate-extra", + "description": "on/off", + "type": "bool" + }, + { + "name": "modern-pio-notify", + "description": "on/off", + "type": "bool" + }, + { + "name": "vectors", + "type": "uint32" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "virtio-backend", + "type": "child" + }, + { + "name": "x-ignore-backend-features", + "type": "bool" + }, + { + "name": "notify_on_empty", + "description": "on/off", + "type": "bool" + }, + { + "name": "iommu_platform", + "description": "on/off", + "type": "bool" + }, + { + "name": "ats", + "description": "on/off", + "type": "bool" + }, + { + "name": "virtio-pci-bus-master-bug-migration", + "description": "on/off", + "type": "bool" + }, + { + "name": "romfile", + "type": "str" + } + ], + "id": "libvirt-12" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-net-ccw" + }, + "id": "libvirt-13" +} + +{ + "id": "libvirt-13", + "error": { + "class": "DeviceNotFound", + "desc": "Device 'virtio-net-ccw' not found" + } +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-scsi-ccw" + }, + "id": "libvirt-14" +} + +{ + "id": "libvirt-14", + "error": { + "class": "DeviceNotFound", + "desc": "Device 'virtio-scsi-ccw' not found" + } +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-net-s390" + }, + "id": "libvirt-15" +} + +{ + "id": "libvirt-15", + "error": { + "class": "DeviceNotFound", + "desc": "Device 'virtio-net-s390' not found" + } +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "pci-assign" + }, + "id": "libvirt-16" +} + +{ + "id": "libvirt-16", + "error": { + "class": "DeviceNotFound", + "desc": "Device 'pci-assign' not found" + } +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "kvm-pci-assign" + }, + "id": "libvirt-17" +} + +{ + "id": "libvirt-17", + "error": { + "class": "DeviceNotFound", + "desc": "Device 'kvm-pci-assign' not found" + } +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "vfio-pci" + }, + "id": "libvirt-18" +} + +{ + "return": [ + { + "name": "x-igd-opregion", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pci-vendor-id", + "type": "uint32" + }, + { + "name": "x-pci-sub-device-id", + "type": "uint32" + }, + { + "name": "x-no-kvm-ioeventfd", + "type": "bool" + }, + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-req", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-no-kvm-msi", + "type": "bool" + }, + { + "name": "x-no-vfio-ioeventfd", + "type": "bool" + }, + { + "name": "x-no-kvm-intx", + "type": "bool" + }, + { + "name": "host", + "description": "Address (bus/device/function) of the host device, ex= ample: 04:10.0", + "type": "str" + }, + { + "name": "x-no-kvm-msix", + "type": "bool" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pci-sub-vendor-id", + "type": "uint32" + }, + { + "name": "x-pci-device-id", + "type": "uint32" + }, + { + "name": "x-no-geforce-quirks", + "type": "bool" + }, + { + "name": "display", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "x-igd-gms", + "type": "uint32" + }, + { + "name": "x-nv-gpudirect-clique", + "description": "NVIDIA GPUDirect Clique ID (0 - 15)", + "type": "uint4" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "x-msix-relocation", + "description": "off/auto/bar0/bar1/bar2/bar3/bar4/bar5", + "type": "OffAutoPCIBAR" + }, + { + "name": "x-intx-mmap-timeout-ms", + "type": "uint32" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-no-mmap", + "type": "bool" + }, + { + "name": "bootindex", + "type": "int32" + }, + { + "name": "sysfsdev", + "type": "str" + }, + { + "name": "x-vga", + "description": "on/off", + "type": "bool" + }, + { + "name": "romfile", + "type": "str" + } + ], + "id": "libvirt-18" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "scsi-disk" + }, + "id": "libvirt-19" +} + +{ + "return": [ + { + "name": "min_io_size", + "type": "uint16" + }, + { + "name": "removable", + "description": "on/off", + "type": "bool" + }, + { + "name": "channel", + "type": "uint32" + }, + { + "name": "serial", + "type": "str" + }, + { + "name": "lun", + "type": "uint32" + }, + { + "name": "dpofua", + "description": "on/off", + "type": "bool" + }, + { + "name": "ver", + "type": "str" + }, + { + "name": "scsi-id", + "type": "uint32" + }, + { + "name": "logical_block_size", + "description": "A power of two between 512 and 32768", + "type": "uint16" + }, + { + "name": "drive", + "description": "Node name or ID of a block device to use as a backen= d", + "type": "str" + }, + { + "name": "scsi_version", + "type": "int32" + }, + { + "name": "werror", + "description": "Error handling policy, report/ignore/enospc/stop/aut= o", + "type": "BlockdevOnError" + }, + { + "name": "discard_granularity", + "type": "uint32" + }, + { + "name": "port_wwn", + "type": "uint64" + }, + { + "name": "max_unmap_size", + "type": "uint64" + }, + { + "name": "rerror", + "description": "Error handling policy, report/ignore/enospc/stop/aut= o", + "type": "BlockdevOnError" + }, + { + "name": "max_io_size", + "type": "uint64" + }, + { + "name": "wwn", + "type": "uint64" + }, + { + "name": "share-rw", + "type": "bool" + }, + { + "name": "product", + "type": "str" + }, + { + "name": "vendor", + "type": "str" + }, + { + "name": "physical_block_size", + "description": "A power of two between 512 and 32768", + "type": "uint16" + }, + { + "name": "port_index", + "type": "uint16" + }, + { + "name": "bootindex", + "type": "int32" + }, + { + "name": "write-cache", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "opt_io_size", + "type": "uint32" + } + ], + "id": "libvirt-19" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "ide-drive" + }, + "id": "libvirt-20" +} + +{ + "return": [ + { + "name": "serial", + "type": "str" + }, + { + "name": "logical_block_size", + "description": "A power of two between 512 and 32768", + "type": "uint16" + }, + { + "name": "discard_granularity", + "type": "uint32" + }, + { + "name": "drive", + "description": "Node name or ID of a block device to use as a backen= d", + "type": "str" + }, + { + "name": "bootindex", + "type": "int32" + }, + { + "name": "write-cache", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "share-rw", + "type": "bool" + }, + { + "name": "opt_io_size", + "type": "uint32" + }, + { + "name": "min_io_size", + "type": "uint16" + }, + { + "name": "unit", + "type": "uint32" + }, + { + "name": "wwn", + "type": "uint64" + }, + { + "name": "werror", + "description": "Error handling policy, report/ignore/enospc/stop/aut= o", + "type": "BlockdevOnError" + }, + { + "name": "model", + "type": "str" + }, + { + "name": "rerror", + "description": "Error handling policy, report/ignore/enospc/stop/aut= o", + "type": "BlockdevOnError" + }, + { + "name": "ver", + "type": "str" + }, + { + "name": "physical_block_size", + "description": "A power of two between 512 and 32768", + "type": "uint16" + } + ], + "id": "libvirt-20" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "PIIX4_PM" + }, + "id": "libvirt-21" +} + +{ + "return": [ + { + "name": "memory-hotplug-support", + "type": "bool" + }, + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "acpi-pci-hotplug-with-bridge-support", + "type": "bool" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "romfile", + "type": "str" + }, + { + "name": "disable_s4", + "type": "uint8" + }, + { + "name": "disable_s3", + "type": "uint8" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "s4_val", + "type": "uint8" + }, + { + "name": "smb_io_base", + "type": "uint32" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + } + ], + "id": "libvirt-21" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "usb-redir" + }, + "id": "libvirt-22" +} + +{ + "return": [ + { + "name": "filter", + "type": "str" + }, + { + "name": "msos-desc", + "description": "on/off", + "type": "bool" + }, + { + "name": "serial", + "type": "str" + }, + { + "name": "bootindex", + "type": "int32" + }, + { + "name": "port", + "type": "str" + }, + { + "name": "debug", + "type": "uint8" + }, + { + "name": "streams", + "type": "bool" + }, + { + "name": "chardev", + "description": "ID of a chardev to use as a backend", + "type": "str" + }, + { + "name": "full-path", + "description": "on/off", + "type": "bool" + }, + { + "name": "attached", + "type": "bool" + } + ], + "id": "libvirt-22" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "usb-host" + }, + "id": "libvirt-23" +} + +{ + "return": [ + { + "name": "isobufs", + "type": "uint32" + }, + { + "name": "hostaddr", + "type": "uint32" + }, + { + "name": "msos-desc", + "description": "on/off", + "type": "bool" + }, + { + "name": "productid", + "type": "uint32" + }, + { + "name": "serial", + "type": "str" + }, + { + "name": "bootindex", + "type": "int32" + }, + { + "name": "isobsize", + "type": "uint32" + }, + { + "name": "port", + "type": "str" + }, + { + "name": "vendorid", + "type": "uint32" + }, + { + "name": "pipeline", + "description": "on/off", + "type": "bool" + }, + { + "name": "attached", + "type": "bool" + }, + { + "name": "hostport", + "type": "str" + }, + { + "name": "full-path", + "description": "on/off", + "type": "bool" + }, + { + "name": "loglevel", + "type": "uint32" + }, + { + "name": "hostbus", + "type": "uint32" + } + ], + "id": "libvirt-23" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "scsi-generic" + }, + "id": "libvirt-24" +} + +{ + "return": [ + { + "name": "bootindex", + "type": "int32" + }, + { + "name": "drive", + "description": "Node name or ID of a block device to use as a backen= d", + "type": "str" + }, + { + "name": "lun", + "type": "uint32" + }, + { + "name": "share-rw", + "type": "bool" + }, + { + "name": "channel", + "type": "uint32" + }, + { + "name": "scsi-id", + "type": "uint32" + } + ], + "id": "libvirt-24" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "i440FX-pcihost" + }, + "id": "libvirt-25" +} + +{ + "return": [ + { + "name": "short_root_bus", + "type": "uint32" + }, + { + "name": "pci-conf-idx[0]", + "type": "child" + }, + { + "name": "pci-hole64-end", + "type": "uint64" + }, + { + "name": "pci-hole-end", + "type": "uint32" + }, + { + "name": "pci-hole-start", + "type": "uint32" + }, + { + "name": "pci-hole64-start", + "type": "uint64" + }, + { + "name": "pci-hole64-size", + "type": "size" + }, + { + "name": "pci-conf-data[0]", + "type": "child" + }, + { + "name": "x-pci-hole64-fix", + "type": "bool" + } + ], + "id": "libvirt-25" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "q35-pcihost" + }, + "id": "libvirt-26" +} + +{ + "return": [ + { + "name": "short_root_bus", + "type": "uint32" + }, + { + "name": "system-mem", + "type": "link" + }, + { + "name": "pci-conf-idx[0]", + "type": "child" + }, + { + "name": "pcie-mmcfg-mmio[0]", + "type": "child" + }, + { + "name": "pci-hole64-start", + "type": "uint64" + }, + { + "name": "io-mem", + "type": "link" + }, + { + "name": "pci-hole64-end", + "type": "uint64" + }, + { + "name": "pci-hole-end", + "type": "uint32" + }, + { + "name": "above-4g-mem-size", + "type": "size" + }, + { + "name": "below-4g-mem-size", + "type": "size" + }, + { + "name": "ram-mem", + "type": "link" + }, + { + "name": "pci-hole-start", + "type": "uint32" + }, + { + "name": "MCFG", + "type": "uint64" + }, + { + "name": "mch", + "type": "child" + }, + { + "name": "pci-hole64-size", + "type": "size" + }, + { + "name": "pci-mem", + "type": "link" + }, + { + "name": "pci-conf-data[0]", + "type": "child" + }, + { + "name": "x-pci-hole64-fix", + "type": "bool" + }, + { + "name": "mcfg_size", + "type": "uint64" + } + ], + "id": "libvirt-26" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "usb-storage" + }, + "id": "libvirt-27" +} + +{ + "return": [ + { + "name": "serial", + "type": "str" + }, + { + "name": "msos-desc", + "description": "on/off", + "type": "bool" + }, + { + "name": "logical_block_size", + "description": "A power of two between 512 and 32768", + "type": "uint16" + }, + { + "name": "discard_granularity", + "type": "uint32" + }, + { + "name": "drive", + "description": "Node name or ID of a block device to use as a backen= d", + "type": "str" + }, + { + "name": "bootindex", + "type": "int32" + }, + { + "name": "write-cache", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "share-rw", + "type": "bool" + }, + { + "name": "opt_io_size", + "type": "uint32" + }, + { + "name": "min_io_size", + "type": "uint16" + }, + { + "name": "port", + "type": "str" + }, + { + "name": "attached", + "type": "bool" + }, + { + "name": "werror", + "description": "Error handling policy, report/ignore/enospc/stop/aut= o", + "type": "BlockdevOnError" + }, + { + "name": "full-path", + "description": "on/off", + "type": "bool" + }, + { + "name": "rerror", + "description": "Error handling policy, report/ignore/enospc/stop/aut= o", + "type": "BlockdevOnError" + }, + { + "name": "removable", + "description": "on/off", + "type": "bool" + }, + { + "name": "physical_block_size", + "description": "A power of two between 512 and 32768", + "type": "uint16" + } + ], + "id": "libvirt-27" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "kvm-pit" + }, + "id": "libvirt-28" +} + +{ + "return": [ + { + "name": "iobase", + "type": "uint32" + }, + { + "name": "lost_tick_policy", + "type": "LostTickPolicy" + } + ], + "id": "libvirt-28" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "VGA" + }, + "id": "libvirt-29" +} + +{ + "return": [ + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "mmio", + "description": "on/off", + "type": "bool" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "qemu-extended-regs", + "description": "on/off", + "type": "bool" + }, + { + "name": "big-endian-framebuffer", + "type": "bool" + }, + { + "name": "romfile", + "type": "str" + }, + { + "name": "vgamem_mb", + "type": "uint32" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "global-vmstate", + "type": "bool" + } + ], + "id": "libvirt-29" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "vmware-svga" + }, + "id": "libvirt-30" +} + +{ + "return": [ + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "romfile", + "type": "str" + }, + { + "name": "vgamem_mb", + "type": "uint32" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "global-vmstate", + "type": "bool" + } + ], + "id": "libvirt-30" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "qxl" + }, + "id": "libvirt-31" +} + +{ + "return": [ + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "yres", + "type": "uint32" + }, + { + "name": "ram_size_mb", + "type": "uint32" + }, + { + "name": "global-vmstate", + "type": "bool" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "vgamem_mb", + "type": "uint32" + }, + { + "name": "romfile", + "type": "str" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "debug", + "type": "uint32" + }, + { + "name": "vram_size_mb", + "type": "uint32" + }, + { + "name": "revision", + "type": "uint32" + }, + { + "name": "ram_size", + "type": "uint32" + }, + { + "name": "vram64_size_mb", + "type": "uint32" + }, + { + "name": "guestdebug", + "type": "uint32" + }, + { + "name": "vram_size", + "type": "uint64" + }, + { + "name": "surfaces", + "type": "int32" + }, + { + "name": "max_outputs", + "type": "uint16" + }, + { + "name": "xres", + "type": "uint32" + }, + { + "name": "cmdlog", + "type": "uint32" + } + ], + "id": "libvirt-31" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-gpu-pci" + }, + "id": "libvirt-32" +} + +{ + "return": [ + { + "name": "event_idx", + "description": "on/off", + "type": "bool" + }, + { + "name": "yres", + "type": "uint32" + }, + { + "name": "ioeventfd", + "description": "on/off", + "type": "bool" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "xres", + "type": "uint32" + }, + { + "name": "x-disable-pcie", + "description": "on/off", + "type": "bool" + }, + { + "name": "indirect_desc", + "description": "on/off", + "type": "bool" + }, + { + "name": "disable-modern", + "type": "bool" + }, + { + "name": "disable-legacy", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-lnkctl-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "page-per-vq", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-deverr-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-pm-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "max_outputs", + "type": "uint32" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "any_layout", + "description": "on/off", + "type": "bool" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "migrate-extra", + "description": "on/off", + "type": "bool" + }, + { + "name": "modern-pio-notify", + "description": "on/off", + "type": "bool" + }, + { + "name": "vectors", + "type": "uint32" + }, + { + "name": "iommu_platform", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "virtio-backend", + "type": "child" + }, + { + "name": "max_hostmem", + "type": "size" + }, + { + "name": "x-ignore-backend-features", + "type": "bool" + }, + { + "name": "stats", + "description": "on/off", + "type": "bool" + }, + { + "name": "notify_on_empty", + "description": "on/off", + "type": "bool" + }, + { + "name": "virtio-pci-bus-master-bug-migration", + "description": "on/off", + "type": "bool" + }, + { + "name": "ats", + "description": "on/off", + "type": "bool" + }, + { + "name": "virgl", + "description": "on/off", + "type": "bool" + }, + { + "name": "romfile", + "type": "str" + } + ], + "id": "libvirt-32" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-gpu-device" + }, + "id": "libvirt-33" +} + +{ + "return": [ + { + "name": "notify_on_empty", + "description": "on/off", + "type": "bool" + }, + { + "name": "any_layout", + "description": "on/off", + "type": "bool" + }, + { + "name": "indirect_desc", + "description": "on/off", + "type": "bool" + }, + { + "name": "event_idx", + "description": "on/off", + "type": "bool" + }, + { + "name": "yres", + "type": "uint32" + }, + { + "name": "stats", + "description": "on/off", + "type": "bool" + }, + { + "name": "iommu_platform", + "description": "on/off", + "type": "bool" + }, + { + "name": "xres", + "type": "uint32" + }, + { + "name": "max_outputs", + "type": "uint32" + }, + { + "name": "virgl", + "description": "on/off", + "type": "bool" + }, + { + "name": "max_hostmem", + "type": "size" + } + ], + "id": "libvirt-33" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "ICH9-LPC" + }, + "id": "libvirt-34" +} + +{ + "return": [ + { + "name": "memory-hotplug-support", + "type": "bool" + }, + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "sci_int", + "type": "uint32" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "gpe0_blk_len", + "type": "uint32" + }, + { + "name": "pm_io_base", + "type": "uint32" + }, + { + "name": "noreboot", + "type": "bool" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "cpu-hotplug-legacy", + "type": "bool" + }, + { + "name": "acpi_disable_cmd", + "type": "uint8" + }, + { + "name": "x-smi-broadcast", + "description": "on/off", + "type": "bool" + }, + { + "name": "disable_s3", + "type": "uint8" + }, + { + "name": "romfile", + "type": "str" + }, + { + "name": "acpi_enable_cmd", + "type": "uint8" + }, + { + "name": "s4_val", + "type": "uint8" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "enable_tco", + "type": "bool" + }, + { + "name": "disable_s4", + "type": "uint8" + }, + { + "name": "gpe0_blk", + "type": "uint32" + } + ], + "id": "libvirt-34" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-balloon-pci" + }, + "id": "libvirt-35" +} + +{ + "return": [ + { + "name": "guest-stats-polling-interval", + "type": "int" + }, + { + "name": "event_idx", + "description": "on/off", + "type": "bool" + }, + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-disable-pcie", + "description": "on/off", + "type": "bool" + }, + { + "name": "indirect_desc", + "description": "on/off", + "type": "bool" + }, + { + "name": "disable-modern", + "type": "bool" + }, + { + "name": "disable-legacy", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-lnkctl-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "guest-stats", + "type": "guest statistics" + }, + { + "name": "deflate-on-oom", + "description": "on/off", + "type": "bool" + }, + { + "name": "page-per-vq", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-deverr-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-pm-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "any_layout", + "description": "on/off", + "type": "bool" + }, + { + "name": "class", + "type": "uint32" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "migrate-extra", + "description": "on/off", + "type": "bool" + }, + { + "name": "modern-pio-notify", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "virtio-backend", + "type": "child" + }, + { + "name": "x-ignore-backend-features", + "type": "bool" + }, + { + "name": "notify_on_empty", + "description": "on/off", + "type": "bool" + }, + { + "name": "iommu_platform", + "description": "on/off", + "type": "bool" + }, + { + "name": "ats", + "description": "on/off", + "type": "bool" + }, + { + "name": "virtio-pci-bus-master-bug-migration", + "description": "on/off", + "type": "bool" + }, + { + "name": "romfile", + "type": "str" + } + ], + "id": "libvirt-35" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-balloon-ccw" + }, + "id": "libvirt-36" +} + +{ + "id": "libvirt-36", + "error": { + "class": "DeviceNotFound", + "desc": "Device 'virtio-balloon-ccw' not found" + } +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "virtio-balloon-device" + }, + "id": "libvirt-37" +} + +{ + "return": [ + { + "name": "notify_on_empty", + "description": "on/off", + "type": "bool" + }, + { + "name": "any_layout", + "description": "on/off", + "type": "bool" + }, + { + "name": "indirect_desc", + "description": "on/off", + "type": "bool" + }, + { + "name": "guest-stats", + "type": "guest statistics" + }, + { + "name": "guest-stats-polling-interval", + "type": "int" + }, + { + "name": "event_idx", + "description": "on/off", + "type": "bool" + }, + { + "name": "iommu_platform", + "description": "on/off", + "type": "bool" + }, + { + "name": "deflate-on-oom", + "description": "on/off", + "type": "bool" + } + ], + "id": "libvirt-37" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "nec-usb-xhci" + }, + "id": "libvirt-38" +} + +{ + "return": [ + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "intrs", + "type": "uint32" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "msix", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "msi", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "superspeed-ports-first", + "description": "on/off", + "type": "bool" + }, + { + "name": "streams", + "description": "on/off", + "type": "bool" + }, + { + "name": "romfile", + "type": "str" + }, + { + "name": "force-pcie-endcap", + "description": "on/off", + "type": "bool" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + }, + { + "name": "p3", + "type": "uint32" + }, + { + "name": "p2", + "type": "uint32" + }, + { + "name": "slots", + "type": "uint32" + } + ], + "id": "libvirt-38" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "intel-iommu" + }, + "id": "libvirt-39" +} + +{ + "return": [ + { + "name": "eim", + "description": "on/off/auto", + "type": "OnOffAuto" + }, + { + "name": "x-aw-bits", + "type": "uint8" + }, + { + "name": "x-buggy-eim", + "type": "bool" + }, + { + "name": "intremap", + "type": "bool" + }, + { + "name": "version", + "type": "uint32" + }, + { + "name": "pt", + "type": "bool" + }, + { + "name": "device-iotlb", + "type": "bool" + }, + { + "name": "caching-mode", + "type": "bool" + } + ], + "id": "libvirt-39" +} + +{ + "execute": "device-list-properties", + "arguments": { + "typename": "mch" + }, + "id": "libvirt-40" +} + +{ + "return": [ + { + "name": "rombar", + "type": "uint32" + }, + { + "name": "x-pcie-lnksta-dllla", + "description": "on/off", + "type": "bool" + }, + { + "name": "multifunction", + "description": "on/off", + "type": "bool" + }, + { + "name": "extended-tseg-mbytes", + "type": "uint16" + }, + { + "name": "romfile", + "type": "str" + }, + { + "name": "x-pcie-extcap-init", + "description": "on/off", + "type": "bool" + }, + { + "name": "command_serr_enable", + "description": "on/off", + "type": "bool" + }, + { + "name": "addr", + "description": "Slot and optional function number, example: 06.0 or = 06", + "type": "int32" + } + ], + "id": "libvirt-40" +} + +{ + "execute": "qom-list-properties", + "arguments": { + "typename": "memory-backend-file" + }, + "id": "libvirt-41" +} + +{ + "return": [ + { + "name": "policy", + "type": "HostMemPolicy" + }, + { + "name": "share", + "type": "bool" + }, + { + "name": "host-nodes", + "type": "int" + }, + { + "name": "prealloc", + "type": "bool" + }, + { + "name": "dump", + "type": "bool" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "merge", + "type": "bool" + }, + { + "name": "align", + "type": "int" + }, + { + "name": "mem-path", + "type": "string" + }, + { + "name": "discard-data", + "type": "bool" + }, + { + "name": "type", + "type": "string" + } + ], + "id": "libvirt-41" +} + +{ + "execute": "qom-list-properties", + "arguments": { + "typename": "spapr-machine" + }, + "id": "libvirt-42" +} + +{ + "id": "libvirt-42", + "error": { + "class": "DeviceNotFound", + "desc": "Class 'spapr-machine' not found" + } +} + +{ + "execute": "query-machines", + "id": "libvirt-43" +} + +{ + "return": [ + { + "hotpluggable-cpus": true, + "name": "isapc", + "cpu-max": 1 + }, + { + "hotpluggable-cpus": true, + "name": "pc-1.1", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-1.2", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-1.3", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.8", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-1.0", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": false, + "name": "none", + "cpu-max": 1 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.9", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.6", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.7", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "xenfv", + "cpu-max": 128 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.3", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.4", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.5", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.1", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.2", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.0", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-q35-2.11", + "cpu-max": 288 + }, + { + "hotpluggable-cpus": true, + "name": "pc-q35-2.12", + "cpu-max": 288 + }, + { + "hotpluggable-cpus": true, + "name": "pc-q35-3.0", + "cpu-max": 288, + "alias": "q35" + }, + { + "hotpluggable-cpus": false, + "name": "xenpv", + "cpu-max": 1 + }, + { + "hotpluggable-cpus": true, + "name": "pc-q35-2.10", + "cpu-max": 288 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-1.7", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-q35-2.9", + "cpu-max": 288 + }, + { + "hotpluggable-cpus": true, + "name": "pc-0.15", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-1.5", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-q35-2.7", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-1.6", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.11", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-q35-2.8", + "cpu-max": 288 + }, + { + "hotpluggable-cpus": true, + "name": "pc-0.13", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.12", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-0.14", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-3.0", + "is-default": true, + "cpu-max": 255, + "alias": "pc" + }, + { + "hotpluggable-cpus": true, + "name": "pc-q35-2.4", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-q35-2.5", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-q35-2.6", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-1.4", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-i440fx-2.10", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-0.11", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-0.12", + "cpu-max": 255 + }, + { + "hotpluggable-cpus": true, + "name": "pc-0.10", + "cpu-max": 255 + } + ], + "id": "libvirt-43" +} + +{ + "execute": "query-cpu-definitions", + "id": "libvirt-44" +} + +{ + "return": [ + { + "name": "max", + "typename": "max-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": false + }, + { + "name": "host", + "typename": "host-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": false + }, + { + "name": "base", + "typename": "base-x86_64-cpu", + "unavailable-features": [ + ], + "static": true, + "migration-safe": true + }, + { + "name": "qemu64", + "typename": "qemu64-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "qemu32", + "typename": "qemu32-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "phenom", + "typename": "phenom-x86_64-cpu", + "unavailable-features": [ + "mmxext", + "fxsr-opt", + "3dnowext", + "3dnow", + "sse4a", + "npt" + ], + "static": false, + "migration-safe": true + }, + { + "name": "pentium3", + "typename": "pentium3-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "pentium2", + "typename": "pentium2-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "pentium", + "typename": "pentium-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "n270", + "typename": "n270-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "kvm64", + "typename": "kvm64-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "kvm32", + "typename": "kvm32-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "coreduo", + "typename": "coreduo-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "core2duo", + "typename": "core2duo-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "athlon", + "typename": "athlon-x86_64-cpu", + "unavailable-features": [ + "mmxext", + "3dnowext", + "3dnow" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Westmere-IBRS", + "typename": "Westmere-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Westmere", + "typename": "Westmere-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Skylake-Server-IBRS", + "typename": "Skylake-Server-IBRS-x86_64-cpu", + "unavailable-features": [ + "avx512f", + "avx512dq", + "clwb", + "avx512cd", + "avx512bw", + "avx512vl", + "spec-ctrl", + "avx512f", + "avx512f", + "avx512f" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Skylake-Server", + "typename": "Skylake-Server-x86_64-cpu", + "unavailable-features": [ + "avx512f", + "avx512dq", + "clwb", + "avx512cd", + "avx512bw", + "avx512vl", + "avx512f", + "avx512f", + "avx512f" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Skylake-Client-IBRS", + "typename": "Skylake-Client-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Skylake-Client", + "typename": "Skylake-Client-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "SandyBridge-IBRS", + "typename": "SandyBridge-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "SandyBridge", + "typename": "SandyBridge-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Penryn", + "typename": "Penryn-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Opteron_G5", + "typename": "Opteron_G5-x86_64-cpu", + "unavailable-features": [ + "sse4a", + "misalignsse", + "xop", + "fma4", + "tbm" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Opteron_G4", + "typename": "Opteron_G4-x86_64-cpu", + "unavailable-features": [ + "sse4a", + "misalignsse", + "xop", + "fma4" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Opteron_G3", + "typename": "Opteron_G3-x86_64-cpu", + "unavailable-features": [ + "sse4a", + "misalignsse" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Opteron_G2", + "typename": "Opteron_G2-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Opteron_G1", + "typename": "Opteron_G1-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Nehalem-IBRS", + "typename": "Nehalem-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Nehalem", + "typename": "Nehalem-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "KnightsMill", + "typename": "KnightsMill-x86_64-cpu", + "unavailable-features": [ + "avx512f", + "avx512pf", + "avx512er", + "avx512cd", + "avx512-vpopcntdq", + "avx512-4vnniw", + "avx512-4fmaps", + "avx512f", + "avx512f", + "avx512f" + ], + "static": false, + "migration-safe": true + }, + { + "name": "IvyBridge-IBRS", + "typename": "IvyBridge-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "IvyBridge", + "typename": "IvyBridge-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Haswell-noTSX-IBRS", + "typename": "Haswell-noTSX-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Haswell-noTSX", + "typename": "Haswell-noTSX-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Haswell-IBRS", + "typename": "Haswell-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Haswell", + "typename": "Haswell-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "EPYC-IBPB", + "typename": "EPYC-IBPB-x86_64-cpu", + "unavailable-features": [ + "sha-ni", + "mmxext", + "fxsr-opt", + "cr8legacy", + "sse4a", + "misalignsse", + "osvw", + "ibpb" + ], + "static": false, + "migration-safe": true + }, + { + "name": "EPYC", + "typename": "EPYC-x86_64-cpu", + "unavailable-features": [ + "sha-ni", + "mmxext", + "fxsr-opt", + "cr8legacy", + "sse4a", + "misalignsse", + "osvw" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Conroe", + "typename": "Conroe-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Broadwell-noTSX-IBRS", + "typename": "Broadwell-noTSX-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Broadwell-noTSX", + "typename": "Broadwell-noTSX-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Broadwell-IBRS", + "typename": "Broadwell-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Broadwell", + "typename": "Broadwell-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "486", + "typename": "486-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + } + ], + "id": "libvirt-44" +} + +{ + "execute": "query-tpm-models", + "id": "libvirt-45" +} + +{ + "return": [ + "tpm-crb", + "tpm-tis" + ], + "id": "libvirt-45" +} + +{ + "execute": "query-tpm-types", + "id": "libvirt-46" +} + +{ + "return": [ + "passthrough", + "emulator" + ], + "id": "libvirt-46" +} + +{ + "execute": "query-command-line-options", + "id": "libvirt-47" +} + +{ + "return": [ + { + "parameters": [ + { + "name": "timeout", + "help": "Request timeout in seconds (default 0 =3D no timeout)", + "type": "number" + }, + { + "name": "initiator-name", + "help": "Initiator iqn name to use when connecting", + "type": "string" + }, + { + "name": "header-digest", + "help": "HeaderDigest setting. {CRC32C|CRC32C-NONE|NONE-CRC32C|N= ONE}", + "type": "string" + }, + { + "name": "password-secret", + "help": "ID of the secret providing password for CHAP authentica= tion to target", + "type": "string" + }, + { + "name": "password", + "help": "password for CHAP authentication to target", + "type": "string" + }, + { + "name": "user", + "help": "username for CHAP authentication to target", + "type": "string" + } + ], + "option": "iscsi" + }, + { + "parameters": [ + { + "name": "non-adaptive", + "type": "boolean" + }, + { + "name": "lossy", + "type": "boolean" + }, + { + "name": "acl", + "type": "boolean" + }, + { + "name": "x509verify", + "type": "string" + }, + { + "name": "tls", + "type": "boolean" + }, + { + "name": "sasl", + "type": "boolean" + }, + { + "name": "key-delay-ms", + "type": "number" + }, + { + "name": "lock-key-sync", + "type": "boolean" + }, + { + "name": "reverse", + "type": "boolean" + }, + { + "name": "password", + "type": "boolean" + }, + { + "name": "ipv6", + "type": "boolean" + }, + { + "name": "ipv4", + "type": "boolean" + }, + { + "name": "to", + "type": "number" + }, + { + "name": "connections", + "type": "number" + }, + { + "name": "head", + "type": "number" + }, + { + "name": "display", + "type": "string" + }, + { + "name": "share", + "type": "string" + }, + { + "name": "x509", + "type": "string" + }, + { + "name": "tls-creds", + "type": "string" + }, + { + "name": "websocket", + "type": "string" + }, + { + "name": "vnc", + "type": "string" + } + ], + "option": "vnc" + }, + { + "parameters": [ + { + "name": "head", + "type": "number" + }, + { + "name": "display", + "type": "string" + }, + { + "name": "seamless-migration", + "type": "boolean" + }, + { + "name": "playback-compression", + "type": "boolean" + }, + { + "name": "agent-mouse", + "type": "boolean" + }, + { + "name": "streaming-video", + "type": "string" + }, + { + "name": "zlib-glz-wan-compression", + "type": "string" + }, + { + "name": "jpeg-wan-compression", + "type": "string" + }, + { + "name": "image-compression", + "type": "string" + }, + { + "name": "plaintext-channel", + "type": "string" + }, + { + "name": "tls-channel", + "type": "string" + }, + { + "name": "tls-ciphers", + "type": "string" + }, + { + "name": "x509-dh-key-file", + "type": "string" + }, + { + "name": "x509-cacert-file", + "type": "string" + }, + { + "name": "x509-cert-file", + "type": "string" + }, + { + "name": "x509-key-password", + "type": "string" + }, + { + "name": "x509-key-file", + "type": "string" + }, + { + "name": "x509-dir", + "type": "string" + }, + { + "name": "sasl", + "type": "boolean" + }, + { + "name": "disable-agent-file-xfer", + "type": "boolean" + }, + { + "name": "disable-copy-paste", + "type": "boolean" + }, + { + "name": "disable-ticketing", + "type": "boolean" + }, + { + "name": "password", + "type": "string" + }, + { + "name": "unix", + "type": "boolean" + }, + { + "name": "ipv6", + "type": "boolean" + }, + { + "name": "ipv4", + "type": "boolean" + }, + { + "name": "addr", + "type": "string" + }, + { + "name": "tls-port", + "type": "number" + }, + { + "name": "port", + "type": "number" + } + ], + "option": "spice" + }, + { + "parameters": [ + ], + "option": "smbios" + }, + { + "parameters": [ + ], + "option": "acpi" + }, + { + "parameters": [ + { + "name": "dmode", + "type": "number" + }, + { + "name": "fmode", + "type": "number" + }, + { + "name": "sock_fd", + "type": "number" + }, + { + "name": "socket", + "type": "string" + }, + { + "name": "readonly", + "type": "boolean" + }, + { + "name": "writeout", + "type": "string" + }, + { + "name": "security_model", + "type": "string" + }, + { + "name": "mount_tag", + "type": "string" + }, + { + "name": "path", + "type": "string" + }, + { + "name": "fsdriver", + "type": "string" + } + ], + "option": "virtfs" + }, + { + "parameters": [ + { + "name": "throttling.iops-size", + "help": "when limiting by iops max size of an I/O in bytes", + "type": "number" + }, + { + "name": "throttling.bps-write-max-length", + "help": "length of the bps-write-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.bps-read-max-length", + "help": "length of the bps-read-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.bps-total-max-length", + "help": "length of the bps-total-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.iops-write-max-length", + "help": "length of the iops-write-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.iops-read-max-length", + "help": "length of the iops-read-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.iops-total-max-length", + "help": "length of the iops-total-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.bps-write-max", + "help": "total bytes write burst", + "type": "number" + }, + { + "name": "throttling.bps-read-max", + "help": "total bytes read burst", + "type": "number" + }, + { + "name": "throttling.bps-total-max", + "help": "total bytes burst", + "type": "number" + }, + { + "name": "throttling.iops-write-max", + "help": "I/O operations write burst", + "type": "number" + }, + { + "name": "throttling.iops-read-max", + "help": "I/O operations read burst", + "type": "number" + }, + { + "name": "throttling.iops-total-max", + "help": "I/O operations burst", + "type": "number" + }, + { + "name": "throttling.bps-write", + "help": "limit write bytes per second", + "type": "number" + }, + { + "name": "throttling.bps-read", + "help": "limit read bytes per second", + "type": "number" + }, + { + "name": "throttling.bps-total", + "help": "limit total bytes per second", + "type": "number" + }, + { + "name": "throttling.iops-write", + "help": "limit write operations per second", + "type": "number" + }, + { + "name": "throttling.iops-read", + "help": "limit read operations per second", + "type": "number" + }, + { + "name": "throttling.iops-total", + "help": "limit total I/O operations per second", + "type": "number" + }, + { + "name": "dmode", + "type": "number" + }, + { + "name": "fmode", + "type": "number" + }, + { + "name": "sock_fd", + "type": "number" + }, + { + "name": "socket", + "type": "string" + }, + { + "name": "readonly", + "type": "boolean" + }, + { + "name": "writeout", + "type": "string" + }, + { + "name": "security_model", + "type": "string" + }, + { + "name": "path", + "type": "string" + }, + { + "name": "fsdriver", + "type": "string" + } + ], + "option": "fsdev" + }, + { + "parameters": [ + { + "name": "resourcecontrol", + "type": "string" + }, + { + "name": "spawn", + "type": "string" + }, + { + "name": "elevateprivileges", + "type": "string" + }, + { + "name": "obsolete", + "type": "string" + }, + { + "name": "enable", + "type": "boolean" + } + ], + "option": "sandbox" + }, + { + "parameters": [ + { + "name": "string", + "help": "Sets content of the blob to be inserted from a string", + "type": "string" + }, + { + "name": "file", + "help": "Sets the name of the file from which\nthe fw_cfg blob w= ill be loaded", + "type": "string" + }, + { + "name": "name", + "help": "Sets the fw_cfg name of the blob to be inserted", + "type": "string" + } + ], + "option": "fw_cfg" + }, + { + "parameters": [ + { + "name": "arg", + "type": "string" + }, + { + "name": "target", + "type": "string" + }, + { + "name": "enable", + "type": "boolean" + } + ], + "option": "semihosting-config" + }, + { + "parameters": [ + { + "name": "rrsnapshot", + "type": "string" + }, + { + "name": "rrfile", + "type": "string" + }, + { + "name": "rr", + "type": "string" + }, + { + "name": "sleep", + "type": "boolean" + }, + { + "name": "align", + "type": "boolean" + }, + { + "name": "shift", + "type": "string" + } + ], + "option": "icount" + }, + { + "parameters": [ + ], + "option": "numa" + }, + { + "parameters": [ + { + "name": "debug-threads", + "help": "When enabled, name the individual threads; defaults off= .\nNOTE: The thread names are for debugging and not a\nstable API.", + "type": "boolean" + }, + { + "name": "process", + "help": "Sets the name of the QEMU process, as shown in top etc", + "type": "string" + }, + { + "name": "guest", + "help": "Sets the name of the guest.\nThis name will be displaye= d in the SDL window caption.\nThe name will also be used for the VNC server= ", + "type": "string" + } + ], + "option": "name" + }, + { + "parameters": [ + { + "name": "timestamp", + "type": "boolean" + } + ], + "option": "msg" + }, + { + "parameters": [ + { + "name": "mlock", + "type": "boolean" + } + ], + "option": "realtime" + }, + { + "parameters": [ + ], + "option": "tpmdev" + }, + { + "parameters": [ + ], + "option": "object" + }, + { + "parameters": [ + { + "name": "opaque", + "help": "free-form string used to describe fd", + "type": "string" + }, + { + "name": "set", + "help": "ID of the fd set to add fd to", + "type": "number" + }, + { + "name": "fd", + "help": "file descriptor of which a duplicate is added to fd set= ", + "type": "number" + } + ], + "option": "add-fd" + }, + { + "parameters": [ + { + "name": "strict", + "type": "boolean" + }, + { + "name": "reboot-timeout", + "type": "string" + }, + { + "name": "splash-time", + "type": "string" + }, + { + "name": "splash", + "type": "string" + }, + { + "name": "menu", + "type": "boolean" + }, + { + "name": "once", + "type": "string" + }, + { + "name": "order", + "type": "string" + } + ], + "option": "boot-opts" + }, + { + "parameters": [ + { + "name": "maxcpus", + "type": "number" + }, + { + "name": "threads", + "type": "number" + }, + { + "name": "cores", + "type": "number" + }, + { + "name": "sockets", + "type": "number" + }, + { + "name": "cpus", + "type": "number" + } + ], + "option": "smp-opts" + }, + { + "parameters": [ + { + "name": "maxmem", + "type": "size" + }, + { + "name": "slots", + "type": "number" + }, + { + "name": "size", + "type": "size" + } + ], + "option": "memory" + }, + { + "parameters": [ + { + "name": "thread", + "help": "Enable/disable multi-threaded TCG", + "type": "string" + }, + { + "name": "accel", + "help": "Select the type of accelerator", + "type": "string" + } + ], + "option": "accel" + }, + { + "parameters": [ + { + "name": "loadparm", + "help": "Up to 8 chars in set of [A-Za-z0-9. ](lower case chars = converted to upper case) to pass to machine loader, boot manager, and guest= kernel", + "type": "string" + }, + { + "name": "dea-key-wrap", + "help": "enable/disable DEA key wrapping using the CPACF wrappin= g key", + "type": "boolean" + }, + { + "name": "aes-key-wrap", + "help": "enable/disable AES key wrapping using the CPACF wrappin= g key", + "type": "boolean" + }, + { + "name": "suppress-vmdesc", + "help": "Set on to disable self-describing migration", + "type": "boolean" + }, + { + "name": "iommu", + "help": "Set on/off to enable/disable Intel IOMMU (VT-d)", + "type": "boolean" + }, + { + "name": "firmware", + "help": "firmware image", + "type": "string" + }, + { + "name": "usb", + "help": "Set on/off to enable/disable usb", + "type": "boolean" + }, + { + "name": "mem-merge", + "help": "enable/disable memory merge support", + "type": "boolean" + }, + { + "name": "dump-guest-core", + "help": "Include guest memory in a core dump", + "type": "boolean" + }, + { + "name": "dt_compatible", + "help": "Overrides the \"compatible\" property of the dt root no= de", + "type": "string" + }, + { + "name": "phandle_start", + "help": "The first phandle ID we may generate dynamically", + "type": "number" + }, + { + "name": "dumpdtb", + "help": "Dump current dtb to a file and quit", + "type": "string" + }, + { + "name": "dtb", + "help": "Linux kernel device tree file", + "type": "string" + }, + { + "name": "append", + "help": "Linux kernel command line", + "type": "string" + }, + { + "name": "initrd", + "help": "Linux initial ramdisk file", + "type": "string" + }, + { + "name": "kernel", + "help": "Linux kernel image file", + "type": "string" + }, + { + "name": "kvm_shadow_mem", + "help": "KVM shadow MMU size", + "type": "size" + }, + { + "name": "kernel_irqchip", + "help": "use KVM in-kernel irqchip", + "type": "boolean" + }, + { + "name": "accel", + "help": "accelerator list", + "type": "string" + }, + { + "name": "type", + "help": "emulated machine", + "type": "string" + } + ], + "option": "machine" + }, + { + "parameters": [ + { + "name": "romfile", + "type": "string" + }, + { + "name": "bootindex", + "type": "number" + } + ], + "option": "option-rom" + }, + { + "parameters": [ + { + "name": "file", + "type": "string" + }, + { + "name": "events", + "type": "string" + }, + { + "name": "enable", + "type": "string" + } + ], + "option": "trace" + }, + { + "parameters": [ + { + "name": "x-oob", + "type": "boolean" + }, + { + "name": "pretty", + "type": "boolean" + }, + { + "name": "chardev", + "type": "string" + }, + { + "name": "mode", + "type": "string" + } + ], + "option": "mon" + }, + { + "parameters": [ + { + "name": "value", + "type": "string" + }, + { + "name": "property", + "type": "string" + }, + { + "name": "driver", + "type": "string" + } + ], + "option": "global" + }, + { + "parameters": [ + { + "name": "driftfix", + "type": "string" + }, + { + "name": "clock", + "type": "string" + }, + { + "name": "base", + "type": "string" + } + ], + "option": "rtc" + }, + { + "parameters": [ + ], + "option": "net" + }, + { + "parameters": [ + ], + "option": "nic" + }, + { + "parameters": [ + ], + "option": "netdev" + }, + { + "parameters": [ + ], + "option": "device" + }, + { + "parameters": [ + { + "name": "logappend", + "type": "boolean" + }, + { + "name": "logfile", + "type": "string" + }, + { + "name": "append", + "type": "boolean" + }, + { + "name": "chardev", + "type": "string" + }, + { + "name": "size", + "type": "size" + }, + { + "name": "debug", + "type": "number" + }, + { + "name": "name", + "type": "string" + }, + { + "name": "signal", + "type": "boolean" + }, + { + "name": "mux", + "type": "boolean" + }, + { + "name": "rows", + "type": "number" + }, + { + "name": "cols", + "type": "number" + }, + { + "name": "height", + "type": "number" + }, + { + "name": "width", + "type": "number" + }, + { + "name": "tls-creds", + "type": "string" + }, + { + "name": "tn3270", + "type": "boolean" + }, + { + "name": "telnet", + "type": "boolean" + }, + { + "name": "reconnect", + "type": "number" + }, + { + "name": "delay", + "type": "boolean" + }, + { + "name": "server", + "type": "boolean" + }, + { + "name": "wait", + "type": "boolean" + }, + { + "name": "ipv6", + "type": "boolean" + }, + { + "name": "ipv4", + "type": "boolean" + }, + { + "name": "to", + "type": "number" + }, + { + "name": "localport", + "type": "string" + }, + { + "name": "localaddr", + "type": "string" + }, + { + "name": "fd", + "type": "string" + }, + { + "name": "port", + "type": "string" + }, + { + "name": "host", + "type": "string" + }, + { + "name": "path", + "type": "string" + }, + { + "name": "backend", + "type": "string" + } + ], + "option": "chardev" + }, + { + "parameters": [ + { + "name": "copy-on-read", + "help": "copy read data from backing file into image file", + "type": "boolean" + }, + { + "name": "werror", + "help": "write error action", + "type": "string" + }, + { + "name": "rerror", + "help": "read error action", + "type": "string" + }, + { + "name": "read-only", + "help": "open drive file as read-only", + "type": "boolean" + }, + { + "name": "file", + "help": "file name", + "type": "string" + }, + { + "name": "if", + "help": "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)", + "type": "string" + }, + { + "name": "media", + "help": "media type (disk, cdrom)", + "type": "string" + }, + { + "name": "index", + "help": "index number", + "type": "number" + }, + { + "name": "unit", + "help": "unit number (i.e. lun for scsi)", + "type": "number" + }, + { + "name": "bus", + "help": "bus number", + "type": "number" + }, + { + "name": "stats-account-failed", + "help": "whether to account for failed I/O operations in the sta= tistics", + "type": "boolean" + }, + { + "name": "stats-account-invalid", + "help": "whether to account for invalid I/O operations in the st= atistics", + "type": "boolean" + }, + { + "name": "detect-zeroes", + "help": "try to optimize zero writes (off, on, unmap)", + "type": "string" + }, + { + "name": "throttling.group", + "help": "name of the block throttling group", + "type": "string" + }, + { + "name": "throttling.iops-size", + "help": "when limiting by iops max size of an I/O in bytes", + "type": "number" + }, + { + "name": "throttling.bps-write-max-length", + "help": "length of the bps-write-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.bps-read-max-length", + "help": "length of the bps-read-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.bps-total-max-length", + "help": "length of the bps-total-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.iops-write-max-length", + "help": "length of the iops-write-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.iops-read-max-length", + "help": "length of the iops-read-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.iops-total-max-length", + "help": "length of the iops-total-max burst period, in seconds", + "type": "number" + }, + { + "name": "throttling.bps-write-max", + "help": "total bytes write burst", + "type": "number" + }, + { + "name": "throttling.bps-read-max", + "help": "total bytes read burst", + "type": "number" + }, + { + "name": "throttling.bps-total-max", + "help": "total bytes burst", + "type": "number" + }, + { + "name": "throttling.iops-write-max", + "help": "I/O operations write burst", + "type": "number" + }, + { + "name": "throttling.iops-read-max", + "help": "I/O operations read burst", + "type": "number" + }, + { + "name": "throttling.iops-total-max", + "help": "I/O operations burst", + "type": "number" + }, + { + "name": "throttling.bps-write", + "help": "limit write bytes per second", + "type": "number" + }, + { + "name": "throttling.bps-read", + "help": "limit read bytes per second", + "type": "number" + }, + { + "name": "throttling.bps-total", + "help": "limit total bytes per second", + "type": "number" + }, + { + "name": "throttling.iops-write", + "help": "limit write operations per second", + "type": "number" + }, + { + "name": "throttling.iops-read", + "help": "limit read operations per second", + "type": "number" + }, + { + "name": "throttling.iops-total", + "help": "limit total I/O operations per second", + "type": "number" + }, + { + "name": "werror", + "help": "write error action", + "type": "string" + }, + { + "name": "format", + "help": "disk format (raw, qcow2, ...)", + "type": "string" + }, + { + "name": "cache.writeback", + "help": "Enable writeback mode", + "type": "boolean" + }, + { + "name": "aio", + "help": "host AIO implementation (threads, native)", + "type": "string" + }, + { + "name": "snapshot", + "help": "enable/disable snapshot mode", + "type": "boolean" + }, + { + "name": "force-share", + "help": "always accept other writers (default: off)", + "type": "boolean" + }, + { + "name": "discard", + "help": "discard operation (ignore/off, unmap/on)", + "type": "string" + }, + { + "name": "read-only", + "help": "Node is opened in read-only mode", + "type": "boolean" + }, + { + "name": "cache.no-flush", + "help": "Ignore flush requests", + "type": "boolean" + }, + { + "name": "cache.direct", + "help": "Bypass software writeback cache on the host", + "type": "boolean" + }, + { + "name": "driver", + "help": "Block driver to use for the node", + "type": "string" + }, + { + "name": "node-name", + "help": "Node name of the block device node", + "type": "string" + } + ], + "option": "drive" + } + ], + "id": "libvirt-47" +} + +{ + "execute": "query-migrate-capabilities", + "id": "libvirt-48" +} + +{ + "return": [ + { + "state": false, + "capability": "xbzrle" + }, + { + "state": false, + "capability": "rdma-pin-all" + }, + { + "state": false, + "capability": "auto-converge" + }, + { + "state": false, + "capability": "zero-blocks" + }, + { + "state": false, + "capability": "compress" + }, + { + "state": false, + "capability": "events" + }, + { + "state": false, + "capability": "postcopy-ram" + }, + { + "state": false, + "capability": "x-colo" + }, + { + "state": false, + "capability": "release-ram" + }, + { + "state": false, + "capability": "block" + }, + { + "state": false, + "capability": "return-path" + }, + { + "state": false, + "capability": "pause-before-switchover" + }, + { + "state": false, + "capability": "x-multifd" + }, + { + "state": false, + "capability": "dirty-bitmaps" + }, + { + "state": false, + "capability": "postcopy-blocktime" + }, + { + "state": false, + "capability": "late-block-activate" + } + ], + "id": "libvirt-48" +} + +{ + "execute": "query-qmp-schema", + "id": "libvirt-49" +} + +{ + "return": [ + { + "name": "query-status", + "ret-type": "1", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "SHUTDOWN", + "meta-type": "event", + "arg-type": "2" + }, + { + "name": "POWERDOWN", + "meta-type": "event", + "arg-type": "0" + }, + { + "name": "RESET", + "meta-type": "event", + "arg-type": "3" + }, + { + "name": "STOP", + "meta-type": "event", + "arg-type": "0" + }, + { + "name": "RESUME", + "meta-type": "event", + "arg-type": "0" + }, + { + "name": "SUSPEND", + "meta-type": "event", + "arg-type": "0" + }, + { + "name": "SUSPEND_DISK", + "meta-type": "event", + "arg-type": "0" + }, + { + "name": "WAKEUP", + "meta-type": "event", + "arg-type": "0" + }, + { + "name": "WATCHDOG", + "meta-type": "event", + "arg-type": "4" + }, + { + "name": "watchdog-set-action", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "5" + }, + { + "name": "GUEST_PANICKED", + "meta-type": "event", + "arg-type": "6" + }, + { + "name": "JOB_STATUS_CHANGE", + "meta-type": "event", + "arg-type": "7" + }, + { + "name": "job-pause", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "8" + }, + { + "name": "job-resume", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "9" + }, + { + "name": "job-cancel", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "10" + }, + { + "name": "job-complete", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "11" + }, + { + "name": "job-dismiss", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "12" + }, + { + "name": "job-finalize", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "13" + }, + { + "name": "query-jobs", + "ret-type": "[14]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "x-block-latency-histogram-set", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "15" + }, + { + "name": "query-block", + "ret-type": "[16]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-blockstats", + "ret-type": "[18]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "17" + }, + { + "name": "query-block-jobs", + "ret-type": "[19]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "block_passwd", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "20" + }, + { + "name": "block_resize", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "21" + }, + { + "name": "blockdev-snapshot-sync", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "22" + }, + { + "name": "blockdev-snapshot", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "23" + }, + { + "name": "change-backing-file", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "24" + }, + { + "name": "block-commit", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "25" + }, + { + "name": "drive-backup", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "26" + }, + { + "name": "blockdev-backup", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "27" + }, + { + "name": "query-named-block-nodes", + "ret-type": "[28]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "drive-mirror", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "29" + }, + { + "name": "block-dirty-bitmap-add", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "30" + }, + { + "name": "block-dirty-bitmap-remove", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "31" + }, + { + "name": "block-dirty-bitmap-clear", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "31" + }, + { + "name": "x-block-dirty-bitmap-enable", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "31" + }, + { + "name": "x-block-dirty-bitmap-disable", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "31" + }, + { + "name": "x-block-dirty-bitmap-merge", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "32" + }, + { + "name": "x-debug-block-dirty-bitmap-sha256", + "ret-type": "33", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "31" + }, + { + "name": "blockdev-mirror", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "34" + }, + { + "name": "block_set_io_throttle", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "35" + }, + { + "name": "block-stream", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "36" + }, + { + "name": "block-job-set-speed", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "37" + }, + { + "name": "block-job-cancel", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "38" + }, + { + "name": "block-job-pause", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "39" + }, + { + "name": "block-job-resume", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "40" + }, + { + "name": "block-job-complete", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "41" + }, + { + "name": "block-job-dismiss", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "42" + }, + { + "name": "block-job-finalize", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "43" + }, + { + "name": "blockdev-add", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "44" + }, + { + "name": "blockdev-del", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "45" + }, + { + "name": "blockdev-create", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "46" + }, + { + "name": "blockdev-open-tray", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "47" + }, + { + "name": "blockdev-close-tray", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "48" + }, + { + "name": "blockdev-remove-medium", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "49" + }, + { + "name": "blockdev-insert-medium", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "50" + }, + { + "name": "blockdev-change-medium", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "51" + }, + { + "name": "BLOCK_IMAGE_CORRUPTED", + "meta-type": "event", + "arg-type": "52" + }, + { + "name": "BLOCK_IO_ERROR", + "meta-type": "event", + "arg-type": "53" + }, + { + "name": "BLOCK_JOB_COMPLETED", + "meta-type": "event", + "arg-type": "54" + }, + { + "name": "BLOCK_JOB_CANCELLED", + "meta-type": "event", + "arg-type": "55" + }, + { + "name": "BLOCK_JOB_ERROR", + "meta-type": "event", + "arg-type": "56" + }, + { + "name": "BLOCK_JOB_READY", + "meta-type": "event", + "arg-type": "57" + }, + { + "name": "BLOCK_JOB_PENDING", + "meta-type": "event", + "arg-type": "58" + }, + { + "name": "BLOCK_WRITE_THRESHOLD", + "meta-type": "event", + "arg-type": "59" + }, + { + "name": "block-set-write-threshold", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "60" + }, + { + "name": "x-blockdev-change", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "61" + }, + { + "name": "x-blockdev-set-iothread", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "62" + }, + { + "name": "query-pr-managers", + "ret-type": "[63]", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "blockdev-snapshot-internal-sync", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "64" + }, + { + "name": "blockdev-snapshot-delete-internal-sync", + "ret-type": "66", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "65" + }, + { + "name": "eject", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "67" + }, + { + "name": "nbd-server-start", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "68" + }, + { + "name": "nbd-server-add", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "69" + }, + { + "name": "nbd-server-remove", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "70" + }, + { + "name": "x-nbd-server-add-bitmap", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "71" + }, + { + "name": "nbd-server-stop", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "DEVICE_TRAY_MOVED", + "meta-type": "event", + "arg-type": "72" + }, + { + "name": "PR_MANAGER_STATUS_CHANGED", + "meta-type": "event", + "arg-type": "73" + }, + { + "name": "QUORUM_FAILURE", + "meta-type": "event", + "arg-type": "74" + }, + { + "name": "QUORUM_REPORT_BAD", + "meta-type": "event", + "arg-type": "75" + }, + { + "name": "query-chardev", + "ret-type": "[76]", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-chardev-backends", + "ret-type": "[77]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "ringbuf-write", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "78" + }, + { + "name": "ringbuf-read", + "ret-type": "str", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "79" + }, + { + "name": "chardev-add", + "ret-type": "81", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "80" + }, + { + "name": "chardev-change", + "ret-type": "81", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "82" + }, + { + "name": "chardev-remove", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "83" + }, + { + "name": "chardev-send-break", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "84" + }, + { + "name": "VSERPORT_CHANGE", + "meta-type": "event", + "arg-type": "85" + }, + { + "name": "set_link", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "86" + }, + { + "name": "netdev_add", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "87" + }, + { + "name": "netdev_del", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "88" + }, + { + "name": "query-rx-filter", + "ret-type": "[90]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "89" + }, + { + "name": "NIC_RX_FILTER_CHANGED", + "meta-type": "event", + "arg-type": "91" + }, + { + "name": "query-rocker", + "ret-type": "93", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "92" + }, + { + "name": "query-rocker-ports", + "ret-type": "[95]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "94" + }, + { + "name": "query-rocker-of-dpa-flows", + "ret-type": "[97]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "96" + }, + { + "name": "query-rocker-of-dpa-groups", + "ret-type": "[99]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "98" + }, + { + "name": "query-tpm-models", + "ret-type": "[100]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-tpm-types", + "ret-type": "[101]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-tpm", + "ret-type": "[102]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "set_password", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "103" + }, + { + "name": "expire_password", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "104" + }, + { + "name": "screendump", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "105" + }, + { + "name": "query-spice", + "ret-type": "106", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "SPICE_CONNECTED", + "meta-type": "event", + "arg-type": "107" + }, + { + "name": "SPICE_INITIALIZED", + "meta-type": "event", + "arg-type": "108" + }, + { + "name": "SPICE_DISCONNECTED", + "meta-type": "event", + "arg-type": "109" + }, + { + "name": "SPICE_MIGRATE_COMPLETED", + "meta-type": "event", + "arg-type": "0" + }, + { + "name": "query-vnc", + "ret-type": "110", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-vnc-servers", + "ret-type": "[111]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "change-vnc-password", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "112" + }, + { + "name": "VNC_CONNECTED", + "meta-type": "event", + "arg-type": "113" + }, + { + "name": "VNC_INITIALIZED", + "meta-type": "event", + "arg-type": "114" + }, + { + "name": "VNC_DISCONNECTED", + "meta-type": "event", + "arg-type": "115" + }, + { + "name": "query-mice", + "ret-type": "[116]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "send-key", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "117" + }, + { + "name": "input-send-event", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "118" + }, + { + "name": "query-migrate", + "ret-type": "119", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "migrate-set-capabilities", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "120" + }, + { + "name": "query-migrate-capabilities", + "ret-type": "[121]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "migrate-set-parameters", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "122" + }, + { + "name": "query-migrate-parameters", + "ret-type": "123", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "client_migrate_info", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "124" + }, + { + "name": "migrate-start-postcopy", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "MIGRATION", + "meta-type": "event", + "arg-type": "125" + }, + { + "name": "MIGRATION_PASS", + "meta-type": "event", + "arg-type": "126" + }, + { + "name": "x-colo-lost-heartbeat", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "migrate_cancel", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "migrate-continue", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "127" + }, + { + "name": "migrate_set_downtime", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "128" + }, + { + "name": "migrate_set_speed", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "129" + }, + { + "name": "migrate-set-cache-size", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "130" + }, + { + "name": "query-migrate-cache-size", + "ret-type": "int", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "migrate", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "131" + }, + { + "name": "migrate-incoming", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "132" + }, + { + "name": "xen-save-devices-state", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "133" + }, + { + "name": "xen-set-replication", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "134" + }, + { + "name": "query-xen-replication-status", + "ret-type": "135", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "xen-colo-do-checkpoint", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "migrate-recover", + "ret-type": "0", + "allow-oob": true, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "136" + }, + { + "name": "migrate-pause", + "ret-type": "0", + "allow-oob": true, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "transaction", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "137" + }, + { + "name": "trace-event-get-state", + "ret-type": "[139]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "138" + }, + { + "name": "trace-event-set-state", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "140" + }, + { + "name": "query-qmp-schema", + "ret-type": "[141]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "qmp_capabilities", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "142" + }, + { + "name": "query-version", + "ret-type": "143", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-commands", + "ret-type": "[144]", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "add_client", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "145" + }, + { + "name": "query-name", + "ret-type": "146", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-kvm", + "ret-type": "147", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-uuid", + "ret-type": "148", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-events", + "ret-type": "[149]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-cpus", + "ret-type": "[150]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-cpus-fast", + "ret-type": "[151]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-iothreads", + "ret-type": "[152]", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-balloon", + "ret-type": "153", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "BALLOON_CHANGE", + "meta-type": "event", + "arg-type": "154" + }, + { + "name": "query-pci", + "ret-type": "[155]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "quit", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "stop", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "system_reset", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "system_powerdown", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "cpu-add", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "156" + }, + { + "name": "memsave", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "157" + }, + { + "name": "pmemsave", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "158" + }, + { + "name": "cont", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "exit-preconfig", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "system_wakeup", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "inject-nmi", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "balloon", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "159" + }, + { + "name": "human-monitor-command", + "ret-type": "str", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "160" + }, + { + "name": "qom-list", + "ret-type": "[162]", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "161" + }, + { + "name": "qom-get", + "ret-type": "any", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "163" + }, + { + "name": "qom-set", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "164" + }, + { + "name": "change", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "165" + }, + { + "name": "qom-list-types", + "ret-type": "[167]", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "166" + }, + { + "name": "device-list-properties", + "ret-type": "[162]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "168" + }, + { + "name": "qom-list-properties", + "ret-type": "[162]", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "169" + }, + { + "name": "xen-set-global-dirty-log", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "170" + }, + { + "name": "device_add", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "171" + }, + { + "name": "device_del", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "172" + }, + { + "name": "DEVICE_DELETED", + "meta-type": "event", + "arg-type": "173" + }, + { + "name": "dump-guest-memory", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "174" + }, + { + "name": "query-dump", + "ret-type": "175", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "DUMP_COMPLETED", + "meta-type": "event", + "arg-type": "176" + }, + { + "name": "query-dump-guest-memory-capability", + "ret-type": "177", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "dump-skeys", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "178" + }, + { + "name": "object-add", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "179" + }, + { + "name": "object-del", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "180" + }, + { + "name": "getfd", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "181" + }, + { + "name": "closefd", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "182" + }, + { + "name": "query-machines", + "ret-type": "[183]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-memory-size-summary", + "ret-type": "184", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-cpu-definitions", + "ret-type": "[185]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-cpu-model-expansion", + "ret-type": "187", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "186" + }, + { + "name": "query-cpu-model-comparison", + "ret-type": "189", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "188" + }, + { + "name": "query-cpu-model-baseline", + "ret-type": "191", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "190" + }, + { + "name": "add-fd", + "ret-type": "193", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "192" + }, + { + "name": "remove-fd", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "194" + }, + { + "name": "query-fdsets", + "ret-type": "[195]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-target", + "ret-type": "196", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-command-line-options", + "ret-type": "[198]", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "197" + }, + { + "name": "query-memdev", + "ret-type": "[199]", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-memory-devices", + "ret-type": "[200]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "MEM_UNPLUG_ERROR", + "meta-type": "event", + "arg-type": "201" + }, + { + "name": "query-acpi-ospm-status", + "ret-type": "[202]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "ACPI_DEVICE_OST", + "meta-type": "event", + "arg-type": "203" + }, + { + "name": "rtc-reset-reinjection", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "RTC_CHANGE", + "meta-type": "event", + "arg-type": "204" + }, + { + "name": "xen-load-devices-state", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "205" + }, + { + "name": "query-gic-capabilities", + "ret-type": "[206]", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-hotpluggable-cpus", + "ret-type": "[207]", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-vm-generation-id", + "ret-type": "208", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-sev", + "ret-type": "209", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-sev-launch-measure", + "ret-type": "210", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "query-sev-capabilities", + "ret-type": "211", + "allow-oob": false, + "allow-preconfig": false, + "meta-type": "command", + "arg-type": "0" + }, + { + "name": "COMMAND_DROPPED", + "meta-type": "event", + "arg-type": "212" + }, + { + "name": "set-numa-node", + "ret-type": "0", + "allow-oob": false, + "allow-preconfig": true, + "meta-type": "command", + "arg-type": "213" + }, + { + "name": "0", + "members": [ + ], + "meta-type": "object" + }, + { + "name": "1", + "members": [ + { + "name": "running", + "type": "bool" + }, + { + "name": "singlestep", + "type": "bool" + }, + { + "name": "status", + "type": "214" + } + ], + "meta-type": "object" + }, + { + "name": "2", + "members": [ + { + "name": "guest", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "3", + "members": [ + { + "name": "guest", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "4", + "members": [ + { + "name": "action", + "type": "215" + } + ], + "meta-type": "object" + }, + { + "name": "5", + "members": [ + { + "name": "action", + "type": "215" + } + ], + "meta-type": "object" + }, + { + "name": "6", + "members": [ + { + "name": "action", + "type": "216" + }, + { + "name": "info", + "default": null, + "type": "217" + } + ], + "meta-type": "object" + }, + { + "name": "7", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "status", + "type": "218" + } + ], + "meta-type": "object" + }, + { + "name": "8", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "9", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "10", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "11", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "12", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "13", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[14]", + "element-type": "14", + "meta-type": "array" + }, + { + "name": "14", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "type", + "type": "219" + }, + { + "name": "status", + "type": "218" + }, + { + "name": "current-progress", + "type": "int" + }, + { + "name": "total-progress", + "type": "int" + }, + { + "name": "error", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "15", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "boundaries", + "default": null, + "type": "[int]" + }, + { + "name": "boundaries-read", + "default": null, + "type": "[int]" + }, + { + "name": "boundaries-write", + "default": null, + "type": "[int]" + }, + { + "name": "boundaries-flush", + "default": null, + "type": "[int]" + } + ], + "meta-type": "object" + }, + { + "name": "[16]", + "element-type": "16", + "meta-type": "array" + }, + { + "name": "16", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "qdev", + "default": null, + "type": "str" + }, + { + "name": "type", + "type": "str" + }, + { + "name": "removable", + "type": "bool" + }, + { + "name": "locked", + "type": "bool" + }, + { + "name": "inserted", + "default": null, + "type": "28" + }, + { + "name": "tray_open", + "default": null, + "type": "bool" + }, + { + "name": "io-status", + "default": null, + "type": "220" + }, + { + "name": "dirty-bitmaps", + "default": null, + "type": "[221]" + } + ], + "meta-type": "object" + }, + { + "name": "17", + "members": [ + { + "name": "query-nodes", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "[18]", + "element-type": "18", + "meta-type": "array" + }, + { + "name": "18", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "node-name", + "default": null, + "type": "str" + }, + { + "name": "stats", + "type": "222" + }, + { + "name": "parent", + "default": null, + "type": "18" + }, + { + "name": "backing", + "default": null, + "type": "18" + } + ], + "meta-type": "object" + }, + { + "name": "[19]", + "element-type": "19", + "meta-type": "array" + }, + { + "name": "19", + "members": [ + { + "name": "type", + "type": "str" + }, + { + "name": "device", + "type": "str" + }, + { + "name": "len", + "type": "int" + }, + { + "name": "offset", + "type": "int" + }, + { + "name": "busy", + "type": "bool" + }, + { + "name": "paused", + "type": "bool" + }, + { + "name": "speed", + "type": "int" + }, + { + "name": "io-status", + "type": "220" + }, + { + "name": "ready", + "type": "bool" + }, + { + "name": "status", + "type": "218" + }, + { + "name": "auto-finalize", + "type": "bool" + }, + { + "name": "auto-dismiss", + "type": "bool" + }, + { + "name": "error", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "20", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "node-name", + "default": null, + "type": "str" + }, + { + "name": "password", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "21", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "node-name", + "default": null, + "type": "str" + }, + { + "name": "size", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "22", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "node-name", + "default": null, + "type": "str" + }, + { + "name": "snapshot-file", + "type": "str" + }, + { + "name": "snapshot-node-name", + "default": null, + "type": "str" + }, + { + "name": "format", + "default": null, + "type": "str" + }, + { + "name": "mode", + "default": null, + "type": "223" + } + ], + "meta-type": "object" + }, + { + "name": "23", + "members": [ + { + "name": "node", + "type": "str" + }, + { + "name": "overlay", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "24", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "image-node-name", + "type": "str" + }, + { + "name": "backing-file", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "25", + "members": [ + { + "name": "job-id", + "default": null, + "type": "str" + }, + { + "name": "device", + "type": "str" + }, + { + "name": "base", + "default": null, + "type": "str" + }, + { + "name": "top", + "default": null, + "type": "str" + }, + { + "name": "backing-file", + "default": null, + "type": "str" + }, + { + "name": "speed", + "default": null, + "type": "int" + }, + { + "name": "filter-node-name", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "26", + "members": [ + { + "name": "job-id", + "default": null, + "type": "str" + }, + { + "name": "device", + "type": "str" + }, + { + "name": "target", + "type": "str" + }, + { + "name": "format", + "default": null, + "type": "str" + }, + { + "name": "sync", + "type": "224" + }, + { + "name": "mode", + "default": null, + "type": "223" + }, + { + "name": "speed", + "default": null, + "type": "int" + }, + { + "name": "bitmap", + "default": null, + "type": "str" + }, + { + "name": "compress", + "default": null, + "type": "bool" + }, + { + "name": "on-source-error", + "default": null, + "type": "225" + }, + { + "name": "on-target-error", + "default": null, + "type": "225" + }, + { + "name": "auto-finalize", + "default": null, + "type": "bool" + }, + { + "name": "auto-dismiss", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "27", + "members": [ + { + "name": "job-id", + "default": null, + "type": "str" + }, + { + "name": "device", + "type": "str" + }, + { + "name": "target", + "type": "str" + }, + { + "name": "sync", + "type": "224" + }, + { + "name": "speed", + "default": null, + "type": "int" + }, + { + "name": "compress", + "default": null, + "type": "bool" + }, + { + "name": "on-source-error", + "default": null, + "type": "225" + }, + { + "name": "on-target-error", + "default": null, + "type": "225" + }, + { + "name": "auto-finalize", + "default": null, + "type": "bool" + }, + { + "name": "auto-dismiss", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "[28]", + "element-type": "28", + "meta-type": "array" + }, + { + "name": "28", + "members": [ + { + "name": "file", + "type": "str" + }, + { + "name": "node-name", + "default": null, + "type": "str" + }, + { + "name": "ro", + "type": "bool" + }, + { + "name": "drv", + "type": "str" + }, + { + "name": "backing_file", + "default": null, + "type": "str" + }, + { + "name": "backing_file_depth", + "type": "int" + }, + { + "name": "encrypted", + "type": "bool" + }, + { + "name": "encryption_key_missing", + "type": "bool" + }, + { + "name": "detect_zeroes", + "type": "226" + }, + { + "name": "bps", + "type": "int" + }, + { + "name": "bps_rd", + "type": "int" + }, + { + "name": "bps_wr", + "type": "int" + }, + { + "name": "iops", + "type": "int" + }, + { + "name": "iops_rd", + "type": "int" + }, + { + "name": "iops_wr", + "type": "int" + }, + { + "name": "image", + "type": "227" + }, + { + "name": "bps_max", + "default": null, + "type": "int" + }, + { + "name": "bps_rd_max", + "default": null, + "type": "int" + }, + { + "name": "bps_wr_max", + "default": null, + "type": "int" + }, + { + "name": "iops_max", + "default": null, + "type": "int" + }, + { + "name": "iops_rd_max", + "default": null, + "type": "int" + }, + { + "name": "iops_wr_max", + "default": null, + "type": "int" + }, + { + "name": "bps_max_length", + "default": null, + "type": "int" + }, + { + "name": "bps_rd_max_length", + "default": null, + "type": "int" + }, + { + "name": "bps_wr_max_length", + "default": null, + "type": "int" + }, + { + "name": "iops_max_length", + "default": null, + "type": "int" + }, + { + "name": "iops_rd_max_length", + "default": null, + "type": "int" + }, + { + "name": "iops_wr_max_length", + "default": null, + "type": "int" + }, + { + "name": "iops_size", + "default": null, + "type": "int" + }, + { + "name": "group", + "default": null, + "type": "str" + }, + { + "name": "cache", + "type": "228" + }, + { + "name": "write_threshold", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "29", + "members": [ + { + "name": "job-id", + "default": null, + "type": "str" + }, + { + "name": "device", + "type": "str" + }, + { + "name": "target", + "type": "str" + }, + { + "name": "format", + "default": null, + "type": "str" + }, + { + "name": "node-name", + "default": null, + "type": "str" + }, + { + "name": "replaces", + "default": null, + "type": "str" + }, + { + "name": "sync", + "type": "224" + }, + { + "name": "mode", + "default": null, + "type": "223" + }, + { + "name": "speed", + "default": null, + "type": "int" + }, + { + "name": "granularity", + "default": null, + "type": "int" + }, + { + "name": "buf-size", + "default": null, + "type": "int" + }, + { + "name": "on-source-error", + "default": null, + "type": "225" + }, + { + "name": "on-target-error", + "default": null, + "type": "225" + }, + { + "name": "unmap", + "default": null, + "type": "bool" + }, + { + "name": "copy-mode", + "default": null, + "type": "229" + } + ], + "meta-type": "object" + }, + { + "name": "30", + "members": [ + { + "name": "node", + "type": "str" + }, + { + "name": "name", + "type": "str" + }, + { + "name": "granularity", + "default": null, + "type": "int" + }, + { + "name": "persistent", + "default": null, + "type": "bool" + }, + { + "name": "autoload", + "default": null, + "type": "bool" + }, + { + "name": "x-disabled", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "31", + "members": [ + { + "name": "node", + "type": "str" + }, + { + "name": "name", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "32", + "members": [ + { + "name": "node", + "type": "str" + }, + { + "name": "dst_name", + "type": "str" + }, + { + "name": "src_name", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "33", + "members": [ + { + "name": "sha256", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "34", + "members": [ + { + "name": "job-id", + "default": null, + "type": "str" + }, + { + "name": "device", + "type": "str" + }, + { + "name": "target", + "type": "str" + }, + { + "name": "replaces", + "default": null, + "type": "str" + }, + { + "name": "sync", + "type": "224" + }, + { + "name": "speed", + "default": null, + "type": "int" + }, + { + "name": "granularity", + "default": null, + "type": "int" + }, + { + "name": "buf-size", + "default": null, + "type": "int" + }, + { + "name": "on-source-error", + "default": null, + "type": "225" + }, + { + "name": "on-target-error", + "default": null, + "type": "225" + }, + { + "name": "filter-node-name", + "default": null, + "type": "str" + }, + { + "name": "copy-mode", + "default": null, + "type": "229" + } + ], + "meta-type": "object" + }, + { + "name": "35", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "id", + "default": null, + "type": "str" + }, + { + "name": "bps", + "type": "int" + }, + { + "name": "bps_rd", + "type": "int" + }, + { + "name": "bps_wr", + "type": "int" + }, + { + "name": "iops", + "type": "int" + }, + { + "name": "iops_rd", + "type": "int" + }, + { + "name": "iops_wr", + "type": "int" + }, + { + "name": "bps_max", + "default": null, + "type": "int" + }, + { + "name": "bps_rd_max", + "default": null, + "type": "int" + }, + { + "name": "bps_wr_max", + "default": null, + "type": "int" + }, + { + "name": "iops_max", + "default": null, + "type": "int" + }, + { + "name": "iops_rd_max", + "default": null, + "type": "int" + }, + { + "name": "iops_wr_max", + "default": null, + "type": "int" + }, + { + "name": "bps_max_length", + "default": null, + "type": "int" + }, + { + "name": "bps_rd_max_length", + "default": null, + "type": "int" + }, + { + "name": "bps_wr_max_length", + "default": null, + "type": "int" + }, + { + "name": "iops_max_length", + "default": null, + "type": "int" + }, + { + "name": "iops_rd_max_length", + "default": null, + "type": "int" + }, + { + "name": "iops_wr_max_length", + "default": null, + "type": "int" + }, + { + "name": "iops_size", + "default": null, + "type": "int" + }, + { + "name": "group", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "36", + "members": [ + { + "name": "job-id", + "default": null, + "type": "str" + }, + { + "name": "device", + "type": "str" + }, + { + "name": "base", + "default": null, + "type": "str" + }, + { + "name": "base-node", + "default": null, + "type": "str" + }, + { + "name": "backing-file", + "default": null, + "type": "str" + }, + { + "name": "speed", + "default": null, + "type": "int" + }, + { + "name": "on-error", + "default": null, + "type": "225" + } + ], + "meta-type": "object" + }, + { + "name": "37", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "speed", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "38", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "force", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "39", + "members": [ + { + "name": "device", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "40", + "members": [ + { + "name": "device", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "41", + "members": [ + { + "name": "device", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "42", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "43", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "44", + "tag": "driver", + "variants": [ + { + "case": "blkdebug", + "type": "233" + }, + { + "case": "blklogwrites", + "type": "234" + }, + { + "case": "blkverify", + "type": "235" + }, + { + "case": "bochs", + "type": "236" + }, + { + "case": "cloop", + "type": "236" + }, + { + "case": "copy-on-read", + "type": "236" + }, + { + "case": "dmg", + "type": "236" + }, + { + "case": "file", + "type": "237" + }, + { + "case": "ftp", + "type": "238" + }, + { + "case": "ftps", + "type": "239" + }, + { + "case": "gluster", + "type": "240" + }, + { + "case": "host_cdrom", + "type": "237" + }, + { + "case": "host_device", + "type": "237" + }, + { + "case": "http", + "type": "241" + }, + { + "case": "https", + "type": "242" + }, + { + "case": "iscsi", + "type": "243" + }, + { + "case": "luks", + "type": "244" + }, + { + "case": "nbd", + "type": "245" + }, + { + "case": "nfs", + "type": "246" + }, + { + "case": "null-aio", + "type": "247" + }, + { + "case": "null-co", + "type": "247" + }, + { + "case": "nvme", + "type": "248" + }, + { + "case": "parallels", + "type": "236" + }, + { + "case": "qcow2", + "type": "249" + }, + { + "case": "qcow", + "type": "250" + }, + { + "case": "qed", + "type": "251" + }, + { + "case": "quorum", + "type": "252" + }, + { + "case": "raw", + "type": "253" + }, + { + "case": "rbd", + "type": "254" + }, + { + "case": "replication", + "type": "255" + }, + { + "case": "sheepdog", + "type": "256" + }, + { + "case": "ssh", + "type": "257" + }, + { + "case": "throttle", + "type": "258" + }, + { + "case": "vdi", + "type": "236" + }, + { + "case": "vhdx", + "type": "236" + }, + { + "case": "vmdk", + "type": "251" + }, + { + "case": "vpc", + "type": "236" + }, + { + "case": "vvfat", + "type": "259" + }, + { + "case": "vxhs", + "type": "260" + } + ], + "members": [ + { + "name": "driver", + "type": "230" + }, + { + "name": "node-name", + "default": null, + "type": "str" + }, + { + "name": "discard", + "default": null, + "type": "231" + }, + { + "name": "cache", + "default": null, + "type": "232" + }, + { + "name": "read-only", + "default": null, + "type": "bool" + }, + { + "name": "force-share", + "default": null, + "type": "bool" + }, + { + "name": "detect-zeroes", + "default": null, + "type": "226" + } + ], + "meta-type": "object" + }, + { + "name": "45", + "members": [ + { + "name": "node-name", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "46", + "members": [ + { + "name": "job-id", + "type": "str" + }, + { + "name": "options", + "type": "261" + } + ], + "meta-type": "object" + }, + { + "name": "47", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "id", + "default": null, + "type": "str" + }, + { + "name": "force", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "48", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "id", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "49", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "50", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "node-name", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "51", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "id", + "default": null, + "type": "str" + }, + { + "name": "filename", + "type": "str" + }, + { + "name": "format", + "default": null, + "type": "str" + }, + { + "name": "read-only-mode", + "default": null, + "type": "262" + } + ], + "meta-type": "object" + }, + { + "name": "52", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "node-name", + "default": null, + "type": "str" + }, + { + "name": "msg", + "type": "str" + }, + { + "name": "offset", + "default": null, + "type": "int" + }, + { + "name": "size", + "default": null, + "type": "int" + }, + { + "name": "fatal", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "53", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "node-name", + "default": null, + "type": "str" + }, + { + "name": "operation", + "type": "263" + }, + { + "name": "action", + "type": "264" + }, + { + "name": "nospace", + "default": null, + "type": "bool" + }, + { + "name": "reason", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "54", + "members": [ + { + "name": "type", + "type": "219" + }, + { + "name": "device", + "type": "str" + }, + { + "name": "len", + "type": "int" + }, + { + "name": "offset", + "type": "int" + }, + { + "name": "speed", + "type": "int" + }, + { + "name": "error", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "55", + "members": [ + { + "name": "type", + "type": "219" + }, + { + "name": "device", + "type": "str" + }, + { + "name": "len", + "type": "int" + }, + { + "name": "offset", + "type": "int" + }, + { + "name": "speed", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "56", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "operation", + "type": "263" + }, + { + "name": "action", + "type": "264" + } + ], + "meta-type": "object" + }, + { + "name": "57", + "members": [ + { + "name": "type", + "type": "219" + }, + { + "name": "device", + "type": "str" + }, + { + "name": "len", + "type": "int" + }, + { + "name": "offset", + "type": "int" + }, + { + "name": "speed", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "58", + "members": [ + { + "name": "type", + "type": "219" + }, + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "59", + "members": [ + { + "name": "node-name", + "type": "str" + }, + { + "name": "amount-exceeded", + "type": "int" + }, + { + "name": "write-threshold", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "60", + "members": [ + { + "name": "node-name", + "type": "str" + }, + { + "name": "write-threshold", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "61", + "members": [ + { + "name": "parent", + "type": "str" + }, + { + "name": "child", + "default": null, + "type": "str" + }, + { + "name": "node", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "62", + "members": [ + { + "name": "node-name", + "type": "str" + }, + { + "name": "iothread", + "type": "265" + }, + { + "name": "force", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "[63]", + "element-type": "63", + "meta-type": "array" + }, + { + "name": "63", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "connected", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "64", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "name", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "65", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "id", + "default": null, + "type": "str" + }, + { + "name": "name", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "66", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "name", + "type": "str" + }, + { + "name": "vm-state-size", + "type": "int" + }, + { + "name": "date-sec", + "type": "int" + }, + { + "name": "date-nsec", + "type": "int" + }, + { + "name": "vm-clock-sec", + "type": "int" + }, + { + "name": "vm-clock-nsec", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "67", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "id", + "default": null, + "type": "str" + }, + { + "name": "force", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "68", + "members": [ + { + "name": "addr", + "type": "266" + }, + { + "name": "tls-creds", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "69", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "name", + "default": null, + "type": "str" + }, + { + "name": "writable", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "70", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "mode", + "default": null, + "type": "267" + } + ], + "meta-type": "object" + }, + { + "name": "71", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "bitmap", + "type": "str" + }, + { + "name": "bitmap-export-name", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "72", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "id", + "type": "str" + }, + { + "name": "tray-open", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "73", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "connected", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "74", + "members": [ + { + "name": "reference", + "type": "str" + }, + { + "name": "sector-num", + "type": "int" + }, + { + "name": "sectors-count", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "75", + "members": [ + { + "name": "type", + "type": "268" + }, + { + "name": "error", + "default": null, + "type": "str" + }, + { + "name": "node-name", + "type": "str" + }, + { + "name": "sector-num", + "type": "int" + }, + { + "name": "sectors-count", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "[76]", + "element-type": "76", + "meta-type": "array" + }, + { + "name": "76", + "members": [ + { + "name": "label", + "type": "str" + }, + { + "name": "filename", + "type": "str" + }, + { + "name": "frontend-open", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "[77]", + "element-type": "77", + "meta-type": "array" + }, + { + "name": "77", + "members": [ + { + "name": "name", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "78", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "data", + "type": "str" + }, + { + "name": "format", + "default": null, + "type": "269" + } + ], + "meta-type": "object" + }, + { + "name": "79", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "format", + "default": null, + "type": "269" + } + ], + "meta-type": "object" + }, + { + "name": "str", + "json-type": "string", + "meta-type": "builtin" + }, + { + "name": "80", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "backend", + "type": "270" + } + ], + "meta-type": "object" + }, + { + "name": "81", + "members": [ + { + "name": "pty", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "82", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "backend", + "type": "270" + } + ], + "meta-type": "object" + }, + { + "name": "83", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "84", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "85", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "open", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "86", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "up", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "87", + "members": [ + { + "name": "type", + "type": "str" + }, + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "88", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "89", + "members": [ + { + "name": "name", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[90]", + "element-type": "90", + "meta-type": "array" + }, + { + "name": "90", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "promiscuous", + "type": "bool" + }, + { + "name": "multicast", + "type": "271" + }, + { + "name": "unicast", + "type": "271" + }, + { + "name": "vlan", + "type": "271" + }, + { + "name": "broadcast-allowed", + "type": "bool" + }, + { + "name": "multicast-overflow", + "type": "bool" + }, + { + "name": "unicast-overflow", + "type": "bool" + }, + { + "name": "main-mac", + "type": "str" + }, + { + "name": "vlan-table", + "type": "[int]" + }, + { + "name": "unicast-table", + "type": "[str]" + }, + { + "name": "multicast-table", + "type": "[str]" + } + ], + "meta-type": "object" + }, + { + "name": "91", + "members": [ + { + "name": "name", + "default": null, + "type": "str" + }, + { + "name": "path", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "92", + "members": [ + { + "name": "name", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "93", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "id", + "type": "int" + }, + { + "name": "ports", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "94", + "members": [ + { + "name": "name", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[95]", + "element-type": "95", + "meta-type": "array" + }, + { + "name": "95", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "enabled", + "type": "bool" + }, + { + "name": "link-up", + "type": "bool" + }, + { + "name": "speed", + "type": "int" + }, + { + "name": "duplex", + "type": "272" + }, + { + "name": "autoneg", + "type": "273" + } + ], + "meta-type": "object" + }, + { + "name": "96", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "tbl-id", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "[97]", + "element-type": "97", + "meta-type": "array" + }, + { + "name": "97", + "members": [ + { + "name": "cookie", + "type": "int" + }, + { + "name": "hits", + "type": "int" + }, + { + "name": "key", + "type": "274" + }, + { + "name": "mask", + "type": "275" + }, + { + "name": "action", + "type": "276" + } + ], + "meta-type": "object" + }, + { + "name": "98", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "type", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "[99]", + "element-type": "99", + "meta-type": "array" + }, + { + "name": "99", + "members": [ + { + "name": "id", + "type": "int" + }, + { + "name": "type", + "type": "int" + }, + { + "name": "vlan-id", + "default": null, + "type": "int" + }, + { + "name": "pport", + "default": null, + "type": "int" + }, + { + "name": "index", + "default": null, + "type": "int" + }, + { + "name": "out-pport", + "default": null, + "type": "int" + }, + { + "name": "group-id", + "default": null, + "type": "int" + }, + { + "name": "set-vlan-id", + "default": null, + "type": "int" + }, + { + "name": "pop-vlan", + "default": null, + "type": "int" + }, + { + "name": "group-ids", + "default": null, + "type": "[int]" + }, + { + "name": "set-eth-src", + "default": null, + "type": "str" + }, + { + "name": "set-eth-dst", + "default": null, + "type": "str" + }, + { + "name": "ttl-check", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "[100]", + "element-type": "100", + "meta-type": "array" + }, + { + "name": "100", + "meta-type": "enum", + "values": [ + "tpm-tis", + "tpm-crb" + ] + }, + { + "name": "[101]", + "element-type": "101", + "meta-type": "array" + }, + { + "name": "101", + "meta-type": "enum", + "values": [ + "passthrough", + "emulator" + ] + }, + { + "name": "[102]", + "element-type": "102", + "meta-type": "array" + }, + { + "name": "102", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "model", + "type": "100" + }, + { + "name": "options", + "type": "277" + } + ], + "meta-type": "object" + }, + { + "name": "103", + "members": [ + { + "name": "protocol", + "type": "str" + }, + { + "name": "password", + "type": "str" + }, + { + "name": "connected", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "104", + "members": [ + { + "name": "protocol", + "type": "str" + }, + { + "name": "time", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "105", + "members": [ + { + "name": "filename", + "type": "str" + }, + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "head", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "106", + "members": [ + { + "name": "enabled", + "type": "bool" + }, + { + "name": "migrated", + "type": "bool" + }, + { + "name": "host", + "default": null, + "type": "str" + }, + { + "name": "port", + "default": null, + "type": "int" + }, + { + "name": "tls-port", + "default": null, + "type": "int" + }, + { + "name": "auth", + "default": null, + "type": "str" + }, + { + "name": "compiled-version", + "default": null, + "type": "str" + }, + { + "name": "mouse-mode", + "type": "278" + }, + { + "name": "channels", + "default": null, + "type": "[279]" + } + ], + "meta-type": "object" + }, + { + "name": "107", + "members": [ + { + "name": "server", + "type": "280" + }, + { + "name": "client", + "type": "280" + } + ], + "meta-type": "object" + }, + { + "name": "108", + "members": [ + { + "name": "server", + "type": "281" + }, + { + "name": "client", + "type": "279" + } + ], + "meta-type": "object" + }, + { + "name": "109", + "members": [ + { + "name": "server", + "type": "280" + }, + { + "name": "client", + "type": "280" + } + ], + "meta-type": "object" + }, + { + "name": "110", + "members": [ + { + "name": "enabled", + "type": "bool" + }, + { + "name": "host", + "default": null, + "type": "str" + }, + { + "name": "family", + "default": null, + "type": "282" + }, + { + "name": "service", + "default": null, + "type": "str" + }, + { + "name": "auth", + "default": null, + "type": "str" + }, + { + "name": "clients", + "default": null, + "type": "[283]" + } + ], + "meta-type": "object" + }, + { + "name": "[111]", + "element-type": "111", + "meta-type": "array" + }, + { + "name": "111", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "server", + "type": "[284]" + }, + { + "name": "clients", + "type": "[283]" + }, + { + "name": "auth", + "type": "285" + }, + { + "name": "vencrypt", + "default": null, + "type": "286" + }, + { + "name": "display", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "112", + "members": [ + { + "name": "password", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "113", + "members": [ + { + "name": "server", + "type": "287" + }, + { + "name": "client", + "type": "288" + } + ], + "meta-type": "object" + }, + { + "name": "114", + "members": [ + { + "name": "server", + "type": "287" + }, + { + "name": "client", + "type": "283" + } + ], + "meta-type": "object" + }, + { + "name": "115", + "members": [ + { + "name": "server", + "type": "287" + }, + { + "name": "client", + "type": "283" + } + ], + "meta-type": "object" + }, + { + "name": "[116]", + "element-type": "116", + "meta-type": "array" + }, + { + "name": "116", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "index", + "type": "int" + }, + { + "name": "current", + "type": "bool" + }, + { + "name": "absolute", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "117", + "members": [ + { + "name": "keys", + "type": "[289]" + }, + { + "name": "hold-time", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "118", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "head", + "default": null, + "type": "int" + }, + { + "name": "events", + "type": "[290]" + } + ], + "meta-type": "object" + }, + { + "name": "119", + "members": [ + { + "name": "status", + "default": null, + "type": "291" + }, + { + "name": "ram", + "default": null, + "type": "292" + }, + { + "name": "disk", + "default": null, + "type": "292" + }, + { + "name": "xbzrle-cache", + "default": null, + "type": "293" + }, + { + "name": "total-time", + "default": null, + "type": "int" + }, + { + "name": "expected-downtime", + "default": null, + "type": "int" + }, + { + "name": "downtime", + "default": null, + "type": "int" + }, + { + "name": "setup-time", + "default": null, + "type": "int" + }, + { + "name": "cpu-throttle-percentage", + "default": null, + "type": "int" + }, + { + "name": "error-desc", + "default": null, + "type": "str" + }, + { + "name": "postcopy-blocktime", + "default": null, + "type": "int" + }, + { + "name": "postcopy-vcpu-blocktime", + "default": null, + "type": "[int]" + } + ], + "meta-type": "object" + }, + { + "name": "120", + "members": [ + { + "name": "capabilities", + "type": "[121]" + } + ], + "meta-type": "object" + }, + { + "name": "[121]", + "element-type": "121", + "meta-type": "array" + }, + { + "name": "121", + "members": [ + { + "name": "capability", + "type": "294" + }, + { + "name": "state", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "122", + "members": [ + { + "name": "compress-level", + "default": null, + "type": "int" + }, + { + "name": "compress-threads", + "default": null, + "type": "int" + }, + { + "name": "decompress-threads", + "default": null, + "type": "int" + }, + { + "name": "cpu-throttle-initial", + "default": null, + "type": "int" + }, + { + "name": "cpu-throttle-increment", + "default": null, + "type": "int" + }, + { + "name": "tls-creds", + "default": null, + "type": "265" + }, + { + "name": "tls-hostname", + "default": null, + "type": "265" + }, + { + "name": "max-bandwidth", + "default": null, + "type": "int" + }, + { + "name": "downtime-limit", + "default": null, + "type": "int" + }, + { + "name": "x-checkpoint-delay", + "default": null, + "type": "int" + }, + { + "name": "block-incremental", + "default": null, + "type": "bool" + }, + { + "name": "x-multifd-channels", + "default": null, + "type": "int" + }, + { + "name": "x-multifd-page-count", + "default": null, + "type": "int" + }, + { + "name": "xbzrle-cache-size", + "default": null, + "type": "int" + }, + { + "name": "max-postcopy-bandwidth", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "123", + "members": [ + { + "name": "compress-level", + "default": null, + "type": "int" + }, + { + "name": "compress-threads", + "default": null, + "type": "int" + }, + { + "name": "decompress-threads", + "default": null, + "type": "int" + }, + { + "name": "cpu-throttle-initial", + "default": null, + "type": "int" + }, + { + "name": "cpu-throttle-increment", + "default": null, + "type": "int" + }, + { + "name": "tls-creds", + "default": null, + "type": "str" + }, + { + "name": "tls-hostname", + "default": null, + "type": "str" + }, + { + "name": "max-bandwidth", + "default": null, + "type": "int" + }, + { + "name": "downtime-limit", + "default": null, + "type": "int" + }, + { + "name": "x-checkpoint-delay", + "default": null, + "type": "int" + }, + { + "name": "block-incremental", + "default": null, + "type": "bool" + }, + { + "name": "x-multifd-channels", + "default": null, + "type": "int" + }, + { + "name": "x-multifd-page-count", + "default": null, + "type": "int" + }, + { + "name": "xbzrle-cache-size", + "default": null, + "type": "int" + }, + { + "name": "max-postcopy-bandwidth", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "124", + "members": [ + { + "name": "protocol", + "type": "str" + }, + { + "name": "hostname", + "type": "str" + }, + { + "name": "port", + "default": null, + "type": "int" + }, + { + "name": "tls-port", + "default": null, + "type": "int" + }, + { + "name": "cert-subject", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "125", + "members": [ + { + "name": "status", + "type": "291" + } + ], + "meta-type": "object" + }, + { + "name": "126", + "members": [ + { + "name": "pass", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "127", + "members": [ + { + "name": "state", + "type": "291" + } + ], + "meta-type": "object" + }, + { + "name": "128", + "members": [ + { + "name": "value", + "type": "number" + } + ], + "meta-type": "object" + }, + { + "name": "129", + "members": [ + { + "name": "value", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "130", + "members": [ + { + "name": "value", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "int", + "json-type": "int", + "meta-type": "builtin" + }, + { + "name": "131", + "members": [ + { + "name": "uri", + "type": "str" + }, + { + "name": "blk", + "default": null, + "type": "bool" + }, + { + "name": "inc", + "default": null, + "type": "bool" + }, + { + "name": "detach", + "default": null, + "type": "bool" + }, + { + "name": "resume", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "132", + "members": [ + { + "name": "uri", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "133", + "members": [ + { + "name": "filename", + "type": "str" + }, + { + "name": "live", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "134", + "members": [ + { + "name": "enable", + "type": "bool" + }, + { + "name": "primary", + "type": "bool" + }, + { + "name": "failover", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "135", + "members": [ + { + "name": "error", + "type": "bool" + }, + { + "name": "desc", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "136", + "members": [ + { + "name": "uri", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "137", + "members": [ + { + "name": "actions", + "type": "[295]" + }, + { + "name": "properties", + "default": null, + "type": "296" + } + ], + "meta-type": "object" + }, + { + "name": "138", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "vcpu", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "[139]", + "element-type": "139", + "meta-type": "array" + }, + { + "name": "139", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "state", + "type": "297" + }, + { + "name": "vcpu", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "140", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "ignore-unavailable", + "default": null, + "type": "bool" + }, + { + "name": "vcpu", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "[141]", + "element-type": "141", + "meta-type": "array" + }, + { + "name": "141", + "tag": "meta-type", + "variants": [ + { + "case": "builtin", + "type": "299" + }, + { + "case": "enum", + "type": "300" + }, + { + "case": "array", + "type": "301" + }, + { + "case": "object", + "type": "302" + }, + { + "case": "alternate", + "type": "303" + }, + { + "case": "command", + "type": "304" + }, + { + "case": "event", + "type": "305" + } + ], + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "meta-type", + "type": "298" + } + ], + "meta-type": "object" + }, + { + "name": "142", + "members": [ + { + "name": "enable", + "default": null, + "type": "[306]" + } + ], + "meta-type": "object" + }, + { + "name": "143", + "members": [ + { + "name": "qemu", + "type": "307" + }, + { + "name": "package", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[144]", + "element-type": "144", + "meta-type": "array" + }, + { + "name": "144", + "members": [ + { + "name": "name", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "145", + "members": [ + { + "name": "protocol", + "type": "str" + }, + { + "name": "fdname", + "type": "str" + }, + { + "name": "skipauth", + "default": null, + "type": "bool" + }, + { + "name": "tls", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "146", + "members": [ + { + "name": "name", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "147", + "members": [ + { + "name": "enabled", + "type": "bool" + }, + { + "name": "present", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "148", + "members": [ + { + "name": "UUID", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[149]", + "element-type": "149", + "meta-type": "array" + }, + { + "name": "149", + "members": [ + { + "name": "name", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[150]", + "element-type": "150", + "meta-type": "array" + }, + { + "name": "150", + "tag": "arch", + "variants": [ + { + "case": "x86", + "type": "310" + }, + { + "case": "sparc", + "type": "311" + }, + { + "case": "ppc", + "type": "312" + }, + { + "case": "mips", + "type": "313" + }, + { + "case": "tricore", + "type": "314" + }, + { + "case": "s390", + "type": "315" + }, + { + "case": "riscv", + "type": "316" + }, + { + "case": "other", + "type": "0" + } + ], + "members": [ + { + "name": "CPU", + "type": "int" + }, + { + "name": "current", + "type": "bool" + }, + { + "name": "halted", + "type": "bool" + }, + { + "name": "qom_path", + "type": "str" + }, + { + "name": "thread_id", + "type": "int" + }, + { + "name": "props", + "default": null, + "type": "308" + }, + { + "name": "arch", + "type": "309" + } + ], + "meta-type": "object" + }, + { + "name": "[151]", + "element-type": "151", + "meta-type": "array" + }, + { + "name": "151", + "tag": "target", + "variants": [ + { + "case": "s390x", + "type": "315" + }, + { + "case": "aarch64", + "type": "0" + }, + { + "case": "alpha", + "type": "0" + }, + { + "case": "arm", + "type": "0" + }, + { + "case": "cris", + "type": "0" + }, + { + "case": "hppa", + "type": "0" + }, + { + "case": "i386", + "type": "0" + }, + { + "case": "lm32", + "type": "0" + }, + { + "case": "m68k", + "type": "0" + }, + { + "case": "microblaze", + "type": "0" + }, + { + "case": "microblazeel", + "type": "0" + }, + { + "case": "mips", + "type": "0" + }, + { + "case": "mips64", + "type": "0" + }, + { + "case": "mips64el", + "type": "0" + }, + { + "case": "mipsel", + "type": "0" + }, + { + "case": "moxie", + "type": "0" + }, + { + "case": "nios2", + "type": "0" + }, + { + "case": "or1k", + "type": "0" + }, + { + "case": "ppc", + "type": "0" + }, + { + "case": "ppc64", + "type": "0" + }, + { + "case": "ppcemb", + "type": "0" + }, + { + "case": "riscv32", + "type": "0" + }, + { + "case": "riscv64", + "type": "0" + }, + { + "case": "sh4", + "type": "0" + }, + { + "case": "sh4eb", + "type": "0" + }, + { + "case": "sparc", + "type": "0" + }, + { + "case": "sparc64", + "type": "0" + }, + { + "case": "tricore", + "type": "0" + }, + { + "case": "unicore32", + "type": "0" + }, + { + "case": "x86_64", + "type": "0" + }, + { + "case": "xtensa", + "type": "0" + }, + { + "case": "xtensaeb", + "type": "0" + } + ], + "members": [ + { + "name": "cpu-index", + "type": "int" + }, + { + "name": "qom-path", + "type": "str" + }, + { + "name": "thread-id", + "type": "int" + }, + { + "name": "props", + "default": null, + "type": "308" + }, + { + "name": "arch", + "type": "309" + }, + { + "name": "target", + "type": "317" + } + ], + "meta-type": "object" + }, + { + "name": "[152]", + "element-type": "152", + "meta-type": "array" + }, + { + "name": "152", + "members": [ + { + "name": "id", + "type": "str" + }, + { + "name": "thread-id", + "type": "int" + }, + { + "name": "poll-max-ns", + "type": "int" + }, + { + "name": "poll-grow", + "type": "int" + }, + { + "name": "poll-shrink", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "153", + "members": [ + { + "name": "actual", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "154", + "members": [ + { + "name": "actual", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "[155]", + "element-type": "155", + "meta-type": "array" + }, + { + "name": "155", + "members": [ + { + "name": "bus", + "type": "int" + }, + { + "name": "devices", + "type": "[318]" + } + ], + "meta-type": "object" + }, + { + "name": "156", + "members": [ + { + "name": "id", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "157", + "members": [ + { + "name": "val", + "type": "int" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "filename", + "type": "str" + }, + { + "name": "cpu-index", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "158", + "members": [ + { + "name": "val", + "type": "int" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "filename", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "159", + "members": [ + { + "name": "value", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "160", + "members": [ + { + "name": "command-line", + "type": "str" + }, + { + "name": "cpu-index", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "161", + "members": [ + { + "name": "path", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[162]", + "element-type": "162", + "meta-type": "array" + }, + { + "name": "162", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "type", + "type": "str" + }, + { + "name": "description", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "163", + "members": [ + { + "name": "path", + "type": "str" + }, + { + "name": "property", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "any", + "json-type": "value", + "meta-type": "builtin" + }, + { + "name": "164", + "members": [ + { + "name": "path", + "type": "str" + }, + { + "name": "property", + "type": "str" + }, + { + "name": "value", + "type": "any" + } + ], + "meta-type": "object" + }, + { + "name": "165", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "target", + "type": "str" + }, + { + "name": "arg", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "166", + "members": [ + { + "name": "implements", + "default": null, + "type": "str" + }, + { + "name": "abstract", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "[167]", + "element-type": "167", + "meta-type": "array" + }, + { + "name": "167", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "abstract", + "default": null, + "type": "bool" + }, + { + "name": "parent", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "168", + "members": [ + { + "name": "typename", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "169", + "members": [ + { + "name": "typename", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "170", + "members": [ + { + "name": "enable", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "171", + "members": [ + { + "name": "driver", + "type": "str" + }, + { + "name": "bus", + "default": null, + "type": "str" + }, + { + "name": "id", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "172", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "173", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "path", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "174", + "members": [ + { + "name": "paging", + "type": "bool" + }, + { + "name": "protocol", + "type": "str" + }, + { + "name": "detach", + "default": null, + "type": "bool" + }, + { + "name": "begin", + "default": null, + "type": "int" + }, + { + "name": "length", + "default": null, + "type": "int" + }, + { + "name": "format", + "default": null, + "type": "319" + } + ], + "meta-type": "object" + }, + { + "name": "175", + "members": [ + { + "name": "status", + "type": "320" + }, + { + "name": "completed", + "type": "int" + }, + { + "name": "total", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "176", + "members": [ + { + "name": "result", + "type": "175" + }, + { + "name": "error", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "177", + "members": [ + { + "name": "formats", + "type": "[319]" + } + ], + "meta-type": "object" + }, + { + "name": "178", + "members": [ + { + "name": "filename", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "179", + "members": [ + { + "name": "qom-type", + "type": "str" + }, + { + "name": "id", + "type": "str" + }, + { + "name": "props", + "default": null, + "type": "any" + } + ], + "meta-type": "object" + }, + { + "name": "180", + "members": [ + { + "name": "id", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "181", + "members": [ + { + "name": "fdname", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "182", + "members": [ + { + "name": "fdname", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[183]", + "element-type": "183", + "meta-type": "array" + }, + { + "name": "183", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "alias", + "default": null, + "type": "str" + }, + { + "name": "is-default", + "default": null, + "type": "bool" + }, + { + "name": "cpu-max", + "type": "int" + }, + { + "name": "hotpluggable-cpus", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "184", + "members": [ + { + "name": "base-memory", + "type": "int" + }, + { + "name": "plugged-memory", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "[185]", + "element-type": "185", + "meta-type": "array" + }, + { + "name": "185", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "migration-safe", + "default": null, + "type": "bool" + }, + { + "name": "static", + "type": "bool" + }, + { + "name": "unavailable-features", + "default": null, + "type": "[str]" + }, + { + "name": "typename", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "186", + "members": [ + { + "name": "type", + "type": "321" + }, + { + "name": "model", + "type": "322" + } + ], + "meta-type": "object" + }, + { + "name": "187", + "members": [ + { + "name": "model", + "type": "322" + } + ], + "meta-type": "object" + }, + { + "name": "188", + "members": [ + { + "name": "modela", + "type": "322" + }, + { + "name": "modelb", + "type": "322" + } + ], + "meta-type": "object" + }, + { + "name": "189", + "members": [ + { + "name": "result", + "type": "323" + }, + { + "name": "responsible-properties", + "type": "[str]" + } + ], + "meta-type": "object" + }, + { + "name": "190", + "members": [ + { + "name": "modela", + "type": "322" + }, + { + "name": "modelb", + "type": "322" + } + ], + "meta-type": "object" + }, + { + "name": "191", + "members": [ + { + "name": "model", + "type": "322" + } + ], + "meta-type": "object" + }, + { + "name": "192", + "members": [ + { + "name": "fdset-id", + "default": null, + "type": "int" + }, + { + "name": "opaque", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "193", + "members": [ + { + "name": "fdset-id", + "type": "int" + }, + { + "name": "fd", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "194", + "members": [ + { + "name": "fdset-id", + "type": "int" + }, + { + "name": "fd", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "[195]", + "element-type": "195", + "meta-type": "array" + }, + { + "name": "195", + "members": [ + { + "name": "fdset-id", + "type": "int" + }, + { + "name": "fds", + "type": "[324]" + } + ], + "meta-type": "object" + }, + { + "name": "196", + "members": [ + { + "name": "arch", + "type": "317" + } + ], + "meta-type": "object" + }, + { + "name": "197", + "members": [ + { + "name": "option", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[198]", + "element-type": "198", + "meta-type": "array" + }, + { + "name": "198", + "members": [ + { + "name": "option", + "type": "str" + }, + { + "name": "parameters", + "type": "[325]" + } + ], + "meta-type": "object" + }, + { + "name": "[199]", + "element-type": "199", + "meta-type": "array" + }, + { + "name": "199", + "members": [ + { + "name": "id", + "default": null, + "type": "str" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "merge", + "type": "bool" + }, + { + "name": "dump", + "type": "bool" + }, + { + "name": "prealloc", + "type": "bool" + }, + { + "name": "host-nodes", + "type": "[int]" + }, + { + "name": "policy", + "type": "326" + } + ], + "meta-type": "object" + }, + { + "name": "[200]", + "element-type": "200", + "meta-type": "array" + }, + { + "name": "200", + "tag": "type", + "variants": [ + { + "case": "dimm", + "type": "328" + }, + { + "case": "nvdimm", + "type": "328" + } + ], + "members": [ + { + "name": "type", + "type": "327" + } + ], + "meta-type": "object" + }, + { + "name": "201", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "msg", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[202]", + "element-type": "202", + "meta-type": "array" + }, + { + "name": "202", + "members": [ + { + "name": "device", + "default": null, + "type": "str" + }, + { + "name": "slot", + "type": "str" + }, + { + "name": "slot-type", + "type": "329" + }, + { + "name": "source", + "type": "int" + }, + { + "name": "status", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "203", + "members": [ + { + "name": "info", + "type": "202" + } + ], + "meta-type": "object" + }, + { + "name": "204", + "members": [ + { + "name": "offset", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "205", + "members": [ + { + "name": "filename", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[206]", + "element-type": "206", + "meta-type": "array" + }, + { + "name": "206", + "members": [ + { + "name": "version", + "type": "int" + }, + { + "name": "emulated", + "type": "bool" + }, + { + "name": "kernel", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "[207]", + "element-type": "207", + "meta-type": "array" + }, + { + "name": "207", + "members": [ + { + "name": "type", + "type": "str" + }, + { + "name": "vcpus-count", + "type": "int" + }, + { + "name": "props", + "type": "308" + }, + { + "name": "qom-path", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "208", + "members": [ + { + "name": "guid", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "209", + "members": [ + { + "name": "enabled", + "type": "bool" + }, + { + "name": "api-major", + "type": "int" + }, + { + "name": "api-minor", + "type": "int" + }, + { + "name": "build-id", + "type": "int" + }, + { + "name": "policy", + "type": "int" + }, + { + "name": "state", + "type": "330" + }, + { + "name": "handle", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "210", + "members": [ + { + "name": "data", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "211", + "members": [ + { + "name": "pdh", + "type": "str" + }, + { + "name": "cert-chain", + "type": "str" + }, + { + "name": "cbitpos", + "type": "int" + }, + { + "name": "reduced-phys-bits", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "212", + "members": [ + { + "name": "id", + "type": "any" + }, + { + "name": "reason", + "type": "331" + } + ], + "meta-type": "object" + }, + { + "name": "213", + "tag": "type", + "variants": [ + { + "case": "node", + "type": "333" + }, + { + "case": "dist", + "type": "334" + }, + { + "case": "cpu", + "type": "335" + } + ], + "members": [ + { + "name": "type", + "type": "332" + } + ], + "meta-type": "object" + }, + { + "name": "bool", + "json-type": "boolean", + "meta-type": "builtin" + }, + { + "name": "214", + "meta-type": "enum", + "values": [ + "debug", + "inmigrate", + "internal-error", + "io-error", + "paused", + "postmigrate", + "prelaunch", + "finish-migrate", + "restore-vm", + "running", + "save-vm", + "shutdown", + "suspended", + "watchdog", + "guest-panicked", + "colo", + "preconfig" + ] + }, + { + "name": "215", + "meta-type": "enum", + "values": [ + "reset", + "shutdown", + "poweroff", + "pause", + "debug", + "none", + "inject-nmi" + ] + }, + { + "name": "216", + "meta-type": "enum", + "values": [ + "pause", + "poweroff" + ] + }, + { + "name": "217", + "tag": "type", + "variants": [ + { + "case": "hyper-v", + "type": "337" + }, + { + "case": "s390", + "type": "338" + } + ], + "members": [ + { + "name": "type", + "type": "336" + } + ], + "meta-type": "object" + }, + { + "name": "218", + "meta-type": "enum", + "values": [ + "undefined", + "created", + "running", + "paused", + "ready", + "standby", + "waiting", + "pending", + "aborting", + "concluded", + "null" + ] + }, + { + "name": "219", + "meta-type": "enum", + "values": [ + "commit", + "stream", + "mirror", + "backup", + "create" + ] + }, + { + "name": "[int]", + "element-type": "int", + "meta-type": "array" + }, + { + "name": "220", + "meta-type": "enum", + "values": [ + "ok", + "failed", + "nospace" + ] + }, + { + "name": "[221]", + "element-type": "221", + "meta-type": "array" + }, + { + "name": "221", + "members": [ + { + "name": "name", + "default": null, + "type": "str" + }, + { + "name": "count", + "type": "int" + }, + { + "name": "granularity", + "type": "int" + }, + { + "name": "status", + "type": "339" + } + ], + "meta-type": "object" + }, + { + "name": "222", + "members": [ + { + "name": "rd_bytes", + "type": "int" + }, + { + "name": "wr_bytes", + "type": "int" + }, + { + "name": "rd_operations", + "type": "int" + }, + { + "name": "wr_operations", + "type": "int" + }, + { + "name": "flush_operations", + "type": "int" + }, + { + "name": "flush_total_time_ns", + "type": "int" + }, + { + "name": "wr_total_time_ns", + "type": "int" + }, + { + "name": "rd_total_time_ns", + "type": "int" + }, + { + "name": "wr_highest_offset", + "type": "int" + }, + { + "name": "rd_merged", + "type": "int" + }, + { + "name": "wr_merged", + "type": "int" + }, + { + "name": "idle_time_ns", + "default": null, + "type": "int" + }, + { + "name": "failed_rd_operations", + "type": "int" + }, + { + "name": "failed_wr_operations", + "type": "int" + }, + { + "name": "failed_flush_operations", + "type": "int" + }, + { + "name": "invalid_rd_operations", + "type": "int" + }, + { + "name": "invalid_wr_operations", + "type": "int" + }, + { + "name": "invalid_flush_operations", + "type": "int" + }, + { + "name": "account_invalid", + "type": "bool" + }, + { + "name": "account_failed", + "type": "bool" + }, + { + "name": "timed_stats", + "type": "[340]" + }, + { + "name": "x_rd_latency_histogram", + "default": null, + "type": "341" + }, + { + "name": "x_wr_latency_histogram", + "default": null, + "type": "341" + }, + { + "name": "x_flush_latency_histogram", + "default": null, + "type": "341" + } + ], + "meta-type": "object" + }, + { + "name": "223", + "meta-type": "enum", + "values": [ + "existing", + "absolute-paths" + ] + }, + { + "name": "224", + "meta-type": "enum", + "values": [ + "top", + "full", + "none", + "incremental" + ] + }, + { + "name": "225", + "meta-type": "enum", + "values": [ + "report", + "ignore", + "enospc", + "stop", + "auto" + ] + }, + { + "name": "226", + "meta-type": "enum", + "values": [ + "off", + "on", + "unmap" + ] + }, + { + "name": "227", + "members": [ + { + "name": "filename", + "type": "str" + }, + { + "name": "format", + "type": "str" + }, + { + "name": "dirty-flag", + "default": null, + "type": "bool" + }, + { + "name": "actual-size", + "default": null, + "type": "int" + }, + { + "name": "virtual-size", + "type": "int" + }, + { + "name": "cluster-size", + "default": null, + "type": "int" + }, + { + "name": "encrypted", + "default": null, + "type": "bool" + }, + { + "name": "compressed", + "default": null, + "type": "bool" + }, + { + "name": "backing-filename", + "default": null, + "type": "str" + }, + { + "name": "full-backing-filename", + "default": null, + "type": "str" + }, + { + "name": "backing-filename-format", + "default": null, + "type": "str" + }, + { + "name": "snapshots", + "default": null, + "type": "[66]" + }, + { + "name": "backing-image", + "default": null, + "type": "227" + }, + { + "name": "format-specific", + "default": null, + "type": "342" + } + ], + "meta-type": "object" + }, + { + "name": "228", + "members": [ + { + "name": "writeback", + "type": "bool" + }, + { + "name": "direct", + "type": "bool" + }, + { + "name": "no-flush", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "229", + "meta-type": "enum", + "values": [ + "background", + "write-blocking" + ] + }, + { + "name": "230", + "meta-type": "enum", + "values": [ + "blkdebug", + "blklogwrites", + "blkverify", + "bochs", + "cloop", + "copy-on-read", + "dmg", + "file", + "ftp", + "ftps", + "gluster", + "host_cdrom", + "host_device", + "http", + "https", + "iscsi", + "luks", + "nbd", + "nfs", + "null-aio", + "null-co", + "nvme", + "parallels", + "qcow", + "qcow2", + "qed", + "quorum", + "raw", + "rbd", + "replication", + "sheepdog", + "ssh", + "throttle", + "vdi", + "vhdx", + "vmdk", + "vpc", + "vvfat", + "vxhs" + ] + }, + { + "name": "231", + "meta-type": "enum", + "values": [ + "ignore", + "unmap" + ] + }, + { + "name": "232", + "members": [ + { + "name": "direct", + "default": null, + "type": "bool" + }, + { + "name": "no-flush", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "233", + "members": [ + { + "name": "image", + "type": "343" + }, + { + "name": "config", + "default": null, + "type": "str" + }, + { + "name": "align", + "default": null, + "type": "int" + }, + { + "name": "max-transfer", + "default": null, + "type": "int" + }, + { + "name": "opt-write-zero", + "default": null, + "type": "int" + }, + { + "name": "max-write-zero", + "default": null, + "type": "int" + }, + { + "name": "opt-discard", + "default": null, + "type": "int" + }, + { + "name": "max-discard", + "default": null, + "type": "int" + }, + { + "name": "inject-error", + "default": null, + "type": "[344]" + }, + { + "name": "set-state", + "default": null, + "type": "[345]" + } + ], + "meta-type": "object" + }, + { + "name": "234", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "log", + "type": "343" + }, + { + "name": "log-sector-size", + "default": null, + "type": "int" + }, + { + "name": "log-append", + "default": null, + "type": "bool" + }, + { + "name": "log-super-update-interval", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "235", + "members": [ + { + "name": "test", + "type": "343" + }, + { + "name": "raw", + "type": "343" + } + ], + "meta-type": "object" + }, + { + "name": "236", + "members": [ + { + "name": "file", + "type": "343" + } + ], + "meta-type": "object" + }, + { + "name": "237", + "members": [ + { + "name": "filename", + "type": "str" + }, + { + "name": "pr-manager", + "default": null, + "type": "str" + }, + { + "name": "locking", + "default": null, + "type": "346" + }, + { + "name": "aio", + "default": null, + "type": "347" + }, + { + "name": "x-check-cache-dropped", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "238", + "members": [ + { + "name": "url", + "type": "str" + }, + { + "name": "readahead", + "default": null, + "type": "int" + }, + { + "name": "timeout", + "default": null, + "type": "int" + }, + { + "name": "username", + "default": null, + "type": "str" + }, + { + "name": "password-secret", + "default": null, + "type": "str" + }, + { + "name": "proxy-username", + "default": null, + "type": "str" + }, + { + "name": "proxy-password-secret", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "239", + "members": [ + { + "name": "url", + "type": "str" + }, + { + "name": "readahead", + "default": null, + "type": "int" + }, + { + "name": "timeout", + "default": null, + "type": "int" + }, + { + "name": "username", + "default": null, + "type": "str" + }, + { + "name": "password-secret", + "default": null, + "type": "str" + }, + { + "name": "proxy-username", + "default": null, + "type": "str" + }, + { + "name": "proxy-password-secret", + "default": null, + "type": "str" + }, + { + "name": "sslverify", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "240", + "members": [ + { + "name": "volume", + "type": "str" + }, + { + "name": "path", + "type": "str" + }, + { + "name": "server", + "type": "[348]" + }, + { + "name": "debug", + "default": null, + "type": "int" + }, + { + "name": "logfile", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "241", + "members": [ + { + "name": "url", + "type": "str" + }, + { + "name": "readahead", + "default": null, + "type": "int" + }, + { + "name": "timeout", + "default": null, + "type": "int" + }, + { + "name": "username", + "default": null, + "type": "str" + }, + { + "name": "password-secret", + "default": null, + "type": "str" + }, + { + "name": "proxy-username", + "default": null, + "type": "str" + }, + { + "name": "proxy-password-secret", + "default": null, + "type": "str" + }, + { + "name": "cookie", + "default": null, + "type": "str" + }, + { + "name": "cookie-secret", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "242", + "members": [ + { + "name": "url", + "type": "str" + }, + { + "name": "readahead", + "default": null, + "type": "int" + }, + { + "name": "timeout", + "default": null, + "type": "int" + }, + { + "name": "username", + "default": null, + "type": "str" + }, + { + "name": "password-secret", + "default": null, + "type": "str" + }, + { + "name": "proxy-username", + "default": null, + "type": "str" + }, + { + "name": "proxy-password-secret", + "default": null, + "type": "str" + }, + { + "name": "cookie", + "default": null, + "type": "str" + }, + { + "name": "sslverify", + "default": null, + "type": "bool" + }, + { + "name": "cookie-secret", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "243", + "members": [ + { + "name": "transport", + "type": "349" + }, + { + "name": "portal", + "type": "str" + }, + { + "name": "target", + "type": "str" + }, + { + "name": "lun", + "default": null, + "type": "int" + }, + { + "name": "user", + "default": null, + "type": "str" + }, + { + "name": "password-secret", + "default": null, + "type": "str" + }, + { + "name": "initiator-name", + "default": null, + "type": "str" + }, + { + "name": "header-digest", + "default": null, + "type": "350" + }, + { + "name": "timeout", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "244", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "key-secret", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "245", + "members": [ + { + "name": "server", + "type": "348" + }, + { + "name": "export", + "default": null, + "type": "str" + }, + { + "name": "tls-creds", + "default": null, + "type": "str" + }, + { + "name": "x-dirty-bitmap", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "246", + "members": [ + { + "name": "server", + "type": "351" + }, + { + "name": "path", + "type": "str" + }, + { + "name": "user", + "default": null, + "type": "int" + }, + { + "name": "group", + "default": null, + "type": "int" + }, + { + "name": "tcp-syn-count", + "default": null, + "type": "int" + }, + { + "name": "readahead-size", + "default": null, + "type": "int" + }, + { + "name": "page-cache-size", + "default": null, + "type": "int" + }, + { + "name": "debug", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "247", + "members": [ + { + "name": "size", + "default": null, + "type": "int" + }, + { + "name": "latency-ns", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "248", + "members": [ + { + "name": "device", + "type": "str" + }, + { + "name": "namespace", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "249", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "backing", + "default": null, + "type": "352" + }, + { + "name": "lazy-refcounts", + "default": null, + "type": "bool" + }, + { + "name": "pass-discard-request", + "default": null, + "type": "bool" + }, + { + "name": "pass-discard-snapshot", + "default": null, + "type": "bool" + }, + { + "name": "pass-discard-other", + "default": null, + "type": "bool" + }, + { + "name": "overlap-check", + "default": null, + "type": "353" + }, + { + "name": "cache-size", + "default": null, + "type": "int" + }, + { + "name": "l2-cache-size", + "default": null, + "type": "int" + }, + { + "name": "l2-cache-entry-size", + "default": null, + "type": "int" + }, + { + "name": "refcount-cache-size", + "default": null, + "type": "int" + }, + { + "name": "cache-clean-interval", + "default": null, + "type": "int" + }, + { + "name": "encrypt", + "default": null, + "type": "354" + } + ], + "meta-type": "object" + }, + { + "name": "250", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "backing", + "default": null, + "type": "352" + }, + { + "name": "encrypt", + "default": null, + "type": "355" + } + ], + "meta-type": "object" + }, + { + "name": "251", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "backing", + "default": null, + "type": "352" + } + ], + "meta-type": "object" + }, + { + "name": "252", + "members": [ + { + "name": "blkverify", + "default": null, + "type": "bool" + }, + { + "name": "children", + "type": "[343]" + }, + { + "name": "vote-threshold", + "type": "int" + }, + { + "name": "rewrite-corrupted", + "default": null, + "type": "bool" + }, + { + "name": "read-pattern", + "default": null, + "type": "356" + } + ], + "meta-type": "object" + }, + { + "name": "253", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "offset", + "default": null, + "type": "int" + }, + { + "name": "size", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "254", + "members": [ + { + "name": "pool", + "type": "str" + }, + { + "name": "image", + "type": "str" + }, + { + "name": "conf", + "default": null, + "type": "str" + }, + { + "name": "snapshot", + "default": null, + "type": "str" + }, + { + "name": "user", + "default": null, + "type": "str" + }, + { + "name": "auth-client-required", + "default": null, + "type": "[357]" + }, + { + "name": "key-secret", + "default": null, + "type": "str" + }, + { + "name": "server", + "default": null, + "type": "[358]" + } + ], + "meta-type": "object" + }, + { + "name": "255", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "mode", + "type": "359" + }, + { + "name": "top-id", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "256", + "members": [ + { + "name": "server", + "type": "348" + }, + { + "name": "vdi", + "type": "str" + }, + { + "name": "snap-id", + "default": null, + "type": "int" + }, + { + "name": "tag", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "257", + "members": [ + { + "name": "server", + "type": "360" + }, + { + "name": "path", + "type": "str" + }, + { + "name": "user", + "default": null, + "type": "str" + }, + { + "name": "host-key-check", + "default": null, + "type": "361" + } + ], + "meta-type": "object" + }, + { + "name": "258", + "members": [ + { + "name": "throttle-group", + "type": "str" + }, + { + "name": "file", + "type": "343" + } + ], + "meta-type": "object" + }, + { + "name": "259", + "members": [ + { + "name": "dir", + "type": "str" + }, + { + "name": "fat-type", + "default": null, + "type": "int" + }, + { + "name": "floppy", + "default": null, + "type": "bool" + }, + { + "name": "label", + "default": null, + "type": "str" + }, + { + "name": "rw", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "260", + "members": [ + { + "name": "vdisk-id", + "type": "str" + }, + { + "name": "server", + "type": "358" + }, + { + "name": "tls-creds", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "261", + "tag": "driver", + "variants": [ + { + "case": "file", + "type": "362" + }, + { + "case": "gluster", + "type": "363" + }, + { + "case": "luks", + "type": "364" + }, + { + "case": "nfs", + "type": "365" + }, + { + "case": "parallels", + "type": "366" + }, + { + "case": "qcow", + "type": "367" + }, + { + "case": "qcow2", + "type": "368" + }, + { + "case": "qed", + "type": "369" + }, + { + "case": "rbd", + "type": "370" + }, + { + "case": "sheepdog", + "type": "371" + }, + { + "case": "ssh", + "type": "372" + }, + { + "case": "vdi", + "type": "373" + }, + { + "case": "vhdx", + "type": "374" + }, + { + "case": "vpc", + "type": "375" + }, + { + "case": "blkdebug", + "type": "0" + }, + { + "case": "blklogwrites", + "type": "0" + }, + { + "case": "blkverify", + "type": "0" + }, + { + "case": "bochs", + "type": "0" + }, + { + "case": "cloop", + "type": "0" + }, + { + "case": "copy-on-read", + "type": "0" + }, + { + "case": "dmg", + "type": "0" + }, + { + "case": "ftp", + "type": "0" + }, + { + "case": "ftps", + "type": "0" + }, + { + "case": "host_cdrom", + "type": "0" + }, + { + "case": "host_device", + "type": "0" + }, + { + "case": "http", + "type": "0" + }, + { + "case": "https", + "type": "0" + }, + { + "case": "iscsi", + "type": "0" + }, + { + "case": "nbd", + "type": "0" + }, + { + "case": "null-aio", + "type": "0" + }, + { + "case": "null-co", + "type": "0" + }, + { + "case": "nvme", + "type": "0" + }, + { + "case": "quorum", + "type": "0" + }, + { + "case": "raw", + "type": "0" + }, + { + "case": "replication", + "type": "0" + }, + { + "case": "throttle", + "type": "0" + }, + { + "case": "vmdk", + "type": "0" + }, + { + "case": "vvfat", + "type": "0" + }, + { + "case": "vxhs", + "type": "0" + } + ], + "members": [ + { + "name": "driver", + "type": "230" + } + ], + "meta-type": "object" + }, + { + "name": "262", + "meta-type": "enum", + "values": [ + "retain", + "read-only", + "read-write" + ] + }, + { + "name": "263", + "meta-type": "enum", + "values": [ + "read", + "write" + ] + }, + { + "name": "264", + "meta-type": "enum", + "values": [ + "ignore", + "report", + "stop" + ] + }, + { + "name": "265", + "members": [ + { + "type": "str" + }, + { + "type": "null" + } + ], + "meta-type": "alternate" + }, + { + "name": "266", + "tag": "type", + "variants": [ + { + "case": "inet", + "type": "377" + }, + { + "case": "unix", + "type": "378" + }, + { + "case": "vsock", + "type": "379" + }, + { + "case": "fd", + "type": "380" + } + ], + "members": [ + { + "name": "type", + "type": "376" + } + ], + "meta-type": "object" + }, + { + "name": "267", + "meta-type": "enum", + "values": [ + "safe", + "hard" + ] + }, + { + "name": "268", + "meta-type": "enum", + "values": [ + "read", + "write", + "flush" + ] + }, + { + "name": "269", + "meta-type": "enum", + "values": [ + "utf8", + "base64" + ] + }, + { + "name": "270", + "tag": "type", + "variants": [ + { + "case": "file", + "type": "382" + }, + { + "case": "serial", + "type": "383" + }, + { + "case": "parallel", + "type": "383" + }, + { + "case": "pipe", + "type": "383" + }, + { + "case": "socket", + "type": "384" + }, + { + "case": "udp", + "type": "385" + }, + { + "case": "pty", + "type": "386" + }, + { + "case": "null", + "type": "386" + }, + { + "case": "mux", + "type": "387" + }, + { + "case": "msmouse", + "type": "386" + }, + { + "case": "wctablet", + "type": "386" + }, + { + "case": "braille", + "type": "386" + }, + { + "case": "testdev", + "type": "386" + }, + { + "case": "stdio", + "type": "388" + }, + { + "case": "console", + "type": "386" + }, + { + "case": "spicevmc", + "type": "389" + }, + { + "case": "spiceport", + "type": "390" + }, + { + "case": "vc", + "type": "391" + }, + { + "case": "ringbuf", + "type": "392" + }, + { + "case": "memory", + "type": "392" + } + ], + "members": [ + { + "name": "type", + "type": "381" + } + ], + "meta-type": "object" + }, + { + "name": "271", + "meta-type": "enum", + "values": [ + "normal", + "none", + "all" + ] + }, + { + "name": "[str]", + "element-type": "str", + "meta-type": "array" + }, + { + "name": "272", + "meta-type": "enum", + "values": [ + "half", + "full" + ] + }, + { + "name": "273", + "meta-type": "enum", + "values": [ + "off", + "on" + ] + }, + { + "name": "274", + "members": [ + { + "name": "priority", + "type": "int" + }, + { + "name": "tbl-id", + "type": "int" + }, + { + "name": "in-pport", + "default": null, + "type": "int" + }, + { + "name": "tunnel-id", + "default": null, + "type": "int" + }, + { + "name": "vlan-id", + "default": null, + "type": "int" + }, + { + "name": "eth-type", + "default": null, + "type": "int" + }, + { + "name": "eth-src", + "default": null, + "type": "str" + }, + { + "name": "eth-dst", + "default": null, + "type": "str" + }, + { + "name": "ip-proto", + "default": null, + "type": "int" + }, + { + "name": "ip-tos", + "default": null, + "type": "int" + }, + { + "name": "ip-dst", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "275", + "members": [ + { + "name": "in-pport", + "default": null, + "type": "int" + }, + { + "name": "tunnel-id", + "default": null, + "type": "int" + }, + { + "name": "vlan-id", + "default": null, + "type": "int" + }, + { + "name": "eth-src", + "default": null, + "type": "str" + }, + { + "name": "eth-dst", + "default": null, + "type": "str" + }, + { + "name": "ip-proto", + "default": null, + "type": "int" + }, + { + "name": "ip-tos", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "276", + "members": [ + { + "name": "goto-tbl", + "default": null, + "type": "int" + }, + { + "name": "group-id", + "default": null, + "type": "int" + }, + { + "name": "tunnel-lport", + "default": null, + "type": "int" + }, + { + "name": "vlan-id", + "default": null, + "type": "int" + }, + { + "name": "new-vlan-id", + "default": null, + "type": "int" + }, + { + "name": "out-pport", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "277", + "tag": "type", + "variants": [ + { + "case": "passthrough", + "type": "394" + }, + { + "case": "emulator", + "type": "395" + } + ], + "members": [ + { + "name": "type", + "type": "393" + } + ], + "meta-type": "object" + }, + { + "name": "278", + "meta-type": "enum", + "values": [ + "client", + "server", + "unknown" + ] + }, + { + "name": "[279]", + "element-type": "279", + "meta-type": "array" + }, + { + "name": "279", + "members": [ + { + "name": "host", + "type": "str" + }, + { + "name": "port", + "type": "str" + }, + { + "name": "family", + "type": "282" + }, + { + "name": "connection-id", + "type": "int" + }, + { + "name": "channel-type", + "type": "int" + }, + { + "name": "channel-id", + "type": "int" + }, + { + "name": "tls", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "280", + "members": [ + { + "name": "host", + "type": "str" + }, + { + "name": "port", + "type": "str" + }, + { + "name": "family", + "type": "282" + } + ], + "meta-type": "object" + }, + { + "name": "281", + "members": [ + { + "name": "host", + "type": "str" + }, + { + "name": "port", + "type": "str" + }, + { + "name": "family", + "type": "282" + }, + { + "name": "auth", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "282", + "meta-type": "enum", + "values": [ + "ipv4", + "ipv6", + "unix", + "vsock", + "unknown" + ] + }, + { + "name": "[283]", + "element-type": "283", + "meta-type": "array" + }, + { + "name": "283", + "members": [ + { + "name": "host", + "type": "str" + }, + { + "name": "service", + "type": "str" + }, + { + "name": "family", + "type": "282" + }, + { + "name": "websocket", + "type": "bool" + }, + { + "name": "x509_dname", + "default": null, + "type": "str" + }, + { + "name": "sasl_username", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[284]", + "element-type": "284", + "meta-type": "array" + }, + { + "name": "284", + "members": [ + { + "name": "host", + "type": "str" + }, + { + "name": "service", + "type": "str" + }, + { + "name": "family", + "type": "282" + }, + { + "name": "websocket", + "type": "bool" + }, + { + "name": "auth", + "type": "285" + }, + { + "name": "vencrypt", + "default": null, + "type": "286" + } + ], + "meta-type": "object" + }, + { + "name": "285", + "meta-type": "enum", + "values": [ + "none", + "vnc", + "ra2", + "ra2ne", + "tight", + "ultra", + "tls", + "vencrypt", + "sasl" + ] + }, + { + "name": "286", + "meta-type": "enum", + "values": [ + "plain", + "tls-none", + "x509-none", + "tls-vnc", + "x509-vnc", + "tls-plain", + "x509-plain", + "tls-sasl", + "x509-sasl" + ] + }, + { + "name": "287", + "members": [ + { + "name": "host", + "type": "str" + }, + { + "name": "service", + "type": "str" + }, + { + "name": "family", + "type": "282" + }, + { + "name": "websocket", + "type": "bool" + }, + { + "name": "auth", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "288", + "members": [ + { + "name": "host", + "type": "str" + }, + { + "name": "service", + "type": "str" + }, + { + "name": "family", + "type": "282" + }, + { + "name": "websocket", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "[289]", + "element-type": "289", + "meta-type": "array" + }, + { + "name": "289", + "tag": "type", + "variants": [ + { + "case": "number", + "type": "397" + }, + { + "case": "qcode", + "type": "398" + } + ], + "members": [ + { + "name": "type", + "type": "396" + } + ], + "meta-type": "object" + }, + { + "name": "[290]", + "element-type": "290", + "meta-type": "array" + }, + { + "name": "290", + "tag": "type", + "variants": [ + { + "case": "key", + "type": "400" + }, + { + "case": "btn", + "type": "401" + }, + { + "case": "rel", + "type": "402" + }, + { + "case": "abs", + "type": "402" + } + ], + "members": [ + { + "name": "type", + "type": "399" + } + ], + "meta-type": "object" + }, + { + "name": "291", + "meta-type": "enum", + "values": [ + "none", + "setup", + "cancelling", + "cancelled", + "active", + "postcopy-active", + "postcopy-paused", + "postcopy-recover", + "completed", + "failed", + "colo", + "pre-switchover", + "device" + ] + }, + { + "name": "292", + "members": [ + { + "name": "transferred", + "type": "int" + }, + { + "name": "remaining", + "type": "int" + }, + { + "name": "total", + "type": "int" + }, + { + "name": "duplicate", + "type": "int" + }, + { + "name": "skipped", + "type": "int" + }, + { + "name": "normal", + "type": "int" + }, + { + "name": "normal-bytes", + "type": "int" + }, + { + "name": "dirty-pages-rate", + "type": "int" + }, + { + "name": "mbps", + "type": "number" + }, + { + "name": "dirty-sync-count", + "type": "int" + }, + { + "name": "postcopy-requests", + "type": "int" + }, + { + "name": "page-size", + "type": "int" + }, + { + "name": "multifd-bytes", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "293", + "members": [ + { + "name": "cache-size", + "type": "int" + }, + { + "name": "bytes", + "type": "int" + }, + { + "name": "pages", + "type": "int" + }, + { + "name": "cache-miss", + "type": "int" + }, + { + "name": "cache-miss-rate", + "type": "number" + }, + { + "name": "overflow", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "294", + "meta-type": "enum", + "values": [ + "xbzrle", + "rdma-pin-all", + "auto-converge", + "zero-blocks", + "compress", + "events", + "postcopy-ram", + "x-colo", + "release-ram", + "block", + "return-path", + "pause-before-switchover", + "x-multifd", + "dirty-bitmaps", + "postcopy-blocktime", + "late-block-activate" + ] + }, + { + "name": "number", + "json-type": "number", + "meta-type": "builtin" + }, + { + "name": "[295]", + "element-type": "295", + "meta-type": "array" + }, + { + "name": "295", + "tag": "type", + "variants": [ + { + "case": "abort", + "type": "404" + }, + { + "case": "block-dirty-bitmap-add", + "type": "405" + }, + { + "case": "block-dirty-bitmap-clear", + "type": "406" + }, + { + "case": "x-block-dirty-bitmap-enable", + "type": "406" + }, + { + "case": "x-block-dirty-bitmap-disable", + "type": "406" + }, + { + "case": "blockdev-backup", + "type": "407" + }, + { + "case": "blockdev-snapshot", + "type": "408" + }, + { + "case": "blockdev-snapshot-internal-sync", + "type": "409" + }, + { + "case": "blockdev-snapshot-sync", + "type": "410" + }, + { + "case": "drive-backup", + "type": "411" + } + ], + "members": [ + { + "name": "type", + "type": "403" + } + ], + "meta-type": "object" + }, + { + "name": "296", + "members": [ + { + "name": "completion-mode", + "default": null, + "type": "412" + } + ], + "meta-type": "object" + }, + { + "name": "297", + "meta-type": "enum", + "values": [ + "unavailable", + "disabled", + "enabled" + ] + }, + { + "name": "298", + "meta-type": "enum", + "values": [ + "builtin", + "enum", + "array", + "object", + "alternate", + "command", + "event" + ] + }, + { + "name": "299", + "members": [ + { + "name": "json-type", + "type": "413" + } + ], + "meta-type": "object" + }, + { + "name": "300", + "members": [ + { + "name": "values", + "type": "[str]" + } + ], + "meta-type": "object" + }, + { + "name": "301", + "members": [ + { + "name": "element-type", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "302", + "members": [ + { + "name": "members", + "type": "[414]" + }, + { + "name": "tag", + "default": null, + "type": "str" + }, + { + "name": "variants", + "default": null, + "type": "[415]" + } + ], + "meta-type": "object" + }, + { + "name": "303", + "members": [ + { + "name": "members", + "type": "[416]" + } + ], + "meta-type": "object" + }, + { + "name": "304", + "members": [ + { + "name": "arg-type", + "type": "str" + }, + { + "name": "ret-type", + "type": "str" + }, + { + "name": "allow-oob", + "type": "bool" + }, + { + "name": "allow-preconfig", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "305", + "members": [ + { + "name": "arg-type", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[306]", + "element-type": "306", + "meta-type": "array" + }, + { + "name": "306", + "meta-type": "enum", + "values": [ + "oob" + ] + }, + { + "name": "307", + "members": [ + { + "name": "major", + "type": "int" + }, + { + "name": "minor", + "type": "int" + }, + { + "name": "micro", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "308", + "members": [ + { + "name": "node-id", + "default": null, + "type": "int" + }, + { + "name": "socket-id", + "default": null, + "type": "int" + }, + { + "name": "core-id", + "default": null, + "type": "int" + }, + { + "name": "thread-id", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "309", + "meta-type": "enum", + "values": [ + "x86", + "sparc", + "ppc", + "mips", + "tricore", + "s390", + "riscv", + "other" + ] + }, + { + "name": "310", + "members": [ + { + "name": "pc", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "311", + "members": [ + { + "name": "pc", + "type": "int" + }, + { + "name": "npc", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "312", + "members": [ + { + "name": "nip", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "313", + "members": [ + { + "name": "PC", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "314", + "members": [ + { + "name": "PC", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "315", + "members": [ + { + "name": "cpu-state", + "type": "417" + } + ], + "meta-type": "object" + }, + { + "name": "316", + "members": [ + { + "name": "pc", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "317", + "meta-type": "enum", + "values": [ + "aarch64", + "alpha", + "arm", + "cris", + "hppa", + "i386", + "lm32", + "m68k", + "microblaze", + "microblazeel", + "mips", + "mips64", + "mips64el", + "mipsel", + "moxie", + "nios2", + "or1k", + "ppc", + "ppc64", + "ppcemb", + "riscv32", + "riscv64", + "s390x", + "sh4", + "sh4eb", + "sparc", + "sparc64", + "tricore", + "unicore32", + "x86_64", + "xtensa", + "xtensaeb" + ] + }, + { + "name": "[318]", + "element-type": "318", + "meta-type": "array" + }, + { + "name": "318", + "members": [ + { + "name": "bus", + "type": "int" + }, + { + "name": "slot", + "type": "int" + }, + { + "name": "function", + "type": "int" + }, + { + "name": "class_info", + "type": "418" + }, + { + "name": "id", + "type": "419" + }, + { + "name": "irq", + "default": null, + "type": "int" + }, + { + "name": "qdev_id", + "type": "str" + }, + { + "name": "pci_bridge", + "default": null, + "type": "420" + }, + { + "name": "regions", + "type": "[421]" + } + ], + "meta-type": "object" + }, + { + "name": "319", + "meta-type": "enum", + "values": [ + "elf", + "kdump-zlib", + "kdump-lzo", + "kdump-snappy", + "win-dmp" + ] + }, + { + "name": "320", + "meta-type": "enum", + "values": [ + "none", + "active", + "completed", + "failed" + ] + }, + { + "name": "[319]", + "element-type": "319", + "meta-type": "array" + }, + { + "name": "321", + "meta-type": "enum", + "values": [ + "static", + "full" + ] + }, + { + "name": "322", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "props", + "default": null, + "type": "any" + } + ], + "meta-type": "object" + }, + { + "name": "323", + "meta-type": "enum", + "values": [ + "incompatible", + "identical", + "superset", + "subset" + ] + }, + { + "name": "[324]", + "element-type": "324", + "meta-type": "array" + }, + { + "name": "324", + "members": [ + { + "name": "fd", + "type": "int" + }, + { + "name": "opaque", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[325]", + "element-type": "325", + "meta-type": "array" + }, + { + "name": "325", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "type", + "type": "422" + }, + { + "name": "help", + "default": null, + "type": "str" + }, + { + "name": "default", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "326", + "meta-type": "enum", + "values": [ + "default", + "preferred", + "bind", + "interleave" + ] + }, + { + "name": "327", + "meta-type": "enum", + "values": [ + "dimm", + "nvdimm" + ] + }, + { + "name": "328", + "members": [ + { + "name": "data", + "type": "423" + } + ], + "meta-type": "object" + }, + { + "name": "329", + "meta-type": "enum", + "values": [ + "DIMM", + "CPU" + ] + }, + { + "name": "330", + "meta-type": "enum", + "values": [ + "uninit", + "launch-update", + "launch-secret", + "running", + "send-update", + "receive-update" + ] + }, + { + "name": "331", + "meta-type": "enum", + "values": [ + "queue-full" + ] + }, + { + "name": "332", + "meta-type": "enum", + "values": [ + "node", + "dist", + "cpu" + ] + }, + { + "name": "333", + "members": [ + { + "name": "nodeid", + "default": null, + "type": "int" + }, + { + "name": "cpus", + "default": null, + "type": "[int]" + }, + { + "name": "mem", + "default": null, + "type": "int" + }, + { + "name": "memdev", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "334", + "members": [ + { + "name": "src", + "type": "int" + }, + { + "name": "dst", + "type": "int" + }, + { + "name": "val", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "335", + "members": [ + { + "name": "node-id", + "default": null, + "type": "int" + }, + { + "name": "socket-id", + "default": null, + "type": "int" + }, + { + "name": "core-id", + "default": null, + "type": "int" + }, + { + "name": "thread-id", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "336", + "meta-type": "enum", + "values": [ + "hyper-v", + "s390" + ] + }, + { + "name": "337", + "members": [ + { + "name": "arg1", + "type": "int" + }, + { + "name": "arg2", + "type": "int" + }, + { + "name": "arg3", + "type": "int" + }, + { + "name": "arg4", + "type": "int" + }, + { + "name": "arg5", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "338", + "members": [ + { + "name": "core", + "type": "int" + }, + { + "name": "psw-mask", + "type": "int" + }, + { + "name": "psw-addr", + "type": "int" + }, + { + "name": "reason", + "type": "424" + } + ], + "meta-type": "object" + }, + { + "name": "339", + "meta-type": "enum", + "values": [ + "active", + "disabled", + "frozen", + "locked" + ] + }, + { + "name": "[340]", + "element-type": "340", + "meta-type": "array" + }, + { + "name": "340", + "members": [ + { + "name": "interval_length", + "type": "int" + }, + { + "name": "min_rd_latency_ns", + "type": "int" + }, + { + "name": "max_rd_latency_ns", + "type": "int" + }, + { + "name": "avg_rd_latency_ns", + "type": "int" + }, + { + "name": "min_wr_latency_ns", + "type": "int" + }, + { + "name": "max_wr_latency_ns", + "type": "int" + }, + { + "name": "avg_wr_latency_ns", + "type": "int" + }, + { + "name": "min_flush_latency_ns", + "type": "int" + }, + { + "name": "max_flush_latency_ns", + "type": "int" + }, + { + "name": "avg_flush_latency_ns", + "type": "int" + }, + { + "name": "avg_rd_queue_depth", + "type": "number" + }, + { + "name": "avg_wr_queue_depth", + "type": "number" + } + ], + "meta-type": "object" + }, + { + "name": "341", + "members": [ + { + "name": "boundaries", + "type": "[int]" + }, + { + "name": "bins", + "type": "[int]" + } + ], + "meta-type": "object" + }, + { + "name": "[66]", + "element-type": "66", + "meta-type": "array" + }, + { + "name": "342", + "tag": "type", + "variants": [ + { + "case": "qcow2", + "type": "426" + }, + { + "case": "vmdk", + "type": "427" + }, + { + "case": "luks", + "type": "428" + } + ], + "members": [ + { + "name": "type", + "type": "425" + } + ], + "meta-type": "object" + }, + { + "name": "343", + "members": [ + { + "type": "44" + }, + { + "type": "str" + } + ], + "meta-type": "alternate" + }, + { + "name": "[344]", + "element-type": "344", + "meta-type": "array" + }, + { + "name": "344", + "members": [ + { + "name": "event", + "type": "429" + }, + { + "name": "state", + "default": null, + "type": "int" + }, + { + "name": "errno", + "default": null, + "type": "int" + }, + { + "name": "sector", + "default": null, + "type": "int" + }, + { + "name": "once", + "default": null, + "type": "bool" + }, + { + "name": "immediately", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "[345]", + "element-type": "345", + "meta-type": "array" + }, + { + "name": "345", + "members": [ + { + "name": "event", + "type": "429" + }, + { + "name": "state", + "default": null, + "type": "int" + }, + { + "name": "new_state", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "346", + "meta-type": "enum", + "values": [ + "auto", + "on", + "off" + ] + }, + { + "name": "347", + "meta-type": "enum", + "values": [ + "threads", + "native" + ] + }, + { + "name": "[348]", + "element-type": "348", + "meta-type": "array" + }, + { + "name": "348", + "tag": "type", + "variants": [ + { + "case": "inet", + "type": "360" + }, + { + "case": "unix", + "type": "431" + }, + { + "case": "vsock", + "type": "432" + }, + { + "case": "fd", + "type": "433" + } + ], + "members": [ + { + "name": "type", + "type": "430" + } + ], + "meta-type": "object" + }, + { + "name": "349", + "meta-type": "enum", + "values": [ + "tcp", + "iser" + ] + }, + { + "name": "350", + "meta-type": "enum", + "values": [ + "crc32c", + "none", + "crc32c-none", + "none-crc32c" + ] + }, + { + "name": "351", + "members": [ + { + "name": "type", + "type": "434" + }, + { + "name": "host", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "352", + "members": [ + { + "type": "44" + }, + { + "type": "str" + }, + { + "type": "null" + } + ], + "meta-type": "alternate" + }, + { + "name": "353", + "members": [ + { + "type": "435" + }, + { + "type": "436" + } + ], + "meta-type": "alternate" + }, + { + "name": "354", + "tag": "format", + "variants": [ + { + "case": "aes", + "type": "438" + }, + { + "case": "luks", + "type": "439" + } + ], + "members": [ + { + "name": "format", + "type": "437" + } + ], + "meta-type": "object" + }, + { + "name": "355", + "tag": "format", + "variants": [ + { + "case": "aes", + "type": "438" + } + ], + "members": [ + { + "name": "format", + "type": "440" + } + ], + "meta-type": "object" + }, + { + "name": "[343]", + "element-type": "343", + "meta-type": "array" + }, + { + "name": "356", + "meta-type": "enum", + "values": [ + "quorum", + "fifo" + ] + }, + { + "name": "[357]", + "element-type": "357", + "meta-type": "array" + }, + { + "name": "357", + "meta-type": "enum", + "values": [ + "cephx", + "none" + ] + }, + { + "name": "[358]", + "element-type": "358", + "meta-type": "array" + }, + { + "name": "358", + "members": [ + { + "name": "host", + "type": "str" + }, + { + "name": "port", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "359", + "meta-type": "enum", + "values": [ + "primary", + "secondary" + ] + }, + { + "name": "360", + "members": [ + { + "name": "host", + "type": "str" + }, + { + "name": "port", + "type": "str" + }, + { + "name": "numeric", + "default": null, + "type": "bool" + }, + { + "name": "to", + "default": null, + "type": "int" + }, + { + "name": "ipv4", + "default": null, + "type": "bool" + }, + { + "name": "ipv6", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "361", + "tag": "mode", + "variants": [ + { + "case": "hash", + "type": "442" + }, + { + "case": "none", + "type": "0" + }, + { + "case": "known_hosts", + "type": "0" + } + ], + "members": [ + { + "name": "mode", + "type": "441" + } + ], + "meta-type": "object" + }, + { + "name": "362", + "members": [ + { + "name": "filename", + "type": "str" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "preallocation", + "default": null, + "type": "443" + }, + { + "name": "nocow", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "363", + "members": [ + { + "name": "location", + "type": "240" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "preallocation", + "default": null, + "type": "443" + } + ], + "meta-type": "object" + }, + { + "name": "364", + "members": [ + { + "name": "key-secret", + "default": null, + "type": "str" + }, + { + "name": "cipher-alg", + "default": null, + "type": "444" + }, + { + "name": "cipher-mode", + "default": null, + "type": "445" + }, + { + "name": "ivgen-alg", + "default": null, + "type": "446" + }, + { + "name": "ivgen-hash-alg", + "default": null, + "type": "447" + }, + { + "name": "hash-alg", + "default": null, + "type": "447" + }, + { + "name": "iter-time", + "default": null, + "type": "int" + }, + { + "name": "file", + "type": "343" + }, + { + "name": "size", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "365", + "members": [ + { + "name": "location", + "type": "246" + }, + { + "name": "size", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "366", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "cluster-size", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "367", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "backing-file", + "default": null, + "type": "str" + }, + { + "name": "encrypt", + "default": null, + "type": "448" + } + ], + "meta-type": "object" + }, + { + "name": "368", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "version", + "default": null, + "type": "449" + }, + { + "name": "backing-file", + "default": null, + "type": "str" + }, + { + "name": "backing-fmt", + "default": null, + "type": "230" + }, + { + "name": "encrypt", + "default": null, + "type": "448" + }, + { + "name": "cluster-size", + "default": null, + "type": "int" + }, + { + "name": "preallocation", + "default": null, + "type": "443" + }, + { + "name": "lazy-refcounts", + "default": null, + "type": "bool" + }, + { + "name": "refcount-bits", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "369", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "backing-file", + "default": null, + "type": "str" + }, + { + "name": "backing-fmt", + "default": null, + "type": "230" + }, + { + "name": "cluster-size", + "default": null, + "type": "int" + }, + { + "name": "table-size", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "370", + "members": [ + { + "name": "location", + "type": "254" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "cluster-size", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "371", + "members": [ + { + "name": "location", + "type": "256" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "backing-file", + "default": null, + "type": "str" + }, + { + "name": "preallocation", + "default": null, + "type": "443" + }, + { + "name": "redundancy", + "default": null, + "type": "450" + }, + { + "name": "object-size", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "372", + "members": [ + { + "name": "location", + "type": "257" + }, + { + "name": "size", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "373", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "preallocation", + "default": null, + "type": "443" + } + ], + "meta-type": "object" + }, + { + "name": "374", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "log-size", + "default": null, + "type": "int" + }, + { + "name": "block-size", + "default": null, + "type": "int" + }, + { + "name": "subformat", + "default": null, + "type": "451" + }, + { + "name": "block-state-zero", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "375", + "members": [ + { + "name": "file", + "type": "343" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "subformat", + "default": null, + "type": "452" + }, + { + "name": "force-size", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "null", + "json-type": "null", + "meta-type": "builtin" + }, + { + "name": "376", + "meta-type": "enum", + "values": [ + "inet", + "unix", + "vsock", + "fd" + ] + }, + { + "name": "377", + "members": [ + { + "name": "data", + "type": "360" + } + ], + "meta-type": "object" + }, + { + "name": "378", + "members": [ + { + "name": "data", + "type": "431" + } + ], + "meta-type": "object" + }, + { + "name": "379", + "members": [ + { + "name": "data", + "type": "432" + } + ], + "meta-type": "object" + }, + { + "name": "380", + "members": [ + { + "name": "data", + "type": "433" + } + ], + "meta-type": "object" + }, + { + "name": "381", + "meta-type": "enum", + "values": [ + "file", + "serial", + "parallel", + "pipe", + "socket", + "udp", + "pty", + "null", + "mux", + "msmouse", + "wctablet", + "braille", + "testdev", + "stdio", + "console", + "spicevmc", + "spiceport", + "vc", + "ringbuf", + "memory" + ] + }, + { + "name": "382", + "members": [ + { + "name": "data", + "type": "453" + } + ], + "meta-type": "object" + }, + { + "name": "383", + "members": [ + { + "name": "data", + "type": "454" + } + ], + "meta-type": "object" + }, + { + "name": "384", + "members": [ + { + "name": "data", + "type": "455" + } + ], + "meta-type": "object" + }, + { + "name": "385", + "members": [ + { + "name": "data", + "type": "456" + } + ], + "meta-type": "object" + }, + { + "name": "386", + "members": [ + { + "name": "data", + "type": "457" + } + ], + "meta-type": "object" + }, + { + "name": "387", + "members": [ + { + "name": "data", + "type": "458" + } + ], + "meta-type": "object" + }, + { + "name": "388", + "members": [ + { + "name": "data", + "type": "459" + } + ], + "meta-type": "object" + }, + { + "name": "389", + "members": [ + { + "name": "data", + "type": "460" + } + ], + "meta-type": "object" + }, + { + "name": "390", + "members": [ + { + "name": "data", + "type": "461" + } + ], + "meta-type": "object" + }, + { + "name": "391", + "members": [ + { + "name": "data", + "type": "462" + } + ], + "meta-type": "object" + }, + { + "name": "392", + "members": [ + { + "name": "data", + "type": "463" + } + ], + "meta-type": "object" + }, + { + "name": "393", + "meta-type": "enum", + "values": [ + "passthrough", + "emulator" + ] + }, + { + "name": "394", + "members": [ + { + "name": "data", + "type": "464" + } + ], + "meta-type": "object" + }, + { + "name": "395", + "members": [ + { + "name": "data", + "type": "465" + } + ], + "meta-type": "object" + }, + { + "name": "396", + "meta-type": "enum", + "values": [ + "number", + "qcode" + ] + }, + { + "name": "397", + "members": [ + { + "name": "data", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "398", + "members": [ + { + "name": "data", + "type": "466" + } + ], + "meta-type": "object" + }, + { + "name": "399", + "meta-type": "enum", + "values": [ + "key", + "btn", + "rel", + "abs" + ] + }, + { + "name": "400", + "members": [ + { + "name": "data", + "type": "467" + } + ], + "meta-type": "object" + }, + { + "name": "401", + "members": [ + { + "name": "data", + "type": "468" + } + ], + "meta-type": "object" + }, + { + "name": "402", + "members": [ + { + "name": "data", + "type": "469" + } + ], + "meta-type": "object" + }, + { + "name": "403", + "meta-type": "enum", + "values": [ + "abort", + "block-dirty-bitmap-add", + "block-dirty-bitmap-clear", + "x-block-dirty-bitmap-enable", + "x-block-dirty-bitmap-disable", + "blockdev-backup", + "blockdev-snapshot", + "blockdev-snapshot-internal-sync", + "blockdev-snapshot-sync", + "drive-backup" + ] + }, + { + "name": "404", + "members": [ + { + "name": "data", + "type": "470" + } + ], + "meta-type": "object" + }, + { + "name": "405", + "members": [ + { + "name": "data", + "type": "30" + } + ], + "meta-type": "object" + }, + { + "name": "406", + "members": [ + { + "name": "data", + "type": "31" + } + ], + "meta-type": "object" + }, + { + "name": "407", + "members": [ + { + "name": "data", + "type": "27" + } + ], + "meta-type": "object" + }, + { + "name": "408", + "members": [ + { + "name": "data", + "type": "23" + } + ], + "meta-type": "object" + }, + { + "name": "409", + "members": [ + { + "name": "data", + "type": "64" + } + ], + "meta-type": "object" + }, + { + "name": "410", + "members": [ + { + "name": "data", + "type": "22" + } + ], + "meta-type": "object" + }, + { + "name": "411", + "members": [ + { + "name": "data", + "type": "26" + } + ], + "meta-type": "object" + }, + { + "name": "412", + "meta-type": "enum", + "values": [ + "individual", + "grouped" + ] + }, + { + "name": "413", + "meta-type": "enum", + "values": [ + "string", + "number", + "int", + "boolean", + "null", + "object", + "array", + "value" + ] + }, + { + "name": "[414]", + "element-type": "414", + "meta-type": "array" + }, + { + "name": "414", + "members": [ + { + "name": "name", + "type": "str" + }, + { + "name": "type", + "type": "str" + }, + { + "name": "default", + "default": null, + "type": "any" + } + ], + "meta-type": "object" + }, + { + "name": "[415]", + "element-type": "415", + "meta-type": "array" + }, + { + "name": "415", + "members": [ + { + "name": "case", + "type": "str" + }, + { + "name": "type", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "[416]", + "element-type": "416", + "meta-type": "array" + }, + { + "name": "416", + "members": [ + { + "name": "type", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "417", + "meta-type": "enum", + "values": [ + "uninitialized", + "stopped", + "check-stop", + "operating", + "load" + ] + }, + { + "name": "418", + "members": [ + { + "name": "desc", + "default": null, + "type": "str" + }, + { + "name": "class", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "419", + "members": [ + { + "name": "device", + "type": "int" + }, + { + "name": "vendor", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "420", + "members": [ + { + "name": "bus", + "type": "471" + }, + { + "name": "devices", + "default": null, + "type": "[318]" + } + ], + "meta-type": "object" + }, + { + "name": "[421]", + "element-type": "421", + "meta-type": "array" + }, + { + "name": "421", + "members": [ + { + "name": "bar", + "type": "int" + }, + { + "name": "type", + "type": "str" + }, + { + "name": "address", + "type": "int" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "prefetch", + "default": null, + "type": "bool" + }, + { + "name": "mem_type_64", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "422", + "meta-type": "enum", + "values": [ + "string", + "boolean", + "number", + "size" + ] + }, + { + "name": "423", + "members": [ + { + "name": "id", + "default": null, + "type": "str" + }, + { + "name": "addr", + "type": "int" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "slot", + "type": "int" + }, + { + "name": "node", + "type": "int" + }, + { + "name": "memdev", + "type": "str" + }, + { + "name": "hotplugged", + "type": "bool" + }, + { + "name": "hotpluggable", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "424", + "meta-type": "enum", + "values": [ + "unknown", + "disabled-wait", + "extint-loop", + "pgmint-loop", + "opint-loop" + ] + }, + { + "name": "425", + "meta-type": "enum", + "values": [ + "qcow2", + "vmdk", + "luks" + ] + }, + { + "name": "426", + "members": [ + { + "name": "data", + "type": "472" + } + ], + "meta-type": "object" + }, + { + "name": "427", + "members": [ + { + "name": "data", + "type": "473" + } + ], + "meta-type": "object" + }, + { + "name": "428", + "members": [ + { + "name": "data", + "type": "474" + } + ], + "meta-type": "object" + }, + { + "name": "429", + "meta-type": "enum", + "values": [ + "l1_update", + "l1_grow_alloc_table", + "l1_grow_write_table", + "l1_grow_activate_table", + "l2_load", + "l2_update", + "l2_update_compressed", + "l2_alloc_cow_read", + "l2_alloc_write", + "read_aio", + "read_backing_aio", + "read_compressed", + "write_aio", + "write_compressed", + "vmstate_load", + "vmstate_save", + "cow_read", + "cow_write", + "reftable_load", + "reftable_grow", + "reftable_update", + "refblock_load", + "refblock_update", + "refblock_update_part", + "refblock_alloc", + "refblock_alloc_hookup", + "refblock_alloc_write", + "refblock_alloc_write_blocks", + "refblock_alloc_write_table", + "refblock_alloc_switch_table", + "cluster_alloc", + "cluster_alloc_bytes", + "cluster_free", + "flush_to_os", + "flush_to_disk", + "pwritev_rmw_head", + "pwritev_rmw_after_head", + "pwritev_rmw_tail", + "pwritev_rmw_after_tail", + "pwritev", + "pwritev_zero", + "pwritev_done", + "empty_image_prepare", + "l1_shrink_write_table", + "l1_shrink_free_l2_clusters", + "cor_write" + ] + }, + { + "name": "430", + "meta-type": "enum", + "values": [ + "inet", + "unix", + "vsock", + "fd" + ] + }, + { + "name": "431", + "members": [ + { + "name": "path", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "432", + "members": [ + { + "name": "cid", + "type": "str" + }, + { + "name": "port", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "433", + "members": [ + { + "name": "str", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "434", + "meta-type": "enum", + "values": [ + "inet" + ] + }, + { + "name": "435", + "members": [ + { + "name": "template", + "default": null, + "type": "436" + }, + { + "name": "main-header", + "default": null, + "type": "bool" + }, + { + "name": "active-l1", + "default": null, + "type": "bool" + }, + { + "name": "active-l2", + "default": null, + "type": "bool" + }, + { + "name": "refcount-table", + "default": null, + "type": "bool" + }, + { + "name": "refcount-block", + "default": null, + "type": "bool" + }, + { + "name": "snapshot-table", + "default": null, + "type": "bool" + }, + { + "name": "inactive-l1", + "default": null, + "type": "bool" + }, + { + "name": "inactive-l2", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "436", + "meta-type": "enum", + "values": [ + "none", + "constant", + "cached", + "all" + ] + }, + { + "name": "437", + "meta-type": "enum", + "values": [ + "aes", + "luks" + ] + }, + { + "name": "438", + "members": [ + { + "name": "key-secret", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "439", + "members": [ + { + "name": "key-secret", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "440", + "meta-type": "enum", + "values": [ + "aes" + ] + }, + { + "name": "441", + "meta-type": "enum", + "values": [ + "none", + "hash", + "known_hosts" + ] + }, + { + "name": "442", + "members": [ + { + "name": "type", + "type": "475" + }, + { + "name": "hash", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "443", + "meta-type": "enum", + "values": [ + "off", + "metadata", + "falloc", + "full" + ] + }, + { + "name": "444", + "meta-type": "enum", + "values": [ + "aes-128", + "aes-192", + "aes-256", + "des-rfb", + "3des", + "cast5-128", + "serpent-128", + "serpent-192", + "serpent-256", + "twofish-128", + "twofish-192", + "twofish-256" + ] + }, + { + "name": "445", + "meta-type": "enum", + "values": [ + "ecb", + "cbc", + "xts", + "ctr" + ] + }, + { + "name": "446", + "meta-type": "enum", + "values": [ + "plain", + "plain64", + "essiv" + ] + }, + { + "name": "447", + "meta-type": "enum", + "values": [ + "md5", + "sha1", + "sha224", + "sha256", + "sha384", + "sha512", + "ripemd160" + ] + }, + { + "name": "448", + "tag": "format", + "variants": [ + { + "case": "qcow", + "type": "438" + }, + { + "case": "luks", + "type": "477" + } + ], + "members": [ + { + "name": "format", + "type": "476" + } + ], + "meta-type": "object" + }, + { + "name": "449", + "meta-type": "enum", + "values": [ + "v2", + "v3" + ] + }, + { + "name": "450", + "tag": "type", + "variants": [ + { + "case": "full", + "type": "479" + }, + { + "case": "erasure-coded", + "type": "480" + } + ], + "members": [ + { + "name": "type", + "type": "478" + } + ], + "meta-type": "object" + }, + { + "name": "451", + "meta-type": "enum", + "values": [ + "dynamic", + "fixed" + ] + }, + { + "name": "452", + "meta-type": "enum", + "values": [ + "dynamic", + "fixed" + ] + }, + { + "name": "453", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + }, + { + "name": "in", + "default": null, + "type": "str" + }, + { + "name": "out", + "type": "str" + }, + { + "name": "append", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "454", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + }, + { + "name": "device", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "455", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + }, + { + "name": "addr", + "type": "266" + }, + { + "name": "tls-creds", + "default": null, + "type": "str" + }, + { + "name": "server", + "default": null, + "type": "bool" + }, + { + "name": "wait", + "default": null, + "type": "bool" + }, + { + "name": "nodelay", + "default": null, + "type": "bool" + }, + { + "name": "telnet", + "default": null, + "type": "bool" + }, + { + "name": "tn3270", + "default": null, + "type": "bool" + }, + { + "name": "reconnect", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "456", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + }, + { + "name": "remote", + "type": "266" + }, + { + "name": "local", + "default": null, + "type": "266" + } + ], + "meta-type": "object" + }, + { + "name": "457", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "458", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + }, + { + "name": "chardev", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "459", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + }, + { + "name": "signal", + "default": null, + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "460", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + }, + { + "name": "type", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "461", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + }, + { + "name": "fqdn", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "462", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + }, + { + "name": "width", + "default": null, + "type": "int" + }, + { + "name": "height", + "default": null, + "type": "int" + }, + { + "name": "cols", + "default": null, + "type": "int" + }, + { + "name": "rows", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "463", + "members": [ + { + "name": "logfile", + "default": null, + "type": "str" + }, + { + "name": "logappend", + "default": null, + "type": "bool" + }, + { + "name": "size", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "464", + "members": [ + { + "name": "path", + "default": null, + "type": "str" + }, + { + "name": "cancel-path", + "default": null, + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "465", + "members": [ + { + "name": "chardev", + "type": "str" + } + ], + "meta-type": "object" + }, + { + "name": "466", + "meta-type": "enum", + "values": [ + "unmapped", + "shift", + "shift_r", + "alt", + "alt_r", + "ctrl", + "ctrl_r", + "menu", + "esc", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "0", + "minus", + "equal", + "backspace", + "tab", + "q", + "w", + "e", + "r", + "t", + "y", + "u", + "i", + "o", + "p", + "bracket_left", + "bracket_right", + "ret", + "a", + "s", + "d", + "f", + "g", + "h", + "j", + "k", + "l", + "semicolon", + "apostrophe", + "grave_accent", + "backslash", + "z", + "x", + "c", + "v", + "b", + "n", + "m", + "comma", + "dot", + "slash", + "asterisk", + "spc", + "caps_lock", + "f1", + "f2", + "f3", + "f4", + "f5", + "f6", + "f7", + "f8", + "f9", + "f10", + "num_lock", + "scroll_lock", + "kp_divide", + "kp_multiply", + "kp_subtract", + "kp_add", + "kp_enter", + "kp_decimal", + "sysrq", + "kp_0", + "kp_1", + "kp_2", + "kp_3", + "kp_4", + "kp_5", + "kp_6", + "kp_7", + "kp_8", + "kp_9", + "less", + "f11", + "f12", + "print", + "home", + "pgup", + "pgdn", + "end", + "left", + "up", + "down", + "right", + "insert", + "delete", + "stop", + "again", + "props", + "undo", + "front", + "copy", + "open", + "paste", + "find", + "cut", + "lf", + "help", + "meta_l", + "meta_r", + "compose", + "pause", + "ro", + "hiragana", + "henkan", + "yen", + "muhenkan", + "katakanahiragana", + "kp_comma", + "kp_equals", + "power", + "sleep", + "wake", + "audionext", + "audioprev", + "audiostop", + "audioplay", + "audiomute", + "volumeup", + "volumedown", + "mediaselect", + "mail", + "calculator", + "computer", + "ac_home", + "ac_back", + "ac_forward", + "ac_refresh", + "ac_bookmarks" + ] + }, + { + "name": "467", + "members": [ + { + "name": "key", + "type": "289" + }, + { + "name": "down", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "468", + "members": [ + { + "name": "button", + "type": "481" + }, + { + "name": "down", + "type": "bool" + } + ], + "meta-type": "object" + }, + { + "name": "469", + "members": [ + { + "name": "axis", + "type": "482" + }, + { + "name": "value", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "470", + "members": [ + ], + "meta-type": "object" + }, + { + "name": "471", + "members": [ + { + "name": "number", + "type": "int" + }, + { + "name": "secondary", + "type": "int" + }, + { + "name": "subordinate", + "type": "int" + }, + { + "name": "io_range", + "type": "483" + }, + { + "name": "memory_range", + "type": "483" + }, + { + "name": "prefetchable_range", + "type": "483" + } + ], + "meta-type": "object" + }, + { + "name": "472", + "members": [ + { + "name": "compat", + "type": "str" + }, + { + "name": "lazy-refcounts", + "default": null, + "type": "bool" + }, + { + "name": "corrupt", + "default": null, + "type": "bool" + }, + { + "name": "refcount-bits", + "type": "int" + }, + { + "name": "encrypt", + "default": null, + "type": "484" + } + ], + "meta-type": "object" + }, + { + "name": "473", + "members": [ + { + "name": "create-type", + "type": "str" + }, + { + "name": "cid", + "type": "int" + }, + { + "name": "parent-cid", + "type": "int" + }, + { + "name": "extents", + "type": "[227]" + } + ], + "meta-type": "object" + }, + { + "name": "474", + "members": [ + { + "name": "cipher-alg", + "type": "444" + }, + { + "name": "cipher-mode", + "type": "445" + }, + { + "name": "ivgen-alg", + "type": "446" + }, + { + "name": "ivgen-hash-alg", + "default": null, + "type": "447" + }, + { + "name": "hash-alg", + "type": "447" + }, + { + "name": "payload-offset", + "type": "int" + }, + { + "name": "master-key-iters", + "type": "int" + }, + { + "name": "uuid", + "type": "str" + }, + { + "name": "slots", + "type": "[485]" + } + ], + "meta-type": "object" + }, + { + "name": "475", + "meta-type": "enum", + "values": [ + "md5", + "sha1" + ] + }, + { + "name": "476", + "meta-type": "enum", + "values": [ + "qcow", + "luks" + ] + }, + { + "name": "477", + "members": [ + { + "name": "key-secret", + "default": null, + "type": "str" + }, + { + "name": "cipher-alg", + "default": null, + "type": "444" + }, + { + "name": "cipher-mode", + "default": null, + "type": "445" + }, + { + "name": "ivgen-alg", + "default": null, + "type": "446" + }, + { + "name": "ivgen-hash-alg", + "default": null, + "type": "447" + }, + { + "name": "hash-alg", + "default": null, + "type": "447" + }, + { + "name": "iter-time", + "default": null, + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "478", + "meta-type": "enum", + "values": [ + "full", + "erasure-coded" + ] + }, + { + "name": "479", + "members": [ + { + "name": "copies", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "480", + "members": [ + { + "name": "data-strips", + "type": "int" + }, + { + "name": "parity-strips", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "481", + "meta-type": "enum", + "values": [ + "left", + "middle", + "right", + "wheel-up", + "wheel-down", + "side", + "extra" + ] + }, + { + "name": "482", + "meta-type": "enum", + "values": [ + "x", + "y" + ] + }, + { + "name": "483", + "members": [ + { + "name": "base", + "type": "int" + }, + { + "name": "limit", + "type": "int" + } + ], + "meta-type": "object" + }, + { + "name": "484", + "tag": "format", + "variants": [ + { + "case": "luks", + "type": "474" + }, + { + "case": "aes", + "type": "0" + } + ], + "members": [ + { + "name": "format", + "type": "437" + } + ], + "meta-type": "object" + }, + { + "name": "[227]", + "element-type": "227", + "meta-type": "array" + }, + { + "name": "[485]", + "element-type": "485", + "meta-type": "array" + }, + { + "name": "485", + "members": [ + { + "name": "active", + "type": "bool" + }, + { + "name": "iters", + "default": null, + "type": "int" + }, + { + "name": "stripes", + "default": null, + "type": "int" + }, + { + "name": "key-offset", + "type": "int" + } + ], + "meta-type": "object" + } + ], + "id": "libvirt-49" +} + +{ + "execute": "query-cpu-model-expansion", + "arguments": { + "type": "static", + "model": { + "name": "host" + } + }, + "id": "libvirt-50" +} + +{ + "return": { + "model": { + "name": "base", + "props": { + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": true, + "intel-pt": false, + "kvm-asyncpf": true, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "avx512cd": false, + "decodeassists": false, + "sse4.1": true, + "family": 6, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "xcrypt": false, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": true, + "avx512vbmi2": false, + "cr8legacy": false, + "xcrypt-en": false, + "pn": false, + "dca": false, + "vendor": "GenuineIntel", + "pku": false, + "smx": false, + "cmp-legacy": false, + "avx512-4fmaps": false, + "vmcb-clean": false, + "hle": true, + "3dnowext": false, + "amd-no-ssb": false, + "npt": false, + "clwb": false, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm-lock": false, + "smep": true, + "smap": true, + "pfthreshold": false, + "x2apic": true, + "avx512vbmi": false, + "avx512vnni": false, + "flushbyasid": false, + "f16c": true, + "ace2-en": false, + "pae": true, + "pat": true, + "sse": true, + "phe-en": false, + "kvm-nopiodelay": true, + "tm": false, + "kvmclock-stable-bit": true, + "hypervisor": true, + "pcommit": false, + "syscall": true, + "avx512dq": false, + "svm": false, + "invtsc": false, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": true, + "cx8": true, + "cldemote": false, + "kvm-mmu": false, + "sse4.2": true, + "pge": true, + "avx512bitalg": false, + "pdcm": false, + "model": 94, + "movbe": true, + "nrip-save": false, + "ssse3": true, + "sse4a": false, + "invpcid": true, + "pdpe1gb": true, + "tsc-deadline": true, + "fma": true, + "cx16": true, + "de": true, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ds-cpl": false, + "ibs": false, + "fma4": false, + "la57": false, + "osvw": false, + "apic": true, + "pmm": false, + "spec-ctrl": false, + "tsc-adjust": true, + "kvm-steal-time": true, + "kvmclock": true, + "lwp": false, + "amd-ssbd": false, + "xop": false, + "ibpb": false, + "avx": true, + "acpi": false, + "avx512bw": false, + "ace2": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": false, + "popcnt": true, + "vaes": false, + "xsaves": true, + "lm": true, + "umip": false, + "pse": true, + "avx2": true, + "sep": true, + "virt-ssbd": false, + "nodeid-msr": false, + "misalignsse": false, + "min-xlevel": 2147483656, + "bmi1": true, + "bmi2": true, + "kvm-pv-unhalt": true, + "tsc-scale": false, + "topoext": true, + "clflushopt": true, + "monitor": false, + "avx512er": false, + "pmm-en": false, + "pcid": true, + "3dnow": false, + "erms": true, + "lahf-lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "xstore": false, + "rtm": true, + "kvm-hint-dedicated": false, + "lmce": true, + "perfctr-nb": false, + "rdrand": true, + "rdseed": true, + "avx512-4vnniw": false, + "vme": true, + "vmx": false, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "model-id": "Intel(R) Xeon(R) CPU E3-1245 v5 @ 3.50GHz", + "sha-ni": false, + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-50" +} + +{ + "execute": "query-cpu-model-expansion", + "arguments": { + "type": "full", + "model": { + "name": "base", + "props": { + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": true, + "intel-pt": false, + "kvm-asyncpf": true, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "avx512cd": false, + "decodeassists": false, + "sse4.1": true, + "family": 6, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "xcrypt": false, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": true, + "avx512vbmi2": false, + "cr8legacy": false, + "xcrypt-en": false, + "pn": false, + "dca": false, + "vendor": "GenuineIntel", + "pku": false, + "smx": false, + "cmp-legacy": false, + "avx512-4fmaps": false, + "vmcb-clean": false, + "hle": true, + "3dnowext": false, + "amd-no-ssb": false, + "npt": false, + "clwb": false, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm-lock": false, + "smep": true, + "smap": true, + "pfthreshold": false, + "x2apic": true, + "avx512vbmi": false, + "avx512vnni": false, + "flushbyasid": false, + "f16c": true, + "ace2-en": false, + "pae": true, + "pat": true, + "sse": true, + "phe-en": false, + "kvm-nopiodelay": true, + "tm": false, + "kvmclock-stable-bit": true, + "hypervisor": true, + "pcommit": false, + "syscall": true, + "avx512dq": false, + "svm": false, + "invtsc": false, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": true, + "cx8": true, + "cldemote": false, + "kvm-mmu": false, + "sse4.2": true, + "pge": true, + "avx512bitalg": false, + "pdcm": false, + "model": 94, + "movbe": true, + "nrip-save": false, + "ssse3": true, + "sse4a": false, + "invpcid": true, + "pdpe1gb": true, + "tsc-deadline": true, + "fma": true, + "cx16": true, + "de": true, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ds-cpl": false, + "ibs": false, + "fma4": false, + "la57": false, + "osvw": false, + "apic": true, + "pmm": false, + "spec-ctrl": false, + "tsc-adjust": true, + "kvm-steal-time": true, + "kvmclock": true, + "lwp": false, + "amd-ssbd": false, + "xop": false, + "ibpb": false, + "avx": true, + "acpi": false, + "avx512bw": false, + "ace2": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": false, + "popcnt": true, + "vaes": false, + "xsaves": true, + "lm": true, + "umip": false, + "pse": true, + "avx2": true, + "sep": true, + "virt-ssbd": false, + "nodeid-msr": false, + "misalignsse": false, + "min-xlevel": 2147483656, + "bmi1": true, + "bmi2": true, + "kvm-pv-unhalt": true, + "tsc-scale": false, + "topoext": true, + "clflushopt": true, + "monitor": false, + "avx512er": false, + "pmm-en": false, + "pcid": true, + "3dnow": false, + "erms": true, + "lahf-lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "xstore": false, + "rtm": true, + "kvm-hint-dedicated": false, + "lmce": true, + "perfctr-nb": false, + "rdrand": true, + "rdseed": true, + "avx512-4vnniw": false, + "vme": true, + "vmx": false, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "model-id": "Intel(R) Xeon(R) CPU E3-1245 v5 @ 3.50GHz", + "sha-ni": false, + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-51" +} + +{ + "return": { + "model": { + "name": "base", + "props": { + "phys-bits": 0, + "core-id": -1, + "xlevel": 2147483656, + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": true, + "intel-pt": false, + "hv-frequencies": false, + "tsc-frequency": 0, + "xd": true, + "hv-vendor-id": "", + "kvm-asyncpf": true, + "kvm_asyncpf": true, + "perfctr_core": false, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "decodeassists": false, + "avx512cd": false, + "sse4_1": true, + "sse4.1": true, + "sse4-1": true, + "family": 6, + "legacy-cache": true, + "vmware-cpuid-freq": true, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "hv-runtime": false, + "xcrypt": false, + "thread-id": -1, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "hv-relaxed": false, + "hv-crash": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": true, + "avx512vbmi2": false, + "cr8legacy": false, + "cpuid-0xb": true, + "xcrypt-en": false, + "kvm_pv_eoi": true, + "apic-id": 4294967295, + "pn": false, + "dca": false, + "vendor": "GenuineIntel", + "pku": false, + "smx": false, + "cmp_legacy": false, + "cmp-legacy": false, + "node-id": -1, + "avx512-4fmaps": false, + "vmcb_clean": false, + "vmcb-clean": false, + "3dnowext": false, + "amd-no-ssb": false, + "hle": true, + "npt": false, + "memory": "/machine/unattached/system[0]", + "clwb": false, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm_lock": false, + "svm-lock": false, + "pfthreshold": false, + "smep": true, + "smap": true, + "x2apic": true, + "avx512vbmi": false, + "avx512vnni": false, + "hv-stimer": false, + "i64": true, + "flushbyasid": false, + "f16c": true, + "ace2-en": false, + "pat": true, + "pae": true, + "sse": true, + "phe-en": false, + "kvm_nopiodelay": true, + "kvm-nopiodelay": true, + "tm": false, + "kvmclock-stable-bit": true, + "hypervisor": true, + "socket-id": -1, + "pcommit": false, + "syscall": true, + "level": 13, + "avx512dq": false, + "svm": false, + "full-cpuid-auto-level": true, + "hv-reset": false, + "invtsc": false, + "sse3": true, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": true, + "cx8": true, + "cldemote": false, + "hv-reenlightenment": false, + "kvm_mmu": false, + "kvm-mmu": false, + "sse4_2": true, + "sse4.2": true, + "sse4-2": true, + "pge": true, + "fill-mtrr-mask": true, + "avx512bitalg": false, + "nodeid_msr": false, + "pdcm": false, + "movbe": true, + "model": 94, + "nrip_save": false, + "nrip-save": false, + "kvm_pv_unhalt": true, + "ssse3": true, + "sse4a": false, + "invpcid": true, + "pdpe1gb": true, + "tsc-deadline": true, + "fma": true, + "cx16": true, + "de": true, + "enforce": false, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ibs": false, + "ds_cpl": false, + "ds-cpl": false, + "host-phys-bits": false, + "fma4": false, + "la57": false, + "osvw": false, + "check": true, + "hv-spinlocks": -1, + "pmu": false, + "pmm": false, + "apic": true, + "spec-ctrl": false, + "min-xlevel2": 0, + "tsc-adjust": true, + "tsc_adjust": true, + "kvm-steal-time": true, + "kvm_steal_time": true, + "kvmclock": true, + "l3-cache": true, + "lwp": false, + "amd-ssbd": false, + "ibpb": false, + "xop": false, + "avx": true, + "ace2": false, + "avx512bw": false, + "acpi": false, + "hv-vapic": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": false, + "vaes": false, + "popcnt": true, + "xsaves": true, + "tcg-cpuid": true, + "lm": true, + "umip": false, + "pse": true, + "avx2": true, + "sep": true, + "pclmuldq": true, + "virt-ssbd": false, + "x-hv-max-vps": -1, + "nodeid-msr": false, + "kvm": true, + "misalignsse": false, + "min-xlevel": 2147483656, + "kvm-pv-unhalt": true, + "bmi2": true, + "bmi1": true, + "realized": false, + "tsc_scale": false, + "tsc-scale": false, + "topoext": true, + "hv-vpindex": false, + "xlevel2": 0, + "clflushopt": true, + "kvm-no-smi-migration": false, + "monitor": false, + "avx512er": false, + "pmm-en": false, + "pcid": true, + "3dnow": false, + "erms": true, + "lahf-lm": true, + "lahf_lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "hv-synic": false, + "xstore": false, + "fxsr_opt": false, + "kvm-hint-dedicated": false, + "rtm": true, + "lmce": true, + "hv-time": false, + "perfctr-nb": false, + "perfctr_nb": false, + "ffxsr": false, + "hv-tlbflush": false, + "rdrand": true, + "rdseed": true, + "avx512-4vnniw": false, + "vmx": false, + "vme": true, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "pause_filter": false, + "sha-ni": false, + "model-id": "Intel(R) Xeon(R) CPU E3-1245 v5 @ 3.50GHz", + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-51" +} + +{ + "execute": "query-cpu-model-expansion", + "arguments": { + "type": "static", + "model": { + "name": "host", + "props": { + "migratable": false + } + } + }, + "id": "libvirt-52" +} + +{ + "return": { + "model": { + "name": "base", + "props": { + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": true, + "intel-pt": false, + "kvm-asyncpf": true, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "avx512cd": false, + "decodeassists": false, + "sse4.1": true, + "family": 6, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "xcrypt": false, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": true, + "avx512vbmi2": false, + "cr8legacy": false, + "xcrypt-en": false, + "pn": false, + "dca": false, + "vendor": "GenuineIntel", + "pku": false, + "smx": false, + "cmp-legacy": false, + "avx512-4fmaps": false, + "vmcb-clean": false, + "hle": true, + "3dnowext": false, + "amd-no-ssb": false, + "npt": false, + "clwb": false, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm-lock": false, + "smep": true, + "smap": true, + "pfthreshold": false, + "x2apic": true, + "avx512vbmi": false, + "avx512vnni": false, + "flushbyasid": false, + "f16c": true, + "ace2-en": false, + "pae": true, + "pat": true, + "sse": true, + "phe-en": false, + "kvm-nopiodelay": true, + "tm": false, + "kvmclock-stable-bit": true, + "hypervisor": true, + "pcommit": false, + "syscall": true, + "avx512dq": false, + "svm": false, + "invtsc": true, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": true, + "cx8": true, + "cldemote": false, + "kvm-mmu": false, + "sse4.2": true, + "pge": true, + "avx512bitalg": false, + "pdcm": false, + "model": 94, + "movbe": true, + "nrip-save": false, + "ssse3": true, + "sse4a": false, + "invpcid": true, + "pdpe1gb": true, + "tsc-deadline": true, + "fma": true, + "cx16": true, + "de": true, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ds-cpl": false, + "ibs": false, + "fma4": false, + "la57": false, + "osvw": false, + "apic": true, + "pmm": false, + "spec-ctrl": false, + "tsc-adjust": true, + "kvm-steal-time": true, + "kvmclock": true, + "lwp": false, + "amd-ssbd": false, + "xop": false, + "ibpb": false, + "avx": true, + "acpi": false, + "avx512bw": false, + "ace2": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": false, + "popcnt": true, + "vaes": false, + "xsaves": true, + "lm": true, + "umip": false, + "pse": true, + "avx2": true, + "sep": true, + "virt-ssbd": false, + "nodeid-msr": false, + "misalignsse": false, + "min-xlevel": 2147483656, + "bmi1": true, + "bmi2": true, + "kvm-pv-unhalt": true, + "tsc-scale": false, + "topoext": true, + "clflushopt": true, + "monitor": false, + "avx512er": false, + "pmm-en": false, + "pcid": true, + "3dnow": false, + "erms": true, + "lahf-lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "xstore": false, + "rtm": true, + "kvm-hint-dedicated": false, + "lmce": true, + "perfctr-nb": false, + "rdrand": true, + "rdseed": true, + "avx512-4vnniw": false, + "vme": true, + "vmx": false, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "model-id": "Intel(R) Xeon(R) CPU E3-1245 v5 @ 3.50GHz", + "sha-ni": false, + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-52" +} + +{ + "execute": "query-cpu-model-expansion", + "arguments": { + "type": "full", + "model": { + "name": "base", + "props": { + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": true, + "intel-pt": false, + "kvm-asyncpf": true, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "avx512cd": false, + "decodeassists": false, + "sse4.1": true, + "family": 6, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "xcrypt": false, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": true, + "avx512vbmi2": false, + "cr8legacy": false, + "xcrypt-en": false, + "pn": false, + "dca": false, + "vendor": "GenuineIntel", + "pku": false, + "smx": false, + "cmp-legacy": false, + "avx512-4fmaps": false, + "vmcb-clean": false, + "hle": true, + "3dnowext": false, + "amd-no-ssb": false, + "npt": false, + "clwb": false, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm-lock": false, + "smep": true, + "smap": true, + "pfthreshold": false, + "x2apic": true, + "avx512vbmi": false, + "avx512vnni": false, + "flushbyasid": false, + "f16c": true, + "ace2-en": false, + "pae": true, + "pat": true, + "sse": true, + "phe-en": false, + "kvm-nopiodelay": true, + "tm": false, + "kvmclock-stable-bit": true, + "hypervisor": true, + "pcommit": false, + "syscall": true, + "avx512dq": false, + "svm": false, + "invtsc": true, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": true, + "cx8": true, + "cldemote": false, + "kvm-mmu": false, + "sse4.2": true, + "pge": true, + "avx512bitalg": false, + "pdcm": false, + "model": 94, + "movbe": true, + "nrip-save": false, + "ssse3": true, + "sse4a": false, + "invpcid": true, + "pdpe1gb": true, + "tsc-deadline": true, + "fma": true, + "cx16": true, + "de": true, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ds-cpl": false, + "ibs": false, + "fma4": false, + "la57": false, + "osvw": false, + "apic": true, + "pmm": false, + "spec-ctrl": false, + "tsc-adjust": true, + "kvm-steal-time": true, + "kvmclock": true, + "lwp": false, + "amd-ssbd": false, + "xop": false, + "ibpb": false, + "avx": true, + "acpi": false, + "avx512bw": false, + "ace2": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": false, + "popcnt": true, + "vaes": false, + "xsaves": true, + "lm": true, + "umip": false, + "pse": true, + "avx2": true, + "sep": true, + "virt-ssbd": false, + "nodeid-msr": false, + "misalignsse": false, + "min-xlevel": 2147483656, + "bmi1": true, + "bmi2": true, + "kvm-pv-unhalt": true, + "tsc-scale": false, + "topoext": true, + "clflushopt": true, + "monitor": false, + "avx512er": false, + "pmm-en": false, + "pcid": true, + "3dnow": false, + "erms": true, + "lahf-lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "xstore": false, + "rtm": true, + "kvm-hint-dedicated": false, + "lmce": true, + "perfctr-nb": false, + "rdrand": true, + "rdseed": true, + "avx512-4vnniw": false, + "vme": true, + "vmx": false, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "model-id": "Intel(R) Xeon(R) CPU E3-1245 v5 @ 3.50GHz", + "sha-ni": false, + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-53" +} + +{ + "return": { + "model": { + "name": "base", + "props": { + "phys-bits": 0, + "core-id": -1, + "xlevel": 2147483656, + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": true, + "intel-pt": false, + "hv-frequencies": false, + "tsc-frequency": 0, + "xd": true, + "hv-vendor-id": "", + "kvm-asyncpf": true, + "kvm_asyncpf": true, + "perfctr_core": false, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "decodeassists": false, + "avx512cd": false, + "sse4_1": true, + "sse4.1": true, + "sse4-1": true, + "family": 6, + "legacy-cache": true, + "vmware-cpuid-freq": true, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "hv-runtime": false, + "xcrypt": false, + "thread-id": -1, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "hv-relaxed": false, + "hv-crash": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": true, + "avx512vbmi2": false, + "cr8legacy": false, + "cpuid-0xb": true, + "xcrypt-en": false, + "kvm_pv_eoi": true, + "apic-id": 4294967295, + "pn": false, + "dca": false, + "vendor": "GenuineIntel", + "pku": false, + "smx": false, + "cmp_legacy": false, + "cmp-legacy": false, + "node-id": -1, + "avx512-4fmaps": false, + "vmcb_clean": false, + "vmcb-clean": false, + "3dnowext": false, + "amd-no-ssb": false, + "hle": true, + "npt": false, + "memory": "/machine/unattached/system[0]", + "clwb": false, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm_lock": false, + "svm-lock": false, + "pfthreshold": false, + "smep": true, + "smap": true, + "x2apic": true, + "avx512vbmi": false, + "avx512vnni": false, + "hv-stimer": false, + "i64": true, + "flushbyasid": false, + "f16c": true, + "ace2-en": false, + "pat": true, + "pae": true, + "sse": true, + "phe-en": false, + "kvm_nopiodelay": true, + "kvm-nopiodelay": true, + "tm": false, + "kvmclock-stable-bit": true, + "hypervisor": true, + "socket-id": -1, + "pcommit": false, + "syscall": true, + "level": 13, + "avx512dq": false, + "svm": false, + "full-cpuid-auto-level": true, + "hv-reset": false, + "invtsc": true, + "sse3": true, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": true, + "cx8": true, + "cldemote": false, + "hv-reenlightenment": false, + "kvm_mmu": false, + "kvm-mmu": false, + "sse4_2": true, + "sse4.2": true, + "sse4-2": true, + "pge": true, + "fill-mtrr-mask": true, + "avx512bitalg": false, + "nodeid_msr": false, + "pdcm": false, + "movbe": true, + "model": 94, + "nrip_save": false, + "nrip-save": false, + "kvm_pv_unhalt": true, + "ssse3": true, + "sse4a": false, + "invpcid": true, + "pdpe1gb": true, + "tsc-deadline": true, + "fma": true, + "cx16": true, + "de": true, + "enforce": false, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ibs": false, + "ds_cpl": false, + "ds-cpl": false, + "host-phys-bits": false, + "fma4": false, + "la57": false, + "osvw": false, + "check": true, + "hv-spinlocks": -1, + "pmu": false, + "pmm": false, + "apic": true, + "spec-ctrl": false, + "min-xlevel2": 0, + "tsc-adjust": true, + "tsc_adjust": true, + "kvm-steal-time": true, + "kvm_steal_time": true, + "kvmclock": true, + "l3-cache": true, + "lwp": false, + "amd-ssbd": false, + "ibpb": false, + "xop": false, + "avx": true, + "ace2": false, + "avx512bw": false, + "acpi": false, + "hv-vapic": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": false, + "vaes": false, + "popcnt": true, + "xsaves": true, + "tcg-cpuid": true, + "lm": true, + "umip": false, + "pse": true, + "avx2": true, + "sep": true, + "pclmuldq": true, + "virt-ssbd": false, + "x-hv-max-vps": -1, + "nodeid-msr": false, + "kvm": true, + "misalignsse": false, + "min-xlevel": 2147483656, + "kvm-pv-unhalt": true, + "bmi2": true, + "bmi1": true, + "realized": false, + "tsc_scale": false, + "tsc-scale": false, + "topoext": true, + "hv-vpindex": false, + "xlevel2": 0, + "clflushopt": true, + "kvm-no-smi-migration": false, + "monitor": false, + "avx512er": false, + "pmm-en": false, + "pcid": true, + "3dnow": false, + "erms": true, + "lahf-lm": true, + "lahf_lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "hv-synic": false, + "xstore": false, + "fxsr_opt": false, + "kvm-hint-dedicated": false, + "rtm": true, + "lmce": true, + "hv-time": false, + "perfctr-nb": false, + "perfctr_nb": false, + "ffxsr": false, + "hv-tlbflush": false, + "rdrand": true, + "rdseed": true, + "avx512-4vnniw": false, + "vmx": false, + "vme": true, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "pause_filter": false, + "sha-ni": false, + "model-id": "Intel(R) Xeon(R) CPU E3-1245 v5 @ 3.50GHz", + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-53" +} + +{ + "execute": "query-sev-capabilities", + "id": "libvirt-54" +} + +{ + "id": "libvirt-54", + "error": { + "class": "GenericError", + "desc": "SEV feature is not available" + } +} + +{ + "execute": "qmp_capabilities", + "id": "libvirt-1" +} + +{ + "return": { + }, + "id": "libvirt-1" +} + +{ + "execute": "query-cpu-definitions", + "id": "libvirt-2" +} + +{ + "return": [ + { + "name": "max", + "typename": "max-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": false + }, + { + "name": "host", + "typename": "host-x86_64-cpu", + "unavailable-features": [ + "kvm" + ], + "static": false, + "migration-safe": false + }, + { + "name": "base", + "typename": "base-x86_64-cpu", + "unavailable-features": [ + ], + "static": true, + "migration-safe": true + }, + { + "name": "qemu64", + "typename": "qemu64-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "qemu32", + "typename": "qemu32-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "phenom", + "typename": "phenom-x86_64-cpu", + "unavailable-features": [ + "fxsr-opt" + ], + "static": false, + "migration-safe": true + }, + { + "name": "pentium3", + "typename": "pentium3-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "pentium2", + "typename": "pentium2-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "pentium", + "typename": "pentium-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "n270", + "typename": "n270-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "kvm64", + "typename": "kvm64-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "kvm32", + "typename": "kvm32-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "coreduo", + "typename": "coreduo-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "core2duo", + "typename": "core2duo-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "athlon", + "typename": "athlon-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Westmere-IBRS", + "typename": "Westmere-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Westmere", + "typename": "Westmere-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Skylake-Server-IBRS", + "typename": "Skylake-Server-IBRS-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "hle", + "avx2", + "invpcid", + "rtm", + "avx512f", + "avx512dq", + "rdseed", + "avx512cd", + "avx512bw", + "avx512vl", + "spec-ctrl", + "3dnowprefetch", + "xsavec" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Skylake-Server", + "typename": "Skylake-Server-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "hle", + "avx2", + "invpcid", + "rtm", + "avx512f", + "avx512dq", + "rdseed", + "avx512cd", + "avx512bw", + "avx512vl", + "3dnowprefetch", + "xsavec" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Skylake-Client-IBRS", + "typename": "Skylake-Client-IBRS-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "hle", + "avx2", + "invpcid", + "rtm", + "rdseed", + "spec-ctrl", + "3dnowprefetch", + "xsavec" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Skylake-Client", + "typename": "Skylake-Client-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "hle", + "avx2", + "invpcid", + "rtm", + "rdseed", + "3dnowprefetch", + "xsavec" + ], + "static": false, + "migration-safe": true + }, + { + "name": "SandyBridge-IBRS", + "typename": "SandyBridge-IBRS-x86_64-cpu", + "unavailable-features": [ + "x2apic", + "tsc-deadline", + "avx", + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "SandyBridge", + "typename": "SandyBridge-x86_64-cpu", + "unavailable-features": [ + "x2apic", + "tsc-deadline", + "avx" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Penryn", + "typename": "Penryn-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Opteron_G5", + "typename": "Opteron_G5-x86_64-cpu", + "unavailable-features": [ + "fma", + "avx", + "f16c", + "misalignsse", + "3dnowprefetch", + "xop", + "fma4", + "tbm" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Opteron_G4", + "typename": "Opteron_G4-x86_64-cpu", + "unavailable-features": [ + "avx", + "misalignsse", + "3dnowprefetch", + "xop", + "fma4" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Opteron_G3", + "typename": "Opteron_G3-x86_64-cpu", + "unavailable-features": [ + "misalignsse" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Opteron_G2", + "typename": "Opteron_G2-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Opteron_G1", + "typename": "Opteron_G1-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Nehalem-IBRS", + "typename": "Nehalem-IBRS-x86_64-cpu", + "unavailable-features": [ + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Nehalem", + "typename": "Nehalem-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "KnightsMill", + "typename": "KnightsMill-x86_64-cpu", + "unavailable-features": [ + "fma", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "avx2", + "avx512f", + "rdseed", + "avx512pf", + "avx512er", + "avx512cd", + "avx512-vpopcntdq", + "avx512-4vnniw", + "avx512-4fmaps", + "3dnowprefetch" + ], + "static": false, + "migration-safe": true + }, + { + "name": "IvyBridge-IBRS", + "typename": "IvyBridge-IBRS-x86_64-cpu", + "unavailable-features": [ + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "IvyBridge", + "typename": "IvyBridge-x86_64-cpu", + "unavailable-features": [ + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Haswell-noTSX-IBRS", + "typename": "Haswell-noTSX-IBRS-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "avx2", + "invpcid", + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Haswell-noTSX", + "typename": "Haswell-noTSX-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "avx2", + "invpcid" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Haswell-IBRS", + "typename": "Haswell-IBRS-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "hle", + "avx2", + "invpcid", + "rtm", + "spec-ctrl" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Haswell", + "typename": "Haswell-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "hle", + "avx2", + "invpcid", + "rtm" + ], + "static": false, + "migration-safe": true + }, + { + "name": "EPYC-IBPB", + "typename": "EPYC-IBPB-x86_64-cpu", + "unavailable-features": [ + "fma", + "avx", + "f16c", + "rdrand", + "avx2", + "rdseed", + "sha-ni", + "fxsr-opt", + "misalignsse", + "3dnowprefetch", + "osvw", + "topoext", + "ibpb", + "xsavec" + ], + "static": false, + "migration-safe": true + }, + { + "name": "EPYC", + "typename": "EPYC-x86_64-cpu", + "unavailable-features": [ + "fma", + "avx", + "f16c", + "rdrand", + "avx2", + "rdseed", + "sha-ni", + "fxsr-opt", + "misalignsse", + "3dnowprefetch", + "osvw", + "topoext", + "xsavec" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Conroe", + "typename": "Conroe-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + }, + { + "name": "Broadwell-noTSX-IBRS", + "typename": "Broadwell-noTSX-IBRS-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "avx2", + "invpcid", + "rdseed", + "spec-ctrl", + "3dnowprefetch" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Broadwell-noTSX", + "typename": "Broadwell-noTSX-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "avx2", + "invpcid", + "rdseed", + "3dnowprefetch" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Broadwell-IBRS", + "typename": "Broadwell-IBRS-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "hle", + "avx2", + "invpcid", + "rtm", + "rdseed", + "spec-ctrl", + "3dnowprefetch" + ], + "static": false, + "migration-safe": true + }, + { + "name": "Broadwell", + "typename": "Broadwell-x86_64-cpu", + "unavailable-features": [ + "fma", + "pcid", + "x2apic", + "tsc-deadline", + "avx", + "f16c", + "rdrand", + "hle", + "avx2", + "invpcid", + "rtm", + "rdseed", + "3dnowprefetch" + ], + "static": false, + "migration-safe": true + }, + { + "name": "486", + "typename": "486-x86_64-cpu", + "unavailable-features": [ + ], + "static": false, + "migration-safe": true + } + ], + "id": "libvirt-2" +} + +{ + "execute": "query-cpu-model-expansion", + "arguments": { + "type": "static", + "model": { + "name": "max" + } + }, + "id": "libvirt-3" +} + +{ + "return": { + "model": { + "name": "base", + "props": { + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": false, + "intel-pt": false, + "kvm-asyncpf": false, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "avx512cd": false, + "decodeassists": false, + "sse4.1": true, + "family": 6, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "xcrypt": false, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": false, + "avx512vbmi2": false, + "cr8legacy": true, + "xcrypt-en": false, + "pn": false, + "dca": false, + "vendor": "AuthenticAMD", + "pku": true, + "smx": false, + "cmp-legacy": false, + "avx512-4fmaps": false, + "vmcb-clean": false, + "hle": false, + "3dnowext": true, + "amd-no-ssb": false, + "npt": true, + "clwb": true, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm-lock": false, + "smep": true, + "smap": true, + "pfthreshold": false, + "x2apic": false, + "avx512vbmi": false, + "avx512vnni": false, + "flushbyasid": false, + "f16c": false, + "ace2-en": false, + "pae": true, + "pat": true, + "sse": true, + "phe-en": false, + "kvm-nopiodelay": false, + "tm": false, + "kvmclock-stable-bit": false, + "hypervisor": true, + "pcommit": true, + "syscall": true, + "avx512dq": false, + "svm": true, + "invtsc": false, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": false, + "cx8": true, + "cldemote": false, + "kvm-mmu": false, + "sse4.2": true, + "pge": true, + "avx512bitalg": false, + "pdcm": false, + "model": 6, + "movbe": true, + "nrip-save": false, + "ssse3": true, + "sse4a": true, + "invpcid": false, + "pdpe1gb": true, + "tsc-deadline": false, + "fma": false, + "cx16": true, + "de": true, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ds-cpl": false, + "ibs": false, + "fma4": false, + "la57": true, + "osvw": false, + "apic": true, + "pmm": false, + "spec-ctrl": false, + "tsc-adjust": false, + "kvm-steal-time": false, + "kvmclock": false, + "lwp": false, + "amd-ssbd": false, + "xop": false, + "ibpb": false, + "avx": false, + "acpi": true, + "avx512bw": false, + "ace2": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": true, + "popcnt": true, + "vaes": false, + "xsaves": false, + "lm": true, + "umip": false, + "pse": true, + "avx2": false, + "sep": true, + "virt-ssbd": false, + "nodeid-msr": false, + "misalignsse": false, + "min-xlevel": 2147483658, + "bmi1": true, + "bmi2": true, + "kvm-pv-unhalt": false, + "tsc-scale": false, + "topoext": false, + "clflushopt": true, + "monitor": true, + "avx512er": false, + "pmm-en": false, + "pcid": false, + "3dnow": true, + "erms": true, + "lahf-lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "xstore": false, + "rtm": false, + "kvm-hint-dedicated": false, + "lmce": false, + "perfctr-nb": false, + "rdrand": false, + "rdseed": false, + "avx512-4vnniw": false, + "vme": false, + "vmx": false, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "model-id": "QEMU TCG CPU version 2.5+", + "sha-ni": false, + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-3" +} + +{ + "execute": "query-cpu-model-expansion", + "arguments": { + "type": "full", + "model": { + "name": "base", + "props": { + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": false, + "intel-pt": false, + "kvm-asyncpf": false, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "avx512cd": false, + "decodeassists": false, + "sse4.1": true, + "family": 6, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "xcrypt": false, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": false, + "avx512vbmi2": false, + "cr8legacy": true, + "xcrypt-en": false, + "pn": false, + "dca": false, + "vendor": "AuthenticAMD", + "pku": true, + "smx": false, + "cmp-legacy": false, + "avx512-4fmaps": false, + "vmcb-clean": false, + "hle": false, + "3dnowext": true, + "amd-no-ssb": false, + "npt": true, + "clwb": true, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm-lock": false, + "smep": true, + "smap": true, + "pfthreshold": false, + "x2apic": false, + "avx512vbmi": false, + "avx512vnni": false, + "flushbyasid": false, + "f16c": false, + "ace2-en": false, + "pae": true, + "pat": true, + "sse": true, + "phe-en": false, + "kvm-nopiodelay": false, + "tm": false, + "kvmclock-stable-bit": false, + "hypervisor": true, + "pcommit": true, + "syscall": true, + "avx512dq": false, + "svm": true, + "invtsc": false, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": false, + "cx8": true, + "cldemote": false, + "kvm-mmu": false, + "sse4.2": true, + "pge": true, + "avx512bitalg": false, + "pdcm": false, + "model": 6, + "movbe": true, + "nrip-save": false, + "ssse3": true, + "sse4a": true, + "invpcid": false, + "pdpe1gb": true, + "tsc-deadline": false, + "fma": false, + "cx16": true, + "de": true, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ds-cpl": false, + "ibs": false, + "fma4": false, + "la57": true, + "osvw": false, + "apic": true, + "pmm": false, + "spec-ctrl": false, + "tsc-adjust": false, + "kvm-steal-time": false, + "kvmclock": false, + "lwp": false, + "amd-ssbd": false, + "xop": false, + "ibpb": false, + "avx": false, + "acpi": true, + "avx512bw": false, + "ace2": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": true, + "popcnt": true, + "vaes": false, + "xsaves": false, + "lm": true, + "umip": false, + "pse": true, + "avx2": false, + "sep": true, + "virt-ssbd": false, + "nodeid-msr": false, + "misalignsse": false, + "min-xlevel": 2147483658, + "bmi1": true, + "bmi2": true, + "kvm-pv-unhalt": false, + "tsc-scale": false, + "topoext": false, + "clflushopt": true, + "monitor": true, + "avx512er": false, + "pmm-en": false, + "pcid": false, + "3dnow": true, + "erms": true, + "lahf-lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "xstore": false, + "rtm": false, + "kvm-hint-dedicated": false, + "lmce": false, + "perfctr-nb": false, + "rdrand": false, + "rdseed": false, + "avx512-4vnniw": false, + "vme": false, + "vmx": false, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "model-id": "QEMU TCG CPU version 2.5+", + "sha-ni": false, + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-4" +} + +{ + "return": { + "model": { + "name": "base", + "props": { + "phys-bits": 0, + "core-id": -1, + "xlevel": 2147483658, + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": false, + "intel-pt": false, + "hv-frequencies": false, + "tsc-frequency": 0, + "xd": true, + "hv-vendor-id": "", + "kvm-asyncpf": false, + "kvm_asyncpf": false, + "perfctr_core": false, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "decodeassists": false, + "avx512cd": false, + "sse4_1": true, + "sse4.1": true, + "sse4-1": true, + "family": 6, + "legacy-cache": true, + "vmware-cpuid-freq": true, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "hv-runtime": false, + "xcrypt": false, + "thread-id": -1, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "hv-relaxed": false, + "hv-crash": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": false, + "avx512vbmi2": false, + "cr8legacy": true, + "cpuid-0xb": true, + "xcrypt-en": false, + "kvm_pv_eoi": false, + "apic-id": 4294967295, + "pn": false, + "dca": false, + "vendor": "AuthenticAMD", + "pku": true, + "smx": false, + "cmp_legacy": false, + "cmp-legacy": false, + "node-id": -1, + "avx512-4fmaps": false, + "vmcb_clean": false, + "vmcb-clean": false, + "3dnowext": true, + "amd-no-ssb": false, + "hle": false, + "npt": true, + "memory": "/machine/unattached/system[0]", + "clwb": true, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm_lock": false, + "svm-lock": false, + "pfthreshold": false, + "smep": true, + "smap": true, + "x2apic": false, + "avx512vbmi": false, + "avx512vnni": false, + "hv-stimer": false, + "i64": true, + "flushbyasid": false, + "f16c": false, + "ace2-en": false, + "pat": true, + "pae": true, + "sse": true, + "phe-en": false, + "kvm_nopiodelay": false, + "kvm-nopiodelay": false, + "tm": false, + "kvmclock-stable-bit": false, + "hypervisor": true, + "socket-id": -1, + "pcommit": true, + "syscall": true, + "level": 13, + "avx512dq": false, + "svm": true, + "full-cpuid-auto-level": true, + "hv-reset": false, + "invtsc": false, + "sse3": true, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": false, + "cx8": true, + "cldemote": false, + "hv-reenlightenment": false, + "kvm_mmu": false, + "kvm-mmu": false, + "sse4_2": true, + "sse4.2": true, + "sse4-2": true, + "pge": true, + "fill-mtrr-mask": true, + "avx512bitalg": false, + "nodeid_msr": false, + "pdcm": false, + "movbe": true, + "model": 6, + "nrip_save": false, + "nrip-save": false, + "kvm_pv_unhalt": false, + "ssse3": true, + "sse4a": true, + "invpcid": false, + "pdpe1gb": true, + "tsc-deadline": false, + "fma": false, + "cx16": true, + "de": true, + "enforce": false, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ibs": false, + "ds_cpl": false, + "ds-cpl": false, + "host-phys-bits": false, + "fma4": false, + "la57": true, + "osvw": false, + "check": true, + "hv-spinlocks": -1, + "pmu": false, + "pmm": false, + "apic": true, + "spec-ctrl": false, + "min-xlevel2": 0, + "tsc-adjust": false, + "tsc_adjust": false, + "kvm-steal-time": false, + "kvm_steal_time": false, + "kvmclock": false, + "l3-cache": true, + "lwp": false, + "amd-ssbd": false, + "ibpb": false, + "xop": false, + "avx": false, + "ace2": false, + "avx512bw": false, + "acpi": true, + "hv-vapic": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": true, + "vaes": false, + "popcnt": true, + "xsaves": false, + "tcg-cpuid": true, + "lm": true, + "umip": false, + "pse": true, + "avx2": false, + "sep": true, + "pclmuldq": true, + "virt-ssbd": false, + "x-hv-max-vps": -1, + "nodeid-msr": false, + "kvm": true, + "misalignsse": false, + "min-xlevel": 2147483658, + "kvm-pv-unhalt": false, + "bmi2": true, + "bmi1": true, + "realized": false, + "tsc_scale": false, + "tsc-scale": false, + "topoext": false, + "hv-vpindex": false, + "xlevel2": 0, + "clflushopt": true, + "kvm-no-smi-migration": false, + "monitor": true, + "avx512er": false, + "pmm-en": false, + "pcid": false, + "3dnow": true, + "erms": true, + "lahf-lm": true, + "lahf_lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "hv-synic": false, + "xstore": false, + "fxsr_opt": false, + "kvm-hint-dedicated": false, + "rtm": false, + "lmce": false, + "hv-time": false, + "perfctr-nb": false, + "perfctr_nb": false, + "ffxsr": false, + "hv-tlbflush": false, + "rdrand": false, + "rdseed": false, + "avx512-4vnniw": false, + "vmx": false, + "vme": false, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "pause_filter": false, + "sha-ni": false, + "model-id": "QEMU TCG CPU version 2.5+", + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-4" +} + +{ + "execute": "query-cpu-model-expansion", + "arguments": { + "type": "static", + "model": { + "name": "max", + "props": { + "migratable": false + } + } + }, + "id": "libvirt-5" +} + +{ + "return": { + "model": { + "name": "base", + "props": { + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": false, + "intel-pt": false, + "kvm-asyncpf": false, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "avx512cd": false, + "decodeassists": false, + "sse4.1": true, + "family": 6, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "xcrypt": false, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": false, + "avx512vbmi2": false, + "cr8legacy": true, + "xcrypt-en": false, + "pn": false, + "dca": false, + "vendor": "AuthenticAMD", + "pku": true, + "smx": false, + "cmp-legacy": false, + "avx512-4fmaps": false, + "vmcb-clean": false, + "hle": false, + "3dnowext": true, + "amd-no-ssb": false, + "npt": true, + "clwb": true, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm-lock": false, + "smep": true, + "smap": true, + "pfthreshold": false, + "x2apic": false, + "avx512vbmi": false, + "avx512vnni": false, + "flushbyasid": false, + "f16c": false, + "ace2-en": false, + "pae": true, + "pat": true, + "sse": true, + "phe-en": false, + "kvm-nopiodelay": false, + "tm": false, + "kvmclock-stable-bit": false, + "hypervisor": true, + "pcommit": true, + "syscall": true, + "avx512dq": false, + "svm": true, + "invtsc": false, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": false, + "cx8": true, + "cldemote": false, + "kvm-mmu": false, + "sse4.2": true, + "pge": true, + "avx512bitalg": false, + "pdcm": false, + "model": 6, + "movbe": true, + "nrip-save": false, + "ssse3": true, + "sse4a": true, + "invpcid": false, + "pdpe1gb": true, + "tsc-deadline": false, + "fma": false, + "cx16": true, + "de": true, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ds-cpl": false, + "ibs": false, + "fma4": false, + "la57": true, + "osvw": false, + "apic": true, + "pmm": false, + "spec-ctrl": false, + "tsc-adjust": false, + "kvm-steal-time": false, + "kvmclock": false, + "lwp": false, + "amd-ssbd": false, + "xop": false, + "ibpb": false, + "avx": false, + "acpi": true, + "avx512bw": false, + "ace2": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": true, + "popcnt": true, + "vaes": false, + "xsaves": false, + "lm": true, + "umip": false, + "pse": true, + "avx2": false, + "sep": true, + "virt-ssbd": false, + "nodeid-msr": false, + "misalignsse": false, + "min-xlevel": 2147483658, + "bmi1": true, + "bmi2": true, + "kvm-pv-unhalt": false, + "tsc-scale": false, + "topoext": false, + "clflushopt": true, + "monitor": true, + "avx512er": false, + "pmm-en": false, + "pcid": false, + "3dnow": true, + "erms": true, + "lahf-lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "xstore": false, + "rtm": false, + "kvm-hint-dedicated": false, + "lmce": false, + "perfctr-nb": false, + "rdrand": false, + "rdseed": false, + "avx512-4vnniw": false, + "vme": false, + "vmx": false, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "model-id": "QEMU TCG CPU version 2.5+", + "sha-ni": false, + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-5" +} + +{ + "execute": "query-cpu-model-expansion", + "arguments": { + "type": "full", + "model": { + "name": "base", + "props": { + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": false, + "intel-pt": false, + "kvm-asyncpf": false, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "avx512cd": false, + "decodeassists": false, + "sse4.1": true, + "family": 6, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "xcrypt": false, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": false, + "avx512vbmi2": false, + "cr8legacy": true, + "xcrypt-en": false, + "pn": false, + "dca": false, + "vendor": "AuthenticAMD", + "pku": true, + "smx": false, + "cmp-legacy": false, + "avx512-4fmaps": false, + "vmcb-clean": false, + "hle": false, + "3dnowext": true, + "amd-no-ssb": false, + "npt": true, + "clwb": true, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm-lock": false, + "smep": true, + "smap": true, + "pfthreshold": false, + "x2apic": false, + "avx512vbmi": false, + "avx512vnni": false, + "flushbyasid": false, + "f16c": false, + "ace2-en": false, + "pae": true, + "pat": true, + "sse": true, + "phe-en": false, + "kvm-nopiodelay": false, + "tm": false, + "kvmclock-stable-bit": false, + "hypervisor": true, + "pcommit": true, + "syscall": true, + "avx512dq": false, + "svm": true, + "invtsc": false, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": false, + "cx8": true, + "cldemote": false, + "kvm-mmu": false, + "sse4.2": true, + "pge": true, + "avx512bitalg": false, + "pdcm": false, + "model": 6, + "movbe": true, + "nrip-save": false, + "ssse3": true, + "sse4a": true, + "invpcid": false, + "pdpe1gb": true, + "tsc-deadline": false, + "fma": false, + "cx16": true, + "de": true, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ds-cpl": false, + "ibs": false, + "fma4": false, + "la57": true, + "osvw": false, + "apic": true, + "pmm": false, + "spec-ctrl": false, + "tsc-adjust": false, + "kvm-steal-time": false, + "kvmclock": false, + "lwp": false, + "amd-ssbd": false, + "xop": false, + "ibpb": false, + "avx": false, + "acpi": true, + "avx512bw": false, + "ace2": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": true, + "popcnt": true, + "vaes": false, + "xsaves": false, + "lm": true, + "umip": false, + "pse": true, + "avx2": false, + "sep": true, + "virt-ssbd": false, + "nodeid-msr": false, + "misalignsse": false, + "min-xlevel": 2147483658, + "bmi1": true, + "bmi2": true, + "kvm-pv-unhalt": false, + "tsc-scale": false, + "topoext": false, + "clflushopt": true, + "monitor": true, + "avx512er": false, + "pmm-en": false, + "pcid": false, + "3dnow": true, + "erms": true, + "lahf-lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "xstore": false, + "rtm": false, + "kvm-hint-dedicated": false, + "lmce": false, + "perfctr-nb": false, + "rdrand": false, + "rdseed": false, + "avx512-4vnniw": false, + "vme": false, + "vmx": false, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "model-id": "QEMU TCG CPU version 2.5+", + "sha-ni": false, + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-6" +} + +{ + "return": { + "model": { + "name": "base", + "props": { + "phys-bits": 0, + "core-id": -1, + "xlevel": 2147483658, + "cmov": true, + "ia64": false, + "aes": true, + "mmx": true, + "rdpid": false, + "arat": true, + "gfni": false, + "pause-filter": false, + "xsavec": false, + "intel-pt": false, + "hv-frequencies": false, + "tsc-frequency": 0, + "xd": true, + "hv-vendor-id": "", + "kvm-asyncpf": false, + "kvm_asyncpf": false, + "perfctr_core": false, + "perfctr-core": false, + "mpx": true, + "pbe": false, + "decodeassists": false, + "avx512cd": false, + "sse4_1": true, + "sse4.1": true, + "sse4-1": true, + "family": 6, + "legacy-cache": true, + "vmware-cpuid-freq": true, + "avx512f": false, + "msr": true, + "mce": true, + "mca": true, + "hv-runtime": false, + "xcrypt": false, + "thread-id": -1, + "min-level": 13, + "xgetbv1": true, + "cid": false, + "hv-relaxed": false, + "hv-crash": false, + "ds": false, + "fxsr": true, + "xsaveopt": true, + "xtpr": false, + "avx512vl": false, + "avx512-vpopcntdq": false, + "phe": false, + "extapic": false, + "3dnowprefetch": false, + "avx512vbmi2": false, + "cr8legacy": true, + "cpuid-0xb": true, + "xcrypt-en": false, + "kvm_pv_eoi": false, + "apic-id": 4294967295, + "pn": false, + "dca": false, + "vendor": "AuthenticAMD", + "pku": true, + "smx": false, + "cmp_legacy": false, + "cmp-legacy": false, + "node-id": -1, + "avx512-4fmaps": false, + "vmcb_clean": false, + "vmcb-clean": false, + "3dnowext": true, + "amd-no-ssb": false, + "hle": false, + "npt": true, + "memory": "/machine/unattached/system[0]", + "clwb": true, + "lbrv": false, + "adx": true, + "ss": true, + "pni": true, + "svm_lock": false, + "svm-lock": false, + "pfthreshold": false, + "smep": true, + "smap": true, + "x2apic": false, + "avx512vbmi": false, + "avx512vnni": false, + "hv-stimer": false, + "i64": true, + "flushbyasid": false, + "f16c": false, + "ace2-en": false, + "pat": true, + "pae": true, + "sse": true, + "phe-en": false, + "kvm_nopiodelay": false, + "kvm-nopiodelay": false, + "tm": false, + "kvmclock-stable-bit": false, + "hypervisor": true, + "socket-id": -1, + "pcommit": true, + "syscall": true, + "level": 13, + "avx512dq": false, + "svm": true, + "full-cpuid-auto-level": true, + "hv-reset": false, + "invtsc": false, + "sse3": true, + "sse2": true, + "ssbd": false, + "est": false, + "avx512ifma": false, + "tm2": false, + "kvm-pv-eoi": false, + "cx8": true, + "cldemote": false, + "hv-reenlightenment": false, + "kvm_mmu": false, + "kvm-mmu": false, + "sse4_2": true, + "sse4.2": true, + "sse4-2": true, + "pge": true, + "fill-mtrr-mask": true, + "avx512bitalg": false, + "nodeid_msr": false, + "pdcm": false, + "movbe": true, + "model": 6, + "nrip_save": false, + "nrip-save": false, + "kvm_pv_unhalt": false, + "ssse3": true, + "sse4a": true, + "invpcid": false, + "pdpe1gb": true, + "tsc-deadline": false, + "fma": false, + "cx16": true, + "de": true, + "enforce": false, + "stepping": 3, + "xsave": true, + "clflush": true, + "skinit": false, + "tsc": true, + "tce": false, + "fpu": true, + "ibs": false, + "ds_cpl": false, + "ds-cpl": false, + "host-phys-bits": false, + "fma4": false, + "la57": true, + "osvw": false, + "check": true, + "hv-spinlocks": -1, + "pmu": false, + "pmm": false, + "apic": true, + "spec-ctrl": false, + "min-xlevel2": 0, + "tsc-adjust": false, + "tsc_adjust": false, + "kvm-steal-time": false, + "kvm_steal_time": false, + "kvmclock": false, + "l3-cache": true, + "lwp": false, + "amd-ssbd": false, + "ibpb": false, + "xop": false, + "avx": false, + "ace2": false, + "avx512bw": false, + "acpi": true, + "hv-vapic": false, + "fsgsbase": true, + "ht": false, + "nx": true, + "pclmulqdq": true, + "mmxext": true, + "vaes": false, + "popcnt": true, + "xsaves": false, + "tcg-cpuid": true, + "lm": true, + "umip": false, + "pse": true, + "avx2": false, + "sep": true, + "pclmuldq": true, + "virt-ssbd": false, + "x-hv-max-vps": -1, + "nodeid-msr": false, + "kvm": true, + "misalignsse": false, + "min-xlevel": 2147483658, + "kvm-pv-unhalt": false, + "bmi2": true, + "bmi1": true, + "realized": false, + "tsc_scale": false, + "tsc-scale": false, + "topoext": false, + "hv-vpindex": false, + "xlevel2": 0, + "clflushopt": true, + "kvm-no-smi-migration": false, + "monitor": true, + "avx512er": false, + "pmm-en": false, + "pcid": false, + "3dnow": true, + "erms": true, + "lahf-lm": true, + "lahf_lm": true, + "vpclmulqdq": false, + "fxsr-opt": false, + "hv-synic": false, + "xstore": false, + "fxsr_opt": false, + "kvm-hint-dedicated": false, + "rtm": false, + "lmce": false, + "hv-time": false, + "perfctr-nb": false, + "perfctr_nb": false, + "ffxsr": false, + "hv-tlbflush": false, + "rdrand": false, + "rdseed": false, + "avx512-4vnniw": false, + "vmx": false, + "vme": false, + "dtes64": false, + "mtrr": true, + "rdtscp": true, + "pse36": true, + "kvm-pv-tlb-flush": false, + "tbm": false, + "wdt": false, + "pause_filter": false, + "sha-ni": false, + "model-id": "QEMU TCG CPU version 2.5+", + "abm": true, + "avx512pf": false, + "xstore-en": false + } + } + }, + "id": "libvirt-6" +} diff --git a/tests/qemucapabilitiesdata/caps_3.0.0.x86_64.xml b/tests/qemuc= apabilitiesdata/caps_3.0.0.x86_64.xml new file mode 100644 index 0000000000..07e3de8677 --- /dev/null +++ b/tests/qemucapabilitiesdata/caps_3.0.0.x86_64.xml @@ -0,0 +1,1213 @@ + + 0 + 0 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2012050 + 0 + 437827 + v2.12.0-2284-gab3257c281 + x86_64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/qemucapabilitiestest.c b/tests/qemucapabilitiestest.c index 43f2bcfbc8..0813672537 100644 --- a/tests/qemucapabilitiestest.c +++ b/tests/qemucapabilitiestest.c @@ -175,6 +175,7 @@ mymain(void) DO_TEST("x86_64", "caps_2.9.0"); DO_TEST("x86_64", "caps_2.10.0"); DO_TEST("x86_64", "caps_2.12.0"); + DO_TEST("x86_64", "caps_3.0.0"); DO_TEST("aarch64", "caps_2.6.0"); DO_TEST("aarch64", "caps_2.10.0"); DO_TEST("aarch64", "caps_2.12.0"); --=20 2.16.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri Apr 26 19:59:41 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1531145109778589.8013080314596; Mon, 9 Jul 2018 07:05:09 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id F1FEE3082A4C; Mon, 9 Jul 2018 14:05:07 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 9C3EE19482; Mon, 9 Jul 2018 14:05:07 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id F365741091; Mon, 9 Jul 2018 14:05:06 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id w69E4tm4001264 for ; Mon, 9 Jul 2018 10:04:56 -0400 Received: by smtp.corp.redhat.com (Postfix) id C7AAC111DCEB; Mon, 9 Jul 2018 14:04:55 +0000 (UTC) Received: from angien.brq.redhat.com (unknown [10.43.2.136]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6C0BE111DCE8 for ; Mon, 9 Jul 2018 14:04:55 +0000 (UTC) From: Peter Krempa To: libvir-list@redhat.com Date: Mon, 9 Jul 2018 16:12:39 +0200 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.78 on 10.11.54.3 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 4/4] qemu: block: Add support for RBD authentication for blockdev X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.45]); Mon, 09 Jul 2018 14:05:08 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" To allow using -blockdev with RBD we need to support the recently added RBD authentication. Signed-off-by: Peter Krempa Reviewed-by: J=EF=BF=BDn Tomko --- I must say that it looks quite fishy that we use also the "none" method as acceptable but we've done so for a very long time. src/qemu/qemu_block.c | 26 ++++++++++++++++++= +++- .../network-qcow2-backing-chain-cache-unsafe.json | 5 +++++ ...etwork-qcow2-backing-chain-encryption_auth.json | 5 +++++ 3 files changed, 35 insertions(+), 1 deletion(-) diff --git a/src/qemu/qemu_block.c b/src/qemu/qemu_block.c index 0ebf2d2aff..7ad79c7e7d 100644 --- a/src/qemu/qemu_block.c +++ b/src/qemu/qemu_block.c @@ -906,13 +906,33 @@ qemuBlockStorageSourceGetRBDProps(virStorageSourcePtr= src) virJSONValuePtr servers =3D NULL; virJSONValuePtr ret =3D NULL; const char *username =3D NULL; + virJSONValuePtr authmodes =3D NULL; + virJSONValuePtr mode =3D NULL; + const char *keysecret =3D NULL; if (src->nhosts > 0 && !(servers =3D qemuBlockStorageSourceBuildHostsJSONInetSocketAddres= s(src))) return NULL; - if (src->auth) + if (src->auth) { username =3D srcPriv->secinfo->s.aes.username; + keysecret =3D srcPriv->secinfo->s.aes.alias; + /* the auth modes are modelled after our old command line generato= r */ + if (!(authmodes =3D virJSONValueNewArray())) + goto cleanup; + + if (!(mode =3D virJSONValueNewString("cephx")) || + virJSONValueArrayAppend(authmodes, mode) < 0) + goto cleanup; + + mode =3D NULL; + + if (!(mode =3D virJSONValueNewString("none")) || + virJSONValueArrayAppend(authmodes, mode) < 0) + goto cleanup; + + mode =3D NULL; + } if (virJSONValueObjectCreate(&ret, "s:driver", "rbd", @@ -922,10 +942,14 @@ qemuBlockStorageSourceGetRBDProps(virStorageSourcePtr= src) "S:conf", src->configFile, "A:server", &servers, "S:user", username, + "A:auth-client-required", &authmodes, + "S:key-secret", keysecret, NULL) < 0) goto cleanup; cleanup: + virJSONValueFree(authmodes); + virJSONValueFree(mode); virJSONValueFree(servers); return ret; } diff --git a/tests/qemublocktestdata/xml2json/network-qcow2-backing-chain-c= ache-unsafe.json b/tests/qemublocktestdata/xml2json/network-qcow2-backing-c= hain-cache-unsafe.json index 80a694eee4..e66f62d24b 100644 --- a/tests/qemublocktestdata/xml2json/network-qcow2-backing-chain-cache-un= safe.json +++ b/tests/qemublocktestdata/xml2json/network-qcow2-backing-chain-cache-un= safe.json @@ -24,6 +24,11 @@ } ], "user": "testuser-rbd", + "auth-client-required": [ + "cephx", + "none" + ], + "key-secret": "node-a-s-secalias", "node-name": "node-a-s", "cache": { "direct": false, diff --git a/tests/qemublocktestdata/xml2json/network-qcow2-backing-chain-e= ncryption_auth.json b/tests/qemublocktestdata/xml2json/network-qcow2-backin= g-chain-encryption_auth.json index fdb6f2ab1a..921cb3ea69 100644 --- a/tests/qemublocktestdata/xml2json/network-qcow2-backing-chain-encrypti= on_auth.json +++ b/tests/qemublocktestdata/xml2json/network-qcow2-backing-chain-encrypti= on_auth.json @@ -24,6 +24,11 @@ } ], "user": "testuser-rbd", + "auth-client-required": [ + "cephx", + "none" + ], + "key-secret": "node-a-s-secalias", "node-name": "node-a-s", "read-only": false, "discard": "unmap" --=20 2.16.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list