diff options
Diffstat (limited to 'qapi/block.json')
-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'}, |