diff options
author | Rohit <rohitthakur2590@outlook.com> | 2020-06-09 16:02:08 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-09 10:32:08 +0000 |
commit | e7a59f51fb5211ef0c721e0ff4d12a775a9b0606 (patch) | |
tree | 72305c8e39c269219b0b67f1fcb78060f9719af5 | |
parent | 61314778e0a605c50b4fc1d918193771492c52fb (diff) | |
download | vyos-ansible-collection-e7a59f51fb5211ef0c721e0ff4d12a775a9b0606.tar.gz vyos-ansible-collection-e7a59f51fb5211ef0c721e0ff4d12a775a9b0606.zip |
depreacted message updated (#41)
[VyOS]: Depreacted message updated
Reviewed-by: https://github.com/apps/ansible-zuul
-rw-r--r-- | plugins/cliconf/vyos.py | 7 | ||||
-rw-r--r-- | plugins/modules/vyos_interface.py | 6 | ||||
-rw-r--r-- | plugins/modules/vyos_l3_interface.py | 6 | ||||
-rw-r--r-- | plugins/modules/vyos_linkagg.py | 6 | ||||
-rw-r--r-- | plugins/modules/vyos_lldp.py | 6 | ||||
-rw-r--r-- | plugins/modules/vyos_lldp_interface.py | 7 | ||||
-rw-r--r-- | plugins/modules/vyos_static_route.py | 6 |
7 files changed, 27 insertions, 17 deletions
diff --git a/plugins/cliconf/vyos.py b/plugins/cliconf/vyos.py index 3033603..de9e93d 100644 --- a/plugins/cliconf/vyos.py +++ b/plugins/cliconf/vyos.py @@ -21,14 +21,13 @@ from __future__ import absolute_import, division, print_function __metaclass__ = type DOCUMENTATION = """ ---- author: Ansible Networking Team cliconf: vyos short_description: Use vyos cliconf to run command on VyOS platform description: - - This vyos plugin provides low level abstraction apis for - sending and receiving CLI commands from VyOS network devices. -version_added: "2.4" +- This vyos plugin provides low level abstraction apis for sending and receiving CLI + commands from VyOS network devices. +version_added: 1.0.0 """ import re diff --git a/plugins/modules/vyos_interface.py b/plugins/modules/vyos_interface.py index fe4fce3..be844c5 100644 --- a/plugins/modules/vyos_interface.py +++ b/plugins/modules/vyos_interface.py @@ -26,14 +26,15 @@ __metaclass__ = type DOCUMENTATION = """ module: vyos_interface author: Ganesh Nalawade (@ganeshrn) -short_description: (deprecated) Manage Interface on VyOS network devices +short_description: (deprecated, removed after 2022-06-01) Manage Interface on VyOS + network devices description: - This module provides declarative management of Interfaces on VyOS network devices. version_added: 1.0.0 deprecated: - removed_in: '2.13' alternative: vyos_interfaces why: Updated modules released with more functionality. + removed_at_date: '2022-06-01' notes: - Tested against VYOS 1.1.7 options: @@ -94,6 +95,7 @@ options: extends_documentation_fragment: - vyos.vyos.vyos + """ EXAMPLES = """ diff --git a/plugins/modules/vyos_l3_interface.py b/plugins/modules/vyos_l3_interface.py index 2feb824..676d6ec 100644 --- a/plugins/modules/vyos_l3_interface.py +++ b/plugins/modules/vyos_l3_interface.py @@ -26,14 +26,15 @@ __metaclass__ = type DOCUMENTATION = """ module: vyos_l3_interface author: Ricardo Carrillo Cruz (@rcarrillocruz) -short_description: (deprecated) Manage L3 interfaces on VyOS network devices +short_description: (deprecated, removed after 2022-06-01) Manage L3 interfaces on + VyOS network devices description: - This module provides declarative management of L3 interfaces on VyOS network devices. version_added: 1.0.0 deprecated: - removed_in: '2.13' alternative: vyos_l3_interfaces why: Updated modules released with more functionality. + removed_at_date: '2022-06-01' notes: - Tested against VYOS 1.1.7 options: @@ -58,6 +59,7 @@ options: extends_documentation_fragment: - vyos.vyos.vyos + """ EXAMPLES = """ diff --git a/plugins/modules/vyos_linkagg.py b/plugins/modules/vyos_linkagg.py index a68197b..4e63e2f 100644 --- a/plugins/modules/vyos_linkagg.py +++ b/plugins/modules/vyos_linkagg.py @@ -26,15 +26,16 @@ __metaclass__ = type DOCUMENTATION = """ module: vyos_linkagg author: Ricardo Carrillo Cruz (@rcarrillocruz) -short_description: (deprecated) Manage link aggregation groups on VyOS network devices +short_description: (deprecated, removed after 2022-06-01) Manage link aggregation + groups on VyOS network devices description: - This module provides declarative management of link aggregation groups on VyOS network devices. version_added: 1.0.0 deprecated: - removed_in: '2.13' alternative: vyos_lag_interfaces why: Updated modules released with more functionality. + removed_at_date: '2022-06-01' notes: - Tested against VYOS 1.1.7 options: @@ -76,6 +77,7 @@ options: extends_documentation_fragment: - vyos.vyos.vyos + """ EXAMPLES = """ diff --git a/plugins/modules/vyos_lldp.py b/plugins/modules/vyos_lldp.py index 5b697c2..9b138c1 100644 --- a/plugins/modules/vyos_lldp.py +++ b/plugins/modules/vyos_lldp.py @@ -27,14 +27,15 @@ __metaclass__ = type DOCUMENTATION = """ module: vyos_lldp author: Ricardo Carrillo Cruz (@rcarrillocruz) -short_description: (deprecated) Manage LLDP configuration on VyOS network devices +short_description: (deprecated, removed after 2022-06-01) Manage LLDP configuration + on VyOS network devices description: - This module provides declarative management of LLDP service on VyOS network devices. version_added: 1.0.0 deprecated: - removed_in: '2.13' alternative: vyos_lldp_global why: Updated modules released with more functionality. + removed_at_date: '2022-06-01' notes: - Tested against VYOS 1.1.7 options: @@ -55,6 +56,7 @@ options: extends_documentation_fragment: - vyos.vyos.vyos + """ EXAMPLES = """ diff --git a/plugins/modules/vyos_lldp_interface.py b/plugins/modules/vyos_lldp_interface.py index 90e123d..2fd1bc5 100644 --- a/plugins/modules/vyos_lldp_interface.py +++ b/plugins/modules/vyos_lldp_interface.py @@ -26,16 +26,16 @@ __metaclass__ = type DOCUMENTATION = """ module: vyos_lldp_interface author: Ricardo Carrillo Cruz (@rcarrillocruz) -short_description: (deprecated) Manage LLDP interfaces configuration on VyOS network - devices +short_description: (deprecated, removed after 2022-06-01) Manage LLDP interfaces configuration + on VyOS network devices description: - This module provides declarative management of LLDP interfaces configuration on VyOS network devices. version_added: 1.0.0 deprecated: - removed_in: '2.13' alternative: vyos_lldp_interfaces why: Updated modules released with more functionality. + removed_at_date: '2022-06-01' notes: - Tested against VYOS 1.1.7 options: @@ -59,6 +59,7 @@ options: extends_documentation_fragment: - vyos.vyos.vyos + """ EXAMPLES = """ diff --git a/plugins/modules/vyos_static_route.py b/plugins/modules/vyos_static_route.py index 4724d5f..67f9954 100644 --- a/plugins/modules/vyos_static_route.py +++ b/plugins/modules/vyos_static_route.py @@ -26,15 +26,16 @@ __metaclass__ = type DOCUMENTATION = """ module: vyos_static_route author: Trishna Guha (@trishnaguha) -short_description: (deprecated) Manage static IP routes on Vyatta VyOS network devices +short_description: (deprecated, removed after 2022-06-01) Manage static IP routes + on Vyatta VyOS network devices description: - This module provides declarative management of static IP routes on Vyatta VyOS network devices. version_added: 1.0.0 deprecated: - removed_in: '2.13' alternative: vyos_static_routes why: Updated modules released with more functionality. + removed_at_date: '2022-06-01' notes: - Tested against VyOS 1.1.8 (helium). - This module works with connection C(network_cli). See L(the VyOS OS Platform Options,../network/user_guide/platform_vyos.html). @@ -70,6 +71,7 @@ options: extends_documentation_fragment: - vyos.vyos.vyos + """ EXAMPLES = """ |