File tree Expand file tree Collapse file tree 1 file changed +16
-8
lines changed
docs/docsite/rst/reference_appendices Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Ansible modules in Python.
1010
1111
1212AnsibleModule
13- --------------
13+ =============
1414
1515To use this functionality, include ``from ansible.module_utils.basic import AnsibleModule `` in your module.
1616
@@ -19,35 +19,43 @@ To use this functionality, include ``from ansible.module_utils.basic import Ansi
1919 :noindex:
2020
2121Basic
22- ------
22+ =====
2323
2424To use this functionality, include ``import ansible.module_utils.basic `` in your module.
2525
2626.. automodule :: ansible.module_utils.basic
2727 :members:
2828
2929
30+ PluginInfo
31+ ==========
32+
33+ To use this functionality, include ``from ansible.module_utils.common.messages import PluginInfo `` in your module.
34+
35+ .. autoclass :: ansible.module_utils.common.messages.PluginInfo
36+ :members:
37+
3038Argument Spec
31- ---------------------
39+ =============
3240
3341Classes and functions for validating parameters against an argument spec.
3442
3543ArgumentSpecValidator
36- =====================
44+ ---------------------
3745
3846.. autoclass :: ansible.module_utils.common.arg_spec.ArgumentSpecValidator
3947 :members:
4048
4149ValidationResult
42- ================
50+ ----------------
4351
4452.. autoclass :: ansible.module_utils.common.arg_spec.ValidationResult
4553 :members:
4654 :member-order: bysource
4755 :private-members: _no_log_values # This only works in sphinx >= 3.2. Otherwise it shows all private members with doc strings.
4856
4957Parameters
50- ==========
58+ ----------
5159
5260.. automodule :: ansible.module_utils.common.parameters
5361 :members:
@@ -58,7 +66,7 @@ Parameters
5866 used to check that type, :func: `~ansible.module_utils.common.validation.check_type_str ` in this case.
5967
6068Validation
61- ==========
69+ ----------
6270
6371Standalone functions for validating various parameter types.
6472
@@ -67,7 +75,7 @@ Standalone functions for validating various parameter types.
6775
6876
6977Errors
70- ------
78+ ======
7179
7280.. automodule :: ansible.module_utils.errors
7381 :members:
You can’t perform that action at this time.
0 commit comments