mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
win_reg_stat actually sets properties to be a dictionary, not a list (#31252)
This commit is contained in:
parent
bba941cd5b
commit
8f62be7b7c
1 changed files with 4 additions and 4 deletions
|
@ -73,10 +73,10 @@ exists:
|
|||
type: boolean
|
||||
sample: True
|
||||
properties:
|
||||
description: A list of all the properties and their values in the key.
|
||||
description: A dictionary containing all the properties and their values in the registry key.
|
||||
returned: success, path exists and property not specified
|
||||
type: list
|
||||
sample: [
|
||||
type: dict
|
||||
sample: {
|
||||
"binary_property" : {
|
||||
"raw_value": ["0x01", "0x16"],
|
||||
"type": "REG_BINARY",
|
||||
|
@ -87,7 +87,7 @@ properties:
|
|||
"type": "REG_MULTI_SZ",
|
||||
"value": ["a", "b"]
|
||||
}
|
||||
]
|
||||
}
|
||||
sub_keys:
|
||||
description: A list of all the sub keys of the key specified.
|
||||
returned: success, path exists and property not specified
|
||||
|
|
Loading…
Reference in a new issue