mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-05 07:54:00 -07:00
arg_spec adjustments: modules [k-n]* (#10507)
* arg_spec adjustments: modules [k-n]* * adjust lxca tests * add changelog frag
This commit is contained in:
parent
0f7cd5473f
commit
5601ef4c57
37 changed files with 146 additions and 113 deletions
|
@ -160,12 +160,12 @@ def main():
|
|||
argument_spec=dict(
|
||||
user=dict(required=True),
|
||||
api_key=dict(required=True, no_log=True),
|
||||
name=dict(required=False),
|
||||
name=dict(),
|
||||
title=dict(required=True),
|
||||
source=dict(required=False),
|
||||
description=dict(required=False),
|
||||
start_time=dict(required=False, default=None, type='int'),
|
||||
end_time=dict(required=False, default=None, type='int'),
|
||||
source=dict(),
|
||||
description=dict(),
|
||||
start_time=dict(type='int'),
|
||||
end_time=dict(type='int'),
|
||||
links=dict(type='list', elements='dict')
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue