Skip to content

Commit

Permalink
qmp-commands: move 'query-version' doc to schema
Browse files Browse the repository at this point in the history
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
  • Loading branch information
elmarco authored and Markus Armbruster committed Jan 16, 2017
1 parent 5fba0a7 commit dd746af
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 27 deletions.
27 changes: 0 additions & 27 deletions docs/qmp-commands.txt
Expand Up @@ -209,33 +209,6 @@ Note: This command must be issued before issuing any other command.
=================


query-version
-------------

Show QEMU version.

Return a json-object with the following information:

- "qemu": A json-object containing three integer values:
- "major": QEMU's major version (json-int)
- "minor": QEMU's minor version (json-int)
- "micro": QEMU's micro version (json-int)
- "package": package's version (json-string)

Example:

-> { "execute": "query-version" }
<- {
"return":{
"qemu":{
"major":0,
"minor":11,
"micro":5
},
"package":""
}
}

query-commands
--------------

Expand Down
15 changes: 15 additions & 0 deletions qapi/common.json
Expand Up @@ -77,6 +77,21 @@
# Returns: A @VersionInfo object describing the current version of QEMU.
#
# Since: 0.14.0
#
# Example:
#
# -> { "execute": "query-version" }
# <- {
# "return":{
# "qemu":{
# "major":0,
# "minor":11,
# "micro":5
# },
# "package":""
# }
# }
#
##
{ 'command': 'query-version', 'returns': 'VersionInfo' }

Expand Down

0 comments on commit dd746af

Please sign in to comment.