Skip to content

Commit 86cfc61

Browse files
gmicollhercot
authored andcommitted
[ignore] Modify documentation for march rule terms and test cases.
1 parent d88850d commit 86cfc61

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

plugins/modules/aci_match_as_path_regex_term.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"""
7272

7373
EXAMPLES = r"""
74-
- name: Create a match match AS-path regex term
74+
- name: Create a match with AS-path regex term
7575
cisco.aci.match_as_path_regex_term:
7676
host: apic
7777
username: admin
@@ -83,7 +83,7 @@
8383
state: present
8484
delegate_to: localhost
8585
86-
- name: Delete a match match AS-path regex term
86+
- name: Delete a match with AS-path regex term
8787
cisco.aci.match_as_path_regex_term:
8888
host: apic
8989
username: admin
@@ -94,7 +94,7 @@
9494
state: absent
9595
delegate_to: localhost
9696
97-
- name: Query all match AS-path regex terms
97+
- name: Query all match with AS-path regex terms
9898
cisco.aci.match_as_path_regex_term:
9999
host: apic
100100
username: admin
@@ -103,7 +103,7 @@
103103
delegate_to: localhost
104104
register: query_result
105105
106-
- name: Query a specific match match AS-path regex term
106+
- name: Query a specific match with AS-path regex term
107107
cisco.aci.match_as_path_regex_term:
108108
host: apic
109109
username: admin

plugins/modules/aci_match_community_factor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
description:
4141
- The item scope.
4242
- If the scope is transitive, this community may be passed between ASs.
43-
- If the scope is Non transitive, this community should be carried only within the local AS.
43+
- If the scope is non-transitive, this community should be carried only within the local AS.
4444
type: str
4545
choices: [ transitive, non-transitive ]
4646
description:

plugins/modules/aci_match_community_regex_term.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"""
7979

8080
EXAMPLES = r"""
81-
- name: Create a match comunity regex term
81+
- name: Create a match with comunity regex term
8282
cisco.aci.match_community_regex_term:
8383
host: apic
8484
username: admin
@@ -91,7 +91,7 @@
9191
state: present
9292
delegate_to: localhost
9393
94-
- name: Delete a match comunity regex term
94+
- name: Delete a match with comunity regex term
9595
cisco.aci.match_community_regex_term:
9696
host: apic
9797
username: admin
@@ -102,7 +102,7 @@
102102
state: absent
103103
delegate_to: localhost
104104
105-
- name: Query all match rule commmuntiy regex terms
105+
- name: Query all match with commmuntiy regex terms
106106
cisco.aci.match_community_regex_term:
107107
host: apic
108108
username: admin
@@ -111,7 +111,7 @@
111111
delegate_to: localhost
112112
register: query_result
113113
114-
- name: Query a specific match comunity regex term
114+
- name: Query a specific match with comunity regex term
115115
cisco.aci.match_community_regex_term:
116116
host: apic
117117
username: admin

plugins/modules/aci_match_community_term.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"""
6868

6969
EXAMPLES = r"""
70-
- name: Create a match match AS-path regex term
70+
- name: Create a match with community term
7171
cisco.aci.match_community_term:
7272
host: apic
7373
username: admin
@@ -78,7 +78,7 @@
7878
state: present
7979
delegate_to: localhost
8080
81-
- name: Delete a match match AS-path regex term
81+
- name: Delete a match with community term
8282
cisco.aci.match_community_term:
8383
host: apic
8484
username: admin
@@ -89,7 +89,7 @@
8989
state: absent
9090
delegate_to: localhost
9191
92-
- name: Query all match AS-path regex terms
92+
- name: Query all with community terms
9393
cisco.aci.match_community_term:
9494
host: apic
9595
username: admin
@@ -98,7 +98,7 @@
9898
delegate_to: localhost
9999
register: query_result
100100
101-
- name: Query a specific match match AS-path regex term
101+
- name: Query a specific match with community term
102102
cisco.aci.match_community_term:
103103
host: apic
104104
username: admin

tests/integration/targets/aci_match_as_path_regex_term/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
<<: *match_as_path_regex_term_absent
129129
register: nm_remove_match_as_path_regex_term
130130

131-
- name: Remove match regex AS-Path term for l3out - testing idempotency
131+
- name: Remove match regex AS-Path term for l3out again - testing previous Removal
132132
aci_match_as_path_regex_term:
133133
<<: *match_as_path_regex_term_absent
134134
register: nm_remove_match_as_path_regex_term_idempotency

tests/integration/targets/aci_match_community_factor/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
<<: *match_community_term_absent
136136
register: nm_remove_match_community_factor
137137

138-
- name: Remove match community factor - testing idempotency
138+
- name: Remove match community factor again - testing previous Removal
139139
aci_match_community_factor:
140140
<<: *match_community_term_absent
141141
register: nm_remove_match_community_factor_idempotency

tests/integration/targets/aci_match_community_regex_term/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
<<: *match_community_regex_term_absent
131131
register: nm_remove_match_community_regex_term
132132

133-
- name: Remove match community regex term - testing idempotency
133+
- name: Remove match community regex term again - testing previous Removal
134134
aci_match_community_regex_term:
135135
<<: *match_community_regex_term_absent
136136
register: nm_remove_match_community_regex_term_idempotency

tests/integration/targets/aci_match_community_term/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
<<: *match_community_term_absent
125125
register: nm_remove_match_community_term
126126

127-
- name: Remove match community term - testing idempotency
127+
- name: Remove match community term again - testing previous Removal
128128
aci_match_community_term:
129129
<<: *match_community_term_absent
130130
register: nm_remove_match_community_term_idempotency

tests/integration/targets/aci_match_route_destination/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
<<: *match_route_destination_absent
138138
register: nm_remove_match_route_destination
139139

140-
- name: Remove match route destination rule - testing idempotency
140+
- name: Remove match route destination rule again - testing previous Removal
141141
aci_match_route_destination:
142142
<<: *match_route_destination_absent
143143
register: nm_remove_match_route_destination_idempotency

tests/integration/targets/aci_match_rule/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
<<: *match_rule_absent
115115
register: nm_remove_match_rule
116116

117-
- name: Remove match rule profile for l3out - testing idempotency
117+
- name: Remove match rule profile for l3out again - testing previous Removal
118118
aci_match_rule:
119119
<<: *match_rule_absent
120120
register: nm_remove_match_rule_idempotency

0 commit comments

Comments
 (0)