mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 11:17:05 +00:00
arg_spec adjustments: modules [o-s]* (#10512)
* arg_spec adjustments: modules [o-s]* * add changelog frag
This commit is contained in:
parent
5601ef4c57
commit
3bb7a77b14
42 changed files with 210 additions and 205 deletions
|
|
@ -143,11 +143,11 @@ def main():
|
|||
redis_auth_args = redis_auth_argument_spec()
|
||||
module_args = dict(
|
||||
key=dict(type='str', required=True, no_log=False),
|
||||
value=dict(type='str', required=False),
|
||||
expiration=dict(type='int', required=False),
|
||||
non_existing=dict(type='bool', required=False),
|
||||
existing=dict(type='bool', required=False),
|
||||
keep_ttl=dict(type='bool', required=False),
|
||||
value=dict(type='str'),
|
||||
expiration=dict(type='int'),
|
||||
non_existing=dict(type='bool'),
|
||||
existing=dict(type='bool'),
|
||||
keep_ttl=dict(type='bool'),
|
||||
state=dict(type='str', default='present',
|
||||
choices=['present', 'absent']),
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue