2020-03-09 10:11:07 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2022-08-08 14:24:58 +02:00
|
|
|
# Copyright (c) Ansible project
|
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
|
|
|
|
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 files documentation fragment
|
|
|
|
DOCUMENTATION = r'''
|
|
|
|
options:
|
|
|
|
api_url:
|
|
|
|
description:
|
2023-11-22 09:13:33 +01:00
|
|
|
- The resolvable endpoint for the API.
|
2020-03-09 10:11:07 +01:00
|
|
|
type: str
|
|
|
|
api_username:
|
|
|
|
description:
|
2023-11-22 09:13:33 +01:00
|
|
|
- The username to use for authentication against the API.
|
2020-03-09 10:11:07 +01:00
|
|
|
type: str
|
|
|
|
api_password:
|
|
|
|
description:
|
2023-11-22 09:13:33 +01:00
|
|
|
- The password to use for authentication against the API.
|
2020-03-09 10:11:07 +01:00
|
|
|
type: str
|
|
|
|
validate_certs:
|
|
|
|
description:
|
2023-11-22 09:13:33 +01:00
|
|
|
- Whether or not to validate SSL certs when supplying a HTTPS endpoint.
|
2020-03-09 10:11:07 +01:00
|
|
|
type: bool
|
2022-08-24 19:58:42 +02:00
|
|
|
default: true
|
2020-03-09 10:11:07 +01:00
|
|
|
'''
|