summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/doc_fragments/action_common_attributes.py
blob: f9081ea31bcb51338a97046e280427965c1da97b (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
40
# -*- coding: utf-8 -*-
# Copyright: Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type


# NOTE: this file is here to allow modules using the new attributes feature to
#       work w/o errors in this version of ansible, it does NOT provide the full
#       attributes feature, just a shim to avoid the fragment not being found.

class ModuleDocFragment(object):

    # Standard documentation fragment
    DOCUMENTATION = r'''
options: {}
'''

    ACTIONGROUPS = r'''
options: {}
'''

    CONN = r'''
options: {}
'''

    FACTS = r'''
options: {}
'''

    FILES = r'''
options: {}
'''

    FLOW = r'''
options: {}
'''
    RAW = r'''
options: {}
'''