mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 19:26:58 +00:00
deprecate oneandone modules (#10994)
* deprecate oneandone modules * add mod util to runtime.yml * add changelog frag * change deprecation version to 13.0.0 * change deprecation version to 13.0.0 in readme.yml as well * Update changelogs/fragments/10994-oneandone-deprecation.yml Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
6829a064a5
commit
c889a4cb6d
9 changed files with 66 additions and 0 deletions
8
changelogs/fragments/10994-oneandone-deprecation.yml
Normal file
8
changelogs/fragments/10994-oneandone-deprecation.yml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
deprecated_features:
|
||||
- oneandone module utils - DNS fails to resolve the API endpoint used by the module. The module is deprecated and will be removed in community.general 12.0.0 (https://github.com/ansible-collections/community.general/pull/10994).
|
||||
- oneandone_firewall_policy - DNS fails to resolve the API endpoint used by the module. The module is deprecated and will be removed in community.general 12.0.0 (https://github.com/ansible-collections/community.general/pull/10994).
|
||||
- oneandone_load_balancer - DNS fails to resolve the API endpoint used by the module. The module is deprecated and will be removed in community.general 12.0.0 (https://github.com/ansible-collections/community.general/pull/10994).
|
||||
- oneandone_monitoring_policy - DNS fails to resolve the API endpoint used by the module. The module is deprecated and will be removed in community.general 12.0.0 (https://github.com/ansible-collections/community.general/pull/10994).
|
||||
- oneandone_private_network - DNS fails to resolve the API endpoint used by the module. The module is deprecated and will be removed in community.general 12.0.0 (https://github.com/ansible-collections/community.general/pull/10994).
|
||||
- oneandone_public_ip - DNS fails to resolve the API endpoint used by the module. The module is deprecated and will be removed in community.general 12.0.0 (https://github.com/ansible-collections/community.general/pull/10994).
|
||||
- oneandone_server - DNS fails to resolve the API endpoint used by the module. The module is deprecated and will be removed in community.general 12.0.0 (https://github.com/ansible-collections/community.general/pull/10994).
|
||||
|
|
@ -501,6 +501,30 @@ plugin_routing:
|
|||
tombstone:
|
||||
removal_version: 3.0.0
|
||||
warning_text: Use community.general.one_image_info instead.
|
||||
oneandone_firewall_policy:
|
||||
deprecation:
|
||||
removal_version: 13.0.0
|
||||
warning_text: DNS fails to resolve the API endpoint used by the module.
|
||||
oneandone_load_balancer:
|
||||
deprecation:
|
||||
removal_version: 13.0.0
|
||||
warning_text: DNS fails to resolve the API endpoint used by the module.
|
||||
oneandone_monitoring_policy:
|
||||
deprecation:
|
||||
removal_version: 13.0.0
|
||||
warning_text: DNS fails to resolve the API endpoint used by the module.
|
||||
oneandone_private_network:
|
||||
deprecation:
|
||||
removal_version: 13.0.0
|
||||
warning_text: DNS fails to resolve the API endpoint used by the module.
|
||||
oneandone_public_ip:
|
||||
deprecation:
|
||||
removal_version: 13.0.0
|
||||
warning_text: DNS fails to resolve the API endpoint used by the module.
|
||||
oneandone_server:
|
||||
deprecation:
|
||||
removal_version: 13.0.0
|
||||
warning_text: DNS fails to resolve the API endpoint used by the module.
|
||||
onepassword_facts:
|
||||
tombstone:
|
||||
removal_version: 3.0.0
|
||||
|
|
@ -1133,6 +1157,10 @@ plugin_routing:
|
|||
deprecation:
|
||||
removal_version: 13.0.0
|
||||
warning_text: Code is unmaintained here and official Oracle collection is available for a number of years.
|
||||
oneandone:
|
||||
deprecation:
|
||||
removal_version: 13.0.0
|
||||
warning_text: DNS fails to resolve the API endpoint used by the module.
|
||||
postgresql:
|
||||
redirect: community.postgresql.postgresql
|
||||
proxmox:
|
||||
|
|
|
|||
|
|
@ -6,6 +6,12 @@ from __future__ import annotations
|
|||
|
||||
import time
|
||||
|
||||
#
|
||||
# DEPRECATED
|
||||
#
|
||||
# This module utils is deprecated and will be removed in community.general 13.0.0
|
||||
#
|
||||
|
||||
|
||||
class OneAndOneResources:
|
||||
firewall_policy = 'firewall_policy'
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@ module: oneandone_firewall_policy
|
|||
short_description: Configure 1&1 firewall policy
|
||||
description:
|
||||
- Create, remove, reconfigure, update firewall policies. This module has a dependency on 1and1 >= 1.0.
|
||||
deprecated:
|
||||
removed_in: 13.0.0
|
||||
why: DNS fails to resolve the API endpoint used by the module.
|
||||
alternative: There is none.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@ module: oneandone_load_balancer
|
|||
short_description: Configure 1&1 load balancer
|
||||
description:
|
||||
- Create, remove, update load balancers. This module has a dependency on 1and1 >= 1.0.
|
||||
deprecated:
|
||||
removed_in: 13.0.0
|
||||
why: DNS fails to resolve the API endpoint used by the module.
|
||||
alternative: There is none.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
|
|
|
|||
|
|
@ -11,6 +11,10 @@ short_description: Configure 1&1 monitoring policy
|
|||
description:
|
||||
- Create, remove, update monitoring policies (and add/remove ports, processes, and servers). This module has a dependency
|
||||
on 1and1 >= 1.0.
|
||||
deprecated:
|
||||
removed_in: 13.0.0
|
||||
why: DNS fails to resolve the API endpoint used by the module.
|
||||
alternative: There is none.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@ module: oneandone_private_network
|
|||
short_description: Configure 1&1 private networking
|
||||
description:
|
||||
- Create, remove, reconfigure, update a private network. This module has a dependency on 1and1 >= 1.0.
|
||||
deprecated:
|
||||
removed_in: 13.0.0
|
||||
why: DNS fails to resolve the API endpoint used by the module.
|
||||
alternative: There is none.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@ module: oneandone_public_ip
|
|||
short_description: Configure 1&1 public IPs
|
||||
description:
|
||||
- Create, update, and remove public IPs. This module has a dependency on 1and1 >= 1.0.
|
||||
deprecated:
|
||||
removed_in: 13.0.0
|
||||
why: DNS fails to resolve the API endpoint used by the module.
|
||||
alternative: There is none.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
|
|
|
|||
|
|
@ -11,6 +11,10 @@ short_description: Create, destroy, start, stop, and reboot a 1&1 Host server
|
|||
description:
|
||||
- Create, destroy, update, start, stop, and reboot a 1&1 Host server. When the server is created it can optionally wait
|
||||
for it to be 'running' before returning.
|
||||
deprecated:
|
||||
removed_in: 13.0.0
|
||||
why: DNS fails to resolve the API endpoint used by the module.
|
||||
alternative: There is none.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue