mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-21 01:41:25 -07:00
adds sdk_root parameter
This commit is contained in:
parent
de6f740af8
commit
97b07eebba
3 changed files with 31 additions and 6 deletions
|
@ -8,7 +8,8 @@ class AndroidSdk(StateModuleHelper):
|
|||
argument_spec=dict(
|
||||
state=dict(type='str', default='present', choices=['present', 'absent', 'latest']),
|
||||
package=dict(type='list', elements='str', aliases=['pkg', 'name']),
|
||||
update=dict(type='bool', default=False)
|
||||
update=dict(type='bool', default=False),
|
||||
sdk_root=dict(type='path')
|
||||
),
|
||||
supports_check_mode=True
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue