diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 15:07:40 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:19:46 +0100 |
commit | b31177b028c7f2f5e84f267b40802118476a7645 (patch) | |
tree | 9ff6135fe7077d4200f9224fa3d7dd62fb7b5a37 /qapi | |
parent | bfeafc9c532cb2f94a5ad10d3070fcd3805dadc8 (diff) | |
download | qemu-b31177b028c7f2f5e84f267b40802118476a7645.zip |
qmp-commands: move 'blockdev-snapshot-delete-internal-sync' 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')
-rw-r--r-- | qapi/block.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/qapi/block.json b/qapi/block.json index 2e08b35769..bc27e20328 100644 --- a/qapi/block.json +++ b/qapi/block.json @@ -135,6 +135,24 @@ # If @id and @name are both not specified, GenericError # # Since: 1.7 +# +# Example: +# +# -> { "execute": "blockdev-snapshot-delete-internal-sync", +# "arguments": { "device": "ide-hd0", +# "name": "snapshot0" } +# } +# <- { "return": { +# "id": "1", +# "name": "snapshot0", +# "vm-state-size": 0, +# "date-sec": 1000012, +# "date-nsec": 10, +# "vm-clock-sec": 100, +# "vm-clock-nsec": 20 +# } +# } +# ## { 'command': 'blockdev-snapshot-delete-internal-sync', 'data': { 'device': 'str', '*id': 'str', '*name': 'str'}, |