summary refs log tree commit diff stats
path: root/docs/qmp-commands.txt
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/qmp-commands.txt
parentd071f6be51932ac30d0d585f74e38f9c8f6be769 (diff)
downloadfocaccia-qemu-6517192b160363f9f24c7f05a0f7f88c5a1be114.tar.gz
focaccia-qemu-6517192b160363f9f24c7f05a0f7f88c5a1be114.zip
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/qmp-commands.txt')
-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 9e26cfe970..397b3d6397 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
 ----------