summaryrefslogtreecommitdiffstats
path: root/ansible_collections/dellemc/unity/plugins/doc_fragments
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:04:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:04:41 +0000
commit975f66f2eebe9dadba04f275774d4ab83f74cf25 (patch)
tree89bd26a93aaae6a25749145b7e4bca4a1e75b2be /ansible_collections/dellemc/unity/plugins/doc_fragments
parentInitial commit. (diff)
downloadansible-975f66f2eebe9dadba04f275774d4ab83f74cf25.tar.xz
ansible-975f66f2eebe9dadba04f275774d4ab83f74cf25.zip
Adding upstream version 7.7.0+dfsg.upstream/7.7.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/dellemc/unity/plugins/doc_fragments')
-rw-r--r--ansible_collections/dellemc/unity/plugins/doc_fragments/unity.py53
1 files changed, 53 insertions, 0 deletions
diff --git a/ansible_collections/dellemc/unity/plugins/doc_fragments/unity.py b/ansible_collections/dellemc/unity/plugins/doc_fragments/unity.py
new file mode 100644
index 000000000..1ebc7f40f
--- /dev/null
+++ b/ansible_collections/dellemc/unity/plugins/doc_fragments/unity.py
@@ -0,0 +1,53 @@
+# Copyright: (c) 2020, Dell Technologies.
+# Apache License version 2.0 (see MODULE-LICENSE or http://www.apache.org/licenses/LICENSE-2.0.txt)
+
+from __future__ import absolute_import, division, print_function
+__metaclass__ = type
+
+
+class ModuleDocFragment(object):
+
+ # Documentation fragment for Unity (unity)
+ DOCUMENTATION = r'''
+ options:
+ unispherehost:
+ required: true
+ description:
+ - IP or FQDN of the Unity management server.
+ type: str
+ username:
+ type: str
+ required: true
+ description:
+ - The username of the Unity management server.
+ password:
+ type: str
+ required: true
+ description:
+ - The password of the Unity management server.
+ validate_certs:
+ type: bool
+ default: true
+ aliases:
+ - verifycert
+ description:
+ - Boolean variable to specify whether or not to validate SSL
+ certificate.
+ - C(true) - Indicates that the SSL certificate should be verified.
+ - C(false) - Indicates that the SSL certificate should not be
+ verified.
+ port:
+ description:
+ - Port number through which communication happens with Unity
+ management server.
+ type: int
+ default: 443
+ requirements:
+ - A Dell Unity Storage device version 5.1 or later.
+ - Ansible-core 2.12 or later.
+ - Python 3.9, 3.10 or 3.11.
+ - Storops Python SDK 1.2.11.
+ notes:
+ - The modules present in this collection named as 'dellemc.unity'
+ are built to support the Dell Unity storage platform.
+'''