2020-03-09 10:11:07 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright (C) 2017 Lenovo, Inc.
|
2022-08-05 12:28:29 +02:00
|
|
|
# Simplified BSD License (see LICENSES/BSD-2-Clause.txt or https://opensource.org/licenses/BSD-2-Clause)
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-06-24 21:50:36 +02:00
|
|
|
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
class ModuleDocFragment(object):
|
|
|
|
# Standard Pylxca documentation fragment
|
|
|
|
DOCUMENTATION = r'''
|
|
|
|
author:
|
|
|
|
- Naval Patel (@navalkp)
|
|
|
|
- Prashant Bhosale (@prabhosa)
|
|
|
|
|
|
|
|
options:
|
|
|
|
login_user:
|
|
|
|
description:
|
|
|
|
- The username for use in HTTP basic authentication.
|
|
|
|
type: str
|
|
|
|
required: true
|
|
|
|
|
|
|
|
login_password:
|
|
|
|
description:
|
|
|
|
- The password for use in HTTP basic authentication.
|
|
|
|
type: str
|
|
|
|
required: true
|
|
|
|
|
|
|
|
auth_url:
|
|
|
|
description:
|
2023-11-22 09:13:33 +01:00
|
|
|
- lxca HTTPS full web address.
|
2020-03-09 10:11:07 +01:00
|
|
|
type: str
|
|
|
|
required: true
|
|
|
|
|
|
|
|
requirements:
|
|
|
|
- pylxca
|
|
|
|
|
|
|
|
notes:
|
2023-11-22 09:13:33 +01:00
|
|
|
- Additional detail about pylxca can be found at U(https://github.com/lenovo/pylxca).
|
|
|
|
- Playbooks using these modules can be found at U(https://github.com/lenovo/ansible.lenovo-lxca).
|
2020-03-09 10:11:07 +01:00
|
|
|
'''
|