diff options
author | Rao, Lei <lei.rao@intel.com> | 2021-11-22 15:49:46 +0800 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2021-11-22 15:02:38 +0100 |
commit | 8f75cae2dda8a55eb3a6c712bd22b18a90c0a5ac (patch) | |
tree | aaa68974a54589d5e224aad5314322d4ad9674d0 /docs/system/authz.rst | |
parent | b980c1aec63908074040e5cab135728e3b5db117 (diff) | |
download | qemu-8f75cae2dda8a55eb3a6c712bd22b18a90c0a5ac.zip qemu-8f75cae2dda8a55eb3a6c712bd22b18a90c0a5ac.tar.gz qemu-8f75cae2dda8a55eb3a6c712bd22b18a90c0a5ac.tar.bz2 |
docs: Drop deprecated 'props' from object-add
In commit 5024340745 "qapi/qom: Drop deprecated 'props' from
object-add" (v6.0.0), we also should update documents.
Signed-off-by: Lei Rao <lei.rao@intel.com>
Message-Id: <1637567387-28250-1-git-send-email-lei.rao@intel.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'docs/system/authz.rst')
-rw-r--r-- | docs/system/authz.rst | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/docs/system/authz.rst b/docs/system/authz.rst index 942af39..55b7315 100644 --- a/docs/system/authz.rst +++ b/docs/system/authz.rst @@ -77,9 +77,7 @@ To create an instance of this driver via QMP: "arguments": { "qom-type": "authz-simple", "id": "authz0", - "props": { - "identity": "fred" - } + "identity": "fred" } } @@ -110,15 +108,13 @@ To create an instance of this class via QMP: "arguments": { "qom-type": "authz-list", "id": "authz0", - "props": { - "rules": [ - { "match": "fred", "policy": "allow", "format": "exact" }, - { "match": "bob", "policy": "allow", "format": "exact" }, - { "match": "danb", "policy": "deny", "format": "exact" }, - { "match": "dan*", "policy": "allow", "format": "glob" } - ], - "policy": "deny" - } + "rules": [ + { "match": "fred", "policy": "allow", "format": "exact" }, + { "match": "bob", "policy": "allow", "format": "exact" }, + { "match": "danb", "policy": "deny", "format": "exact" }, + { "match": "dan*", "policy": "allow", "format": "glob" } + ], + "policy": "deny" } } @@ -143,10 +139,8 @@ To create an instance of this class via QMP: "arguments": { "qom-type": "authz-list-file", "id": "authz0", - "props": { - "filename": "/etc/qemu/myvm-vnc.acl", - "refresh": true - } + "filename": "/etc/qemu/myvm-vnc.acl", + "refresh": true } } |