diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 10:30:37 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:15:26 +0100 |
commit | cf56cfad3ca963fef0f2856217d19f2e13ed1c90 (patch) | |
tree | 7af88095a7261f9dd1f975adf9ae5c05eeaf8030 /qapi-schema.json | |
parent | 35db41e5dcf8b9bad6751be41d1cc87aa2272a55 (diff) |
qmp-commands: move 'query-migrate-parameters' 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 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index a03a98b7c9..4381ee3efe 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -1024,6 +1024,21 @@ # Returns: @MigrationParameters # # Since: 2.4 +# +# Example: +# +# -> { "execute": "query-migrate-parameters" } +# <- { "return": { +# "decompress-threads": 2, +# "cpu-throttle-increment": 10, +# "compress-threads": 8, +# "compress-level": 1, +# "cpu-throttle-initial": 20, +# "max-bandwidth": 33554432, +# "downtime-limit": 300 +# } +# } +# ## { 'command': 'query-migrate-parameters', 'returns': 'MigrationParameters' } |