community.general.ss_3par_cpg module – Manage HPE StoreServ 3PAR CPG
Note
This module is part of the community.general collection (version 10.7.5).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.general.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.general.ss_3par_cpg.
Synopsis
- Create and delete CPG on HPE 3PAR. 
Requirements
The below requirements are needed on the host that executes this module.
- hpe3par_sdk >= 1.0.2. Install using - pip install hpe3par_sdk.
- WSAPI service should be enabled on the 3PAR storage array. 
Parameters
| Parameter | Comments | 
|---|---|
| Name of the CPG. | |
| Specifies that physical disks must have the specified device type. Choices: 
 | |
| Specifies the name of the domain in which the object will reside. | |
| Specifies the growth increment(in MiB, GiB or TiB) the amount of logical disk storage created on each auto-grow operation. | |
| Specifies that the autogrow operation is limited to the specified storage amount that sets the growth limit(in MiB, GiB or TiB). | |
| Specifies that the threshold(in MiB, GiB or TiB) of used logical disk space when exceeded results in a warning alert. | |
| Specifies that the layout must support the failure of one port pair, one cage, or one magazine. Choices: 
 | |
| Specifies the RAID type for the logical disk. Choices: 
 | |
| Specifies whether the certificate needs to be validated while communicating. Choices: 
 | |
| Specifies the set size in the number of chunklets. | |
| Whether the specified CPG should exist or not. Choices: 
 | |
| The storage system IP address. | |
| The storage system password. | |
| The storage system user name. | 
Attributes
| Attribute | Support | Description | 
|---|---|---|
| Support: none | Can run in  | |
| Support: none | Will return details on what has changed (or possibly needs changing in  | 
Examples
- name: Create CPG sample_cpg
  community.general.ss_3par_cpg:
    storage_system_ip: 10.10.10.1
    storage_system_username: username
    storage_system_password: password
    state: present
    cpg_name: sample_cpg
    domain: sample_domain
    growth_increment: 32000 MiB
    growth_limit: 64000 MiB
    growth_warning: 48000 MiB
    raid_type: R6
    set_size: 8
    high_availability: MAG
    disk_type: FC
    secure: false
- name: Delete CPG sample_cpg
  community.general.ss_3par_cpg:
    storage_system_ip: 10.10.10.1
    storage_system_username: username
    storage_system_password: password
    state: absent
    cpg_name: sample_cpg
    secure: false
