Server IP : 85.214.239.14 / Your IP : 52.14.229.130 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/dellemc/powerflex/plugins/doc_fragments/ |
Upload File : |
# 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 PowerFlex DOCUMENTATION = r''' options: hostname: required: true description: - IP or FQDN of the PowerFlex host. type: str aliases: - gateway_host username: type: str required: true description: - The username of the PowerFlex host. password: type: str required: true description: - The password of the PowerFlex host. 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 PowerFlex host. type: int default: 443 timeout: description: - Time after which connection will get terminated. - It is to be mentioned in seconds. type: int required: False default: 120 requirements: - A Dell PowerFlex storage system version 3.5 or later. - Ansible-core 2.12 or later. - PyPowerFlex 1.6.0. - Python 3.9, 3.10 or 3.11. notes: - The modules present in the collection named as 'dellemc.powerflex' are built to support the Dell PowerFlex storage platform. '''