Convert to reduced list of known types (#50010)

This commit is contained in:
Dag Wieers 2018-12-18 22:25:30 +01:00 committed by Jordan Borean
commit 05c6ff79f9
908 changed files with 4822 additions and 4821 deletions

View file

@ -53,12 +53,12 @@ RETURN = r'''
changed:
description: Whether anything was changed.
returned: always
type: boolean
type: bool
sample: True
exists:
description: States whether the registry key/property exists.
returned: success and path/property exists
type: boolean
type: bool
sample: True
properties:
description: A dictionary containing all the properties and their values in the registry key.
@ -89,16 +89,16 @@ raw_value:
description: Returns the raw value of the registry property, REG_EXPAND_SZ has no string expansion, REG_BINARY or REG_NONE is in hex 0x format.
REG_NONE, this value is a hex string in the 0x format.
returned: success, path/property exists and property specified
type: string
type: str
sample: '%ProgramDir%\\Common Files'
type:
description: The property type.
returned: success, path/property exists and property specified
type: string
type: str
sample: "REG_EXPAND_SZ"
value:
description: The value of the property.
returned: success, path/property exists and property specified
type: string
type: str
sample: 'C:\\Program Files\\Common Files'
'''