1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-22 05:09:12 +00: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:
Alexei Znamensky 2025-08-01 08:45:12 +12:00 committed by GitHub
parent 0f7cd5473f
commit 5601ef4c57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
37 changed files with 146 additions and 113 deletions

View file

@ -482,8 +482,8 @@ def main():
argument_spec = dict(
name=dict(required=True, type='str'),
description=dict(required=True, type='str'),
parent_id=dict(required=False, type='int'),
parent=dict(required=False, type='str'),
parent_id=dict(type='int'),
parent=dict(type='str'),
state=dict(choices=['absent', 'present'], default='present'),
quotas=dict(type='dict', default={})
)