diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 13:22:37 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:15:28 +0100 |
commit | 01387ae5604d9ef26f25134b3bf266c341b9e973 (patch) | |
tree | 8981445f461be1930cd5b6929d7068d69542f9d3 /qapi-schema.json | |
parent | 342816b975ec263b7663f7d2e025ed5b7fc1dc13 (diff) |
qmp-commands: move 'change' 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 398e5d3eda..e7c14b994d 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -2874,6 +2874,23 @@ # change-vnc-password. # # Since: 0.14.0 +# +# Example: +# +# 1. Change a removable medium +# +# -> { "execute": "change", +# "arguments": { "device": "ide1-cd0", +# "target": "/srv/images/Fedora-12-x86_64-DVD.iso" } } +# <- { "return": {} } +# +# 2. Change VNC password +# +# -> { "execute": "change", +# "arguments": { "device": "vnc", "target": "password", +# "arg": "foobar1" } } +# <- { "return": {} } +# ## { 'command': 'change', 'data': {'device': 'str', 'target': 'str', '*arg': 'str'} } |