mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00: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:
@@ -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.
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user