aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-06-23 13:34:37 +0200
committerMarkus Armbruster <armbru@redhat.com>2017-01-16 09:15:29 +0100
commit6517192b160363f9f24c7f05a0f7f88c5a1be114 (patch)
tree4830f92f1b24911b74da03d09f4b930284e39892 /docs
parentd071f6be51932ac30d0d585f74e38f9c8f6be769 (diff)
downloadqemu-6517192b160363f9f24c7f05a0f7f88c5a1be114.zip
qemu-6517192b160363f9f24c7f05a0f7f88c5a1be114.tar.gz
qemu-6517192b160363f9f24c7f05a0f7f88c5a1be114.tar.bz2
qmp-commands: move 'object-add' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/qmp-commands.txt17
1 files changed, 0 insertions, 17 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt
index 9e26cfe..397b3d6 100644
--- a/docs/qmp-commands.txt
+++ b/docs/qmp-commands.txt
@@ -205,23 +205,6 @@ Example:
<- { "return": { "status": "active", "completed": 1024000,
"total": 2048000 } }
-object-add
-----------
-
-Create QOM object.
-
-Arguments:
-
-- "qom-type": the object's QOM type, i.e. the class name (json-string)
-- "id": the object's ID, must be unique (json-string)
-- "props": a dictionary of object property values (optional, json-dict)
-
-Example:
-
--> { "execute": "object-add", "arguments": { "qom-type": "rng-random", "id": "rng1",
- "props": { "filename": "/dev/hwrng" } } }
-<- { "return": {} }
-
object-del
----------