diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 10:18:23 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:15:26 +0100 |
commit | 66c2f5a56ce1a1b85b133ad39ee7cc1a599126cf (patch) | |
tree | 758a973ef3c48c72302cb9fbf72422ba73c3c8d5 /qapi-schema.json | |
parent | 4f19a01b3e066b56bf22d83ff12d840c9a213dff (diff) | |
download | qemu-66c2f5a56ce1a1b85b133ad39ee7cc1a599126cf.zip |
qmp-commands: move 'query-events' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index dfd3299774..b621528f85 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -479,6 +479,23 @@ # 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'] } |