qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 10/30] qmp-commands: move 'query-events' doc to sche


From: Marc-André Lureau
Subject: [Qemu-devel] [PATCH 10/30] qmp-commands: move 'query-events' doc to schema
Date: Tue, 13 Sep 2016 17:01:49 +0400

Signed-off-by: Marc-André Lureau <address@hidden>
---
 docs/qmp-commands.txt | 28 ----------------------------
 qapi-schema.json      | 19 ++++++++++++++++++-
 2 files changed, 18 insertions(+), 29 deletions(-)

diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt
index 4d1907a..1daa4ed 100644
--- a/docs/qmp-commands.txt
+++ b/docs/qmp-commands.txt
@@ -1590,34 +1590,6 @@ Example:
 
 Note: This example has been shortened as the real response is too long.
 
-query-events
---------------
-
-List QMP available events.
-
-Each event is represented by a json-object, the returned value is a json-array
-of all events.
-
-Each json-object contains:
-
-- "name": event's name (json-string)
-
-Example:
-
--> { "execute": "query-events" }
-<- {
-      "return":[
-         {
-            "name":"SHUTDOWN"
-         },
-         {
-            "name":"RESET"
-         }
-      ]
-   }
-
-Note: This example has been shortened as the real response is too long.
-
 query-qmp-schema
 ----------------
 
diff --git a/qapi-schema.json b/qapi-schema.json
index 45aa6b8..15354b0 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -464,11 +464,28 @@
 ##
 # @query-events:
 #
-# Return a list of supported QMP events by this server
+# Return a list of supported QMP events by this server.
 #
 # Returns: A list of @EventInfo for all supported events
 #
 # Since: 1.2.0
+#
+# Example:
+#
+# -> { "execute": "query-events" }
+# <- {
+#       "return":[
+#          {
+#             "name":"SHUTDOWN"
+#          },
+#          {
+#             "name":"RESET"
+#          }
+#       ]
+#    }
+#
+# Note: This example has been shortened as the real response is too long.
+#
 ##
 { 'command': 'query-events', 'returns': ['EventInfo'] }
 
-- 
2.10.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]