2020-03-09 10:11:07 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2022-08-05 12:28:29 +02:00
|
|
|
# Copyright (c) 2016, Dimension Data
|
|
|
|
# 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
|
|
|
# Authors:
|
|
|
|
# - Adam Friedman <tintoy@tintoy.io>
|
|
|
|
|
|
|
|
|
|
|
|
class ModuleDocFragment(object):
|
|
|
|
|
|
|
|
# Dimension Data ("wait-for-completion" parameters) doc fragment
|
|
|
|
DOCUMENTATION = r'''
|
|
|
|
|
|
|
|
options:
|
|
|
|
wait:
|
|
|
|
description:
|
|
|
|
- Should we wait for the task to complete before moving onto the next.
|
|
|
|
type: bool
|
2022-08-24 19:58:42 +02:00
|
|
|
default: false
|
2020-03-09 10:11:07 +01:00
|
|
|
wait_time:
|
|
|
|
description:
|
|
|
|
- The maximum amount of time (in seconds) to wait for the task to complete.
|
2023-06-10 09:28:40 +02:00
|
|
|
- Only applicable if O(wait=true).
|
2020-03-09 10:11:07 +01:00
|
|
|
type: int
|
|
|
|
default: 600
|
|
|
|
wait_poll_interval:
|
|
|
|
description:
|
|
|
|
- The amount of time (in seconds) to wait between checks for task completion.
|
2023-06-10 09:28:40 +02:00
|
|
|
- Only applicable if O(wait=true).
|
2020-03-09 10:11:07 +01:00
|
|
|
type: int
|
|
|
|
default: 2
|
|
|
|
'''
|