diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:52:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:52:35 +0000 |
commit | 7fec0b69a082aaeec72fee0612766aa42f6b1b4d (patch) | |
tree | efb569b86ca4da888717f5433e757145fa322e08 /ansible_collections/dellemc/powerflex/docs/modules/volume.rst | |
parent | Releasing progress-linux version 7.7.0+dfsg-3~progress7.99u1. (diff) | |
download | ansible-7fec0b69a082aaeec72fee0612766aa42f6b1b4d.tar.xz ansible-7fec0b69a082aaeec72fee0612766aa42f6b1b4d.zip |
Merging upstream version 9.4.0+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/dellemc/powerflex/docs/modules/volume.rst')
-rw-r--r-- | ansible_collections/dellemc/powerflex/docs/modules/volume.rst | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/ansible_collections/dellemc/powerflex/docs/modules/volume.rst b/ansible_collections/dellemc/powerflex/docs/modules/volume.rst index 10cf8de84..f3345a6d1 100644 --- a/ansible_collections/dellemc/powerflex/docs/modules/volume.rst +++ b/ansible_collections/dellemc/powerflex/docs/modules/volume.rst @@ -22,9 +22,9 @@ Requirements ------------ The below requirements are needed on the host that executes this module. -- A Dell PowerFlex storage system version 3.5 or later. -- Ansible-core 2.12 or later. -- PyPowerFlex 1.6.0. +- A Dell PowerFlex storage system version 3.6 or later. +- Ansible-core 2.14 or later. +- PyPowerFlex 1.9.0. - Python 3.9, 3.10 or 3.11. @@ -133,7 +133,7 @@ Parameters allow_multiple_mappings (optional, bool, None) Specifies whether to allow or not allow multiple mappings. - If the volume is mapped to one SDC then for every new mapping *allow_multiple_mappings* has to be passed as True. + If the volume is mapped to one SDC then for every new mapping *allow_multiple_mappings* has to be passed as true. sdc (optional, list, None) @@ -188,13 +188,13 @@ Parameters delete_snapshots (optional, bool, None) - If ``True``, the volume and all its dependent snapshots will be deleted. + If ``true``, the volume and all its dependent snapshots will be deleted. - If ``False``, only the volume will be deleted. + If ``false``, only the volume will be deleted. It can be specified only when the *state* is ``absent``. - It defaults to ``False``, if not specified. + It defaults to ``false``, if not specified. state (True, str, None) @@ -262,7 +262,7 @@ Examples protection_domain_name: "pd_1" vol_type: "THICK_PROVISIONED" compression_type: "NORMAL" - use_rmcache: True + use_rmcache: true size: 16 state: "present" @@ -274,7 +274,7 @@ Examples validate_certs: "{{validate_certs}}" port: "{{port}}" vol_name: "sample_volume" - allow_multiple_mappings: True + allow_multiple_mappings: true sdc: - sdc_id: "92A304DB-EFD7-44DF-A07E-D78134CC9764" access_mode: "READ_WRITE" @@ -310,7 +310,7 @@ Examples iops_limit: 20 - sdc_ip: "198.10.xxx.xxx" access_mode: "READ_ONLY" - allow_multiple_mappings: True + allow_multiple_mappings: true sdc_state: "mapped" state: "present" @@ -345,7 +345,7 @@ Examples validate_certs: "{{validate_certs}}" port: "{{port}}" vol_name: "sample_volume" - delete_snapshots: False + delete_snapshots: false state: "absent" - name: Delete the Volume and all its dependent snapshots @@ -356,7 +356,7 @@ Examples validate_certs: "{{validate_certs}}" port: "{{port}}" vol_name: "sample_volume" - delete_snapshots: True + delete_snapshots: true state: "absent" |