mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
hpe3par document type (#52992)
* Update lib/ansible/modules/storage/hpe3par/ss_3par_cpg.py Co-Authored-By: gundalow <john@johnrbarker.com>
This commit is contained in:
parent
66eb301cd3
commit
6e74816516
2 changed files with 14 additions and 1 deletions
|
@ -26,6 +26,7 @@ options:
|
||||||
cpg_name:
|
cpg_name:
|
||||||
description:
|
description:
|
||||||
- Name of the CPG.
|
- Name of the CPG.
|
||||||
|
type: str
|
||||||
required: true
|
required: true
|
||||||
disk_type:
|
disk_type:
|
||||||
choices:
|
choices:
|
||||||
|
@ -34,21 +35,26 @@ options:
|
||||||
- SSD
|
- SSD
|
||||||
description:
|
description:
|
||||||
- Specifies that physical disks must have the specified device type.
|
- Specifies that physical disks must have the specified device type.
|
||||||
|
type: str
|
||||||
domain:
|
domain:
|
||||||
description:
|
description:
|
||||||
- Specifies the name of the domain in which the object will reside.
|
- Specifies the name of the domain in which the object will reside.
|
||||||
|
type: str
|
||||||
growth_increment:
|
growth_increment:
|
||||||
description:
|
description:
|
||||||
- Specifies the growth increment(in MiB, GiB or TiB) the amount of logical disk storage
|
- Specifies the growth increment(in MiB, GiB or TiB) the amount of logical disk storage
|
||||||
created on each auto-grow operation.
|
created on each auto-grow operation.
|
||||||
|
type: str
|
||||||
growth_limit:
|
growth_limit:
|
||||||
description:
|
description:
|
||||||
- Specifies that the autogrow operation is limited to the specified
|
- Specifies that the autogrow operation is limited to the specified
|
||||||
storage amount that sets the growth limit(in MiB, GiB or TiB).
|
storage amount that sets the growth limit(in MiB, GiB or TiB).
|
||||||
|
type: str
|
||||||
growth_warning:
|
growth_warning:
|
||||||
description:
|
description:
|
||||||
- Specifies that the threshold(in MiB, GiB or TiB) of used logical disk space when exceeded
|
- Specifies that the threshold(in MiB, GiB or TiB) of used logical disk space when exceeded
|
||||||
results in a warning alert.
|
results in a warning alert.
|
||||||
|
type: str
|
||||||
high_availability:
|
high_availability:
|
||||||
choices:
|
choices:
|
||||||
- PORT
|
- PORT
|
||||||
|
@ -57,6 +63,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Specifies that the layout must support the failure of one port pair,
|
- Specifies that the layout must support the failure of one port pair,
|
||||||
one cage, or one magazine.
|
one cage, or one magazine.
|
||||||
|
type: str
|
||||||
raid_type:
|
raid_type:
|
||||||
choices:
|
choices:
|
||||||
- R0
|
- R0
|
||||||
|
@ -65,9 +72,11 @@ options:
|
||||||
- R6
|
- R6
|
||||||
description:
|
description:
|
||||||
- Specifies the RAID type for the logical disk.
|
- Specifies the RAID type for the logical disk.
|
||||||
|
type: str
|
||||||
set_size:
|
set_size:
|
||||||
description:
|
description:
|
||||||
- Specifies the set size in the number of chunklets.
|
- Specifies the set size in the number of chunklets.
|
||||||
|
type: int
|
||||||
state:
|
state:
|
||||||
choices:
|
choices:
|
||||||
- present
|
- present
|
||||||
|
@ -75,13 +84,14 @@ options:
|
||||||
description:
|
description:
|
||||||
- Whether the specified CPG should exist or not.
|
- Whether the specified CPG should exist or not.
|
||||||
required: true
|
required: true
|
||||||
|
type: str
|
||||||
secure:
|
secure:
|
||||||
description:
|
description:
|
||||||
- Specifies whether the certificate needs to be validated while communicating.
|
- Specifies whether the certificate needs to be validated while communicating.
|
||||||
type: bool
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
extends_documentation_fragment: hpe3par
|
extends_documentation_fragment: hpe3par
|
||||||
version_added: 2.8
|
version_added: '2.8'
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -11,14 +11,17 @@ options:
|
||||||
storage_system_ip:
|
storage_system_ip:
|
||||||
description:
|
description:
|
||||||
- The storage system IP address.
|
- The storage system IP address.
|
||||||
|
type: str
|
||||||
required: true
|
required: true
|
||||||
storage_system_password:
|
storage_system_password:
|
||||||
description:
|
description:
|
||||||
- The storage system password.
|
- The storage system password.
|
||||||
|
type: str
|
||||||
required: true
|
required: true
|
||||||
storage_system_username:
|
storage_system_username:
|
||||||
description:
|
description:
|
||||||
- The storage system user name.
|
- The storage system user name.
|
||||||
|
type: str
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
requirements:
|
requirements:
|
||||||
|
|
Loading…
Reference in a new issue