mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Use semantic markup (modules r-s) (#6683)
* Use semantic markup. * Use 'ignore:' for alias reference. * Ignore sanity errors for older ansible-core versions. * Improve markup for RHSM modules. Co-authored-by: Pino Toscano <ptoscano@redhat.com> * 'ignore:' is no longer needed. * E() now works better. --------- Co-authored-by: Pino Toscano <ptoscano@redhat.com>
This commit is contained in:
@@ -36,46 +36,46 @@ options:
|
||||
required: true
|
||||
version:
|
||||
description:
|
||||
- SNMP Version to use, C(v2), C(v2c) or C(v3).
|
||||
- SNMP Version to use, V(v2), V(v2c) or V(v3).
|
||||
type: str
|
||||
required: true
|
||||
choices: [ v2, v2c, v3 ]
|
||||
community:
|
||||
description:
|
||||
- The SNMP community string, required if I(version) is C(v2) or C(v2c).
|
||||
- The SNMP community string, required if O(version) is V(v2) or V(v2c).
|
||||
type: str
|
||||
level:
|
||||
description:
|
||||
- Authentication level.
|
||||
- Required if I(version) is C(v3).
|
||||
- Required if O(version=v3).
|
||||
type: str
|
||||
choices: [ authNoPriv, authPriv ]
|
||||
username:
|
||||
description:
|
||||
- Username for SNMPv3.
|
||||
- Required if I(version) is C(v3).
|
||||
- Required if O(version=v3).
|
||||
type: str
|
||||
integrity:
|
||||
description:
|
||||
- Hashing algorithm.
|
||||
- Required if I(version) is C(v3).
|
||||
- Required if O(version=v3).
|
||||
type: str
|
||||
choices: [ md5, sha ]
|
||||
authkey:
|
||||
description:
|
||||
- Authentication key.
|
||||
- Required I(version) is C(v3).
|
||||
- Required O(version=v3).
|
||||
type: str
|
||||
privacy:
|
||||
description:
|
||||
- Encryption algorithm.
|
||||
- Required if I(level) is C(authPriv).
|
||||
- Required if O(level=authPriv).
|
||||
type: str
|
||||
choices: [ aes, des ]
|
||||
privkey:
|
||||
description:
|
||||
- Encryption key.
|
||||
- Required if I(level) is C(authPriv).
|
||||
- Required if O(level=authPriv).
|
||||
type: str
|
||||
timeout:
|
||||
description:
|
||||
@@ -137,7 +137,7 @@ ansible_sysname:
|
||||
type: str
|
||||
sample: ubuntu-user
|
||||
ansible_syslocation:
|
||||
description: The physical location of this node (e.g., C(telephone closet, 3rd floor)).
|
||||
description: The physical location of this node (for example, V(telephone closet, 3rd floor)).
|
||||
returned: success
|
||||
type: str
|
||||
sample: Sitting on the Dock of the Bay
|
||||
|
||||
Reference in New Issue
Block a user