Skip to content

Commit 2e27155

Browse files
committed
[ignore] Modified module names by removing abs in aci_l4l7_service_graph_template_connection_to_connector and aci_l4l7_service_graph_template_connection
1 parent 8239643 commit 2e27155

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

meta/runtime.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,12 +282,17 @@ plugin_routing:
282282
removal_version: 3.0.0
283283
warning_text: Use aci_l4l7_service_graph_template_functional_connection instead.
284284
aci_l4l7_service_graph_template_abs_conn:
285-
redirect: cisco.aci.aci_l4l7_service_graph_template_abs_connection
285+
redirect: cisco.aci.aci_l4l7_service_graph_template_connection
286286
deprecation:
287287
removal_version: 3.0.0
288-
warning_text: Use cisco.aci.aci_l4l7_service_graph_template_abs_connection instead.
288+
warning_text: Use cisco.aci.aci_l4l7_service_graph_template_connection instead.
289289
aci_l4l7_device_selection_if_context:
290290
redirect: cisco.aci.aci_l4l7_device_selection_interface_context
291291
deprecation:
292292
removal_version: 3.0.0
293293
warning_text: Use cisco.aci.aci_l4l7_device_selection_interface_context instead.
294+
aci_l4l7_service_graph_template_abs_connection_conns:
295+
redirect: cisco.aci.aci_l4l7_service_graph_template_connection_to_connector
296+
deprecation:
297+
removal_version: 3.0.0
298+
warning_text: Use cisco.aci.aci_l4l7_service_graph_template_connection_to_connector instead.

plugins/modules/aci_l4l7_service_graph_template_abs_connection.py renamed to plugins/modules/aci_l4l7_service_graph_template_connection.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
DOCUMENTATION = r"""
1515
---
16-
module: aci_l4l7_service_graph_template_abs_connection
16+
module: aci_l4l7_service_graph_template_connection
1717
short_description: Manage L4-L7 Service Graph Template Abs Connections (vns:AbsConnection)
1818
description:
1919
- Manage Layer 4 to Layer 7 (L4-L7) Service Graph Template Connections.
@@ -90,7 +90,7 @@
9090

9191
EXAMPLES = r"""
9292
- name: Add a new connection
93-
cisco.aci.aci_l4l7_service_graph_template_abs_connection:
93+
cisco.aci.aci_l4l7_service_graph_template_connection:
9494
host: apic
9595
username: admin
9696
password: SomeSecretPassword
@@ -101,7 +101,7 @@
101101
delegate_to: localhost
102102
103103
- name: Query a connection
104-
cisco.aci.aci_l4l7_service_graph_template_abs_connection:
104+
cisco.aci.aci_l4l7_service_graph_template_connection:
105105
host: apic
106106
username: admin
107107
password: SomeSecretPassword
@@ -113,7 +113,7 @@
113113
register: query_result
114114
115115
- name: Query all connections
116-
cisco.aci.aci_l4l7_service_graph_template_abs_connection:
116+
cisco.aci.aci_l4l7_service_graph_template_connection:
117117
host: apic
118118
username: admin
119119
password: SomeSecretPassword
@@ -122,7 +122,7 @@
122122
register: query_result
123123
124124
- name: Delete a connection
125-
cisco.aci.aci_l4l7_service_graph_template_abs_connection:
125+
cisco.aci.aci_l4l7_service_graph_template_connection:
126126
host: apic
127127
username: admin
128128
password: SomeSecretPassword

plugins/modules/aci_l4l7_service_graph_template_abs_connection_conns.py renamed to plugins/modules/aci_l4l7_service_graph_template_connection_to_connector.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
DOCUMENTATION = r"""
1313
---
14-
module: aci_l4l7_service_graph_template_abs_connection_conns
14+
module: aci_l4l7_service_graph_template_connection_to_connector
1515
short_description: Manage L4-L7 Service Graph Template Connections (vns:RsAbsConnectionConns)
1616
description:
1717
- Manage Manage L4-L7 Service Graph Template Connections.
@@ -70,7 +70,7 @@
7070

7171
EXAMPLES = r"""
7272
- name: Add a new connection
73-
cisco.aci.aci_l4l7_service_graph_template_abs_connection_conns:
73+
cisco.aci.aci_l4l7_service_graph_template_connection_to_connector:
7474
host: apic
7575
username: admin
7676
password: SomeSecretPassword
@@ -82,7 +82,7 @@
8282
delegate_to: localhost
8383
8484
- name: Query a connection
85-
cisco.aci.aci_l4l7_service_graph_template_abs_connection_conns:
85+
cisco.aci.aci_l4l7_service_graph_template_connection_to_connector:
8686
host: apic
8787
username: admin
8888
password: SomeSecretPassword
@@ -95,7 +95,7 @@
9595
register: query_result
9696
9797
- name: Delete a connection
98-
cisco.aci.aci_l4l7_service_graph_template_abs_connection_conns:
98+
cisco.aci.aci_l4l7_service_graph_template_connection_to_connector:
9999
host: apic
100100
username: admin
101101
password: SomeSecretPassword

0 commit comments

Comments
 (0)