Signed-off-by: Marc-André Lureau <[email protected]>
---
docs/qmp-commands.txt | 17 -----------------
qapi-schema.json | 7 +++++++
2 files changed, 7 insertions(+), 17 deletions(-)
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt
index 0bc2b1a..ff83ea2 100644
--- a/docs/qmp-commands.txt
+++ b/docs/qmp-commands.txt
@@ -193,23 +193,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
----------
diff --git a/qapi-schema.json b/qapi-schema.json
index 23da2d9..f9528eb 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -3295,6 +3295,13 @@
# Error if @qom-type is not a valid class name
#
# Since: 2.0
+#
+# Example:
+#
+# -> { "execute": "object-add", "arguments": { "qom-type": "rng-random", "id":
"rng1",
+# "props": { "filename": "/dev/hwrng" } } }
+# <- { "return": {} }
+#
##
{ 'command': 'object-add',
'data': {'qom-type': 'str', 'id': 'str', '*props': 'any'} }
--
2.10.0