mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Copyright (c) 2019, René Moser <mail@renemoser.net>
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
|
||
|
from __future__ import absolute_import, division, print_function
|
||
|
__metaclass__ = type
|
||
|
|
||
|
|
||
|
class ModuleDocFragment(object):
|
||
|
|
||
|
# Standard cloudstack documentation fragment
|
||
|
DOCUMENTATION = '''
|
||
|
options:
|
||
|
api_token:
|
||
|
description:
|
||
|
- cloudscale.ch API token.
|
||
|
- This can also be passed in the C(CLOUDSCALE_API_TOKEN) environment variable.
|
||
|
type: str
|
||
|
api_timeout:
|
||
|
description:
|
||
|
- Timeout in seconds for calls to the cloudscale.ch API.
|
||
|
default: 30
|
||
|
type: int
|
||
|
notes:
|
||
|
- Instead of the api_token parameter the C(CLOUDSCALE_API_TOKEN) environment variable can be used.
|
||
|
- All operations are performed using the cloudscale.ch public API v1.
|
||
|
- "For details consult the full API documentation: U(https://www.cloudscale.ch/en/api/v1)."
|
||
|
- A valid API token is required for all operations. You can create as many tokens as you like using the cloudscale.ch control panel at
|
||
|
U(https://control.cloudscale.ch).
|
||
|
'''
|