mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 21:30:22 -07:00
Refactor E-Series AMG module to use module_utils (#20871)
* Refactor E-Series AMG module to use module_utils Refactor the NetApp E-Series module to utlize the common module_utils and doc_fragments. * Resolve a PEP8 issue with a missing newline * Resolve compatibility issue with json import
This commit is contained in:
parent
53c73ae836
commit
56dd5a702d
3 changed files with 96 additions and 64 deletions
|
@ -77,3 +77,32 @@ notes:
|
|||
- The modules prefixed with C(sf\_) are built to support the SolidFire storage platform.
|
||||
|
||||
"""
|
||||
|
||||
|
||||
# Documentation fragment for E-Series
|
||||
ESERIES = """
|
||||
options:
|
||||
api_username:
|
||||
required: true
|
||||
description:
|
||||
- The username to authenticate with the SANtricity WebServices Proxy or embedded REST API.
|
||||
api_password:
|
||||
required: true
|
||||
description:
|
||||
- The password to authenticate with the SANtricity WebServices Proxy or embedded REST API.
|
||||
api_url:
|
||||
required: true
|
||||
description:
|
||||
- The url to the SANtricity WebServices Proxy or embedded REST API.
|
||||
example:
|
||||
- https://prod-1.wahoo.acme.com/devmgr/v2
|
||||
validate_certs:
|
||||
required: false
|
||||
default: true
|
||||
description:
|
||||
- Should https certificates be validated?
|
||||
ssid:
|
||||
required: true
|
||||
description:
|
||||
- The ID of the array to manage. This value must be unique for each array.
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue