collection 교체

This commit is contained in:
정훈 변
2024-02-23 16:37:40 +09:00
parent b494779b5b
commit 3fd554eee9
38862 changed files with 220204 additions and 6600073 deletions

View File

@@ -1,7 +1,8 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright: (c) 2020, Adam Vaughan (@adamvaughan) avaughan@pagerduty.com
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
# Copyright (c) 2020, Adam Vaughan (@adamvaughan) avaughan@pagerduty.com
# 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
from __future__ import absolute_import, division, print_function
__metaclass__ = type
@@ -18,6 +19,15 @@ author:
- Adam Vaughan (@adamvaughan)
requirements:
- PagerDuty integration key
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
details:
- Check mode simply does nothing except returning C(changed=true) in case the O(url) seems to be correct.
diff_mode:
support: none
options:
integration_key:
description:
@@ -51,7 +61,7 @@ options:
type: str
environment:
description:
- The environment name, typically C(production), C(staging), etc.
- The environment name, typically V(production), V(staging), and so on.
required: false
type: str
link_url:
@@ -72,13 +82,11 @@ options:
type: str
validate_certs:
description:
- If C(no), SSL certificates for the target URL will not be validated.
- If V(false), SSL certificates for the target URL will not be validated.
This should only be used on personally controlled sites using self-signed certificates.
required: false
default: yes
default: true
type: bool
notes:
- Supports C(check_mode). Note that check mode simply does nothing except returning C(changed=true) in case the I(url) seems to be correct.
'''
EXAMPLES = '''