2020-03-09 10:11:07 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2022-08-05 12:28:29 +02:00
|
|
|
# Copyright (c) 2018, IBM CORPORATION
|
2020-03-09 10:11:07 +01:00
|
|
|
# Author(s): Tzur Eliyahu <tzure@il.ibm.com>
|
2022-08-05 12:28:29 +02:00
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
|
|
|
class ModuleDocFragment(object):
|
|
|
|
|
|
|
|
# ibm_storage documentation fragment
|
|
|
|
DOCUMENTATION = r'''
|
|
|
|
options:
|
|
|
|
username:
|
|
|
|
description:
|
|
|
|
- Management user on the spectrum accelerate storage system.
|
|
|
|
type: str
|
2022-09-06 20:42:17 +02:00
|
|
|
required: true
|
2020-03-09 10:11:07 +01:00
|
|
|
password:
|
|
|
|
description:
|
|
|
|
- Password for username on the spectrum accelerate storage system.
|
|
|
|
type: str
|
2022-09-06 20:42:17 +02:00
|
|
|
required: true
|
2020-03-09 10:11:07 +01:00
|
|
|
endpoints:
|
|
|
|
description:
|
|
|
|
- The hostname or management IP of Spectrum Accelerate storage system.
|
|
|
|
type: str
|
2022-09-06 20:42:17 +02:00
|
|
|
required: true
|
2020-03-09 10:11:07 +01:00
|
|
|
notes:
|
|
|
|
- This module requires pyxcli python library.
|
2023-11-22 09:13:33 +01:00
|
|
|
Use C(pip install pyxcli) in order to get pyxcli.
|
2020-03-09 10:11:07 +01:00
|
|
|
requirements:
|
|
|
|
- pyxcli
|
|
|
|
'''
|