summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/doc_fragments/hpe3par.py
blob: c3527b40cb068f50e9d20a4d493bcb928cfb8555 (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
# Copyright: (c) 2018, Hewlett Packard Enterprise Development LP
# GNU General Public License v3.0+
# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)


class ModuleDocFragment(object):

    # HPE 3PAR doc fragment
    DOCUMENTATION = '''
options:
    storage_system_ip:
      description:
        - The storage system IP address.
      required: true
    storage_system_password:
      description:
        - The storage system password.
      required: true
    storage_system_username:
      description:
        - The storage system user name.
      required: true

requirements:
  - hpe3par_sdk >= 1.0.2. Install using 'pip install hpe3par_sdk'
  - WSAPI service should be enabled on the 3PAR storage array.
notes:
  -  check_mode not supported
    '''