mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-13 16:40:50 -07:00
[PR #9351/4b23e5ec backport][stable-9] s[o-y]*: normalize docs (#9368)
s[o-y]*: normalize docs (#9351)
* s[o-y]*: normalize docs
* Apply suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/modules/spectrum_model_attrs.py
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 4b23e5ecff
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
e120c64a21
commit
595c105a29
20 changed files with 994 additions and 1174 deletions
|
@ -9,8 +9,7 @@ from __future__ import absolute_import, division, print_function
|
|||
__metaclass__ = type
|
||||
|
||||
|
||||
DOCUMENTATION = r'''
|
||||
---
|
||||
DOCUMENTATION = r"""
|
||||
short_description: Manage HPE StoreServ 3PAR CPG
|
||||
author:
|
||||
- Farhan Nomani (@farhan7500)
|
||||
|
@ -43,18 +42,15 @@ options:
|
|||
type: str
|
||||
growth_increment:
|
||||
description:
|
||||
- Specifies the growth increment(in MiB, GiB or TiB) the amount of logical disk storage
|
||||
created on each auto-grow operation.
|
||||
- Specifies the growth increment(in MiB, GiB or TiB) the amount of logical disk storage created on each auto-grow operation.
|
||||
type: str
|
||||
growth_limit:
|
||||
description:
|
||||
- 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 autogrow operation is limited to the specified storage amount that sets the growth limit(in MiB, GiB or TiB).
|
||||
type: str
|
||||
growth_warning:
|
||||
description:
|
||||
- Specifies that the threshold(in MiB, GiB or TiB) of used logical disk space when exceeded
|
||||
results in a warning alert.
|
||||
- Specifies that the threshold(in MiB, GiB or TiB) of used logical disk space when exceeded results in a warning alert.
|
||||
type: str
|
||||
high_availability:
|
||||
choices:
|
||||
|
@ -62,8 +58,7 @@ options:
|
|||
- CAGE
|
||||
- MAG
|
||||
description:
|
||||
- Specifies that the layout must support the failure of one port pair,
|
||||
one cage, or one magazine.
|
||||
- Specifies that the layout must support the failure of one port pair, one cage, or one magazine.
|
||||
type: str
|
||||
raid_type:
|
||||
choices:
|
||||
|
@ -92,13 +87,12 @@ options:
|
|||
type: bool
|
||||
default: false
|
||||
extends_documentation_fragment:
|
||||
- community.general.hpe3par
|
||||
- community.general.attributes
|
||||
|
||||
'''
|
||||
- community.general.hpe3par
|
||||
- community.general.attributes
|
||||
"""
|
||||
|
||||
|
||||
EXAMPLES = r'''
|
||||
EXAMPLES = r"""
|
||||
- name: Create CPG sample_cpg
|
||||
community.general.ss_3par_cpg:
|
||||
storage_system_ip: 10.10.10.1
|
||||
|
@ -124,10 +118,10 @@ EXAMPLES = r'''
|
|||
state: absent
|
||||
cpg_name: sample_cpg
|
||||
secure: false
|
||||
'''
|
||||
"""
|
||||
|
||||
RETURN = r'''
|
||||
'''
|
||||
RETURN = r"""
|
||||
"""
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible_collections.community.general.plugins.module_utils.storage.hpe3par import hpe3par
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue