summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-test-docker/ansible_collections/ns/col/plugins/modules/win_util_args.py
blob: ed49f4ea815f9f448b540651c1a3ed3d6615f3ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/python
# -*- coding: utf-8 -*-

# Copyright (c) 2020 Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)


ANSIBLE_METADATA = {'metadata_version': '1.1',
                    'status': ['stableinterface'],
                    'supported_by': 'core'}

DOCUMENTATION = r'''
---
module: win_util_args
short_description: Short description
description:
- Some test description for the module
options:
  my_opt:
    description:
    - Test description
    required: yes
    type: str
extends_documentation_fragment:
- ns.col.ps_util

author:
- Ansible Test (@ansible)
'''

EXAMPLES = r'''
- win_util_args:
    option1: test
    my_opt: test
'''

RETURN = r'''
#
'''