mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
Python
71 lines
1.6 KiB
Python
4 years ago
|
#!/usr/bin/python
|
||
|
from __future__ import absolute_import, division, print_function
|
||
|
__metaclass__ = type
|
||
|
|
||
|
|
||
|
DOCUMENTATION = '''
|
||
|
---
|
||
|
module: test_docs_suboptions
|
||
|
short_description: Test module
|
||
|
description:
|
||
|
- Test module
|
||
|
author:
|
||
|
- Ansible Core Team
|
||
|
options:
|
||
|
with_suboptions:
|
||
|
description:
|
||
|
- An option with suboptions.
|
||
|
- Use with care.
|
||
|
type: dict
|
||
|
suboptions:
|
||
|
z_last:
|
||
|
description: The last suboption.
|
||
|
type: str
|
||
|
m_middle:
|
||
|
description:
|
||
|
- The suboption in the middle.
|
||
|
- Has its own suboptions.
|
||
|
suboptions:
|
||
|
a_suboption:
|
||
|
description: A sub-suboption.
|
||
|
type: str
|
||
|
a_first:
|
||
|
description: The first suboption.
|
||
|
type: str
|
||
|
'''
|
||
|
|
||
|
EXAMPLES = '''
|
||
|
'''
|
||
|
|
||
|
RETURN = '''
|
||
|
'''
|
||
|
|
||
|
|
||
|
from ansible.module_utils.basic import AnsibleModule
|
||
|
|
||
|
|
||
|
def main():
|
||
|
module = AnsibleModule(
|
||
|
argument_spec=dict(
|
||
|
test_docs_suboptions=dict(
|
||
|
type='dict',
|
||
|
options=dict(
|
||
|
a_first=dict(type='str'),
|
||
|
m_middle=dict(
|
||
|
type='dict',
|
||
|
options=dict(
|
||
|
a_suboption=dict(type='str')
|
||
|
),
|
||
|
),
|
||
|
z_last=dict(type='str'),
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
)
|
||
|
|
||
|
module.exit_json()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|