Skip to content

Commit abe4efb

Browse files
akinrosslhercot
authored andcommitted
[ignore] reorder the examples for aci_action_rule_set_as_path
1 parent f3fdb37 commit abe4efb

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

plugins/modules/aci_action_rule_set_as_path.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,37 +83,37 @@
8383
state: present
8484
delegate_to: localhost
8585
86-
- name: Delete a Set AS path action rule
86+
- name: Query all Set AS path action rules
8787
cisco.aci.aci_action_rule_set_as_path:
8888
host: apic
8989
username: admin
9090
password: SomeSecretPassword
91-
action_rule: my_action_rule
92-
tenant: prod
93-
criteria: prepend
94-
state: absent
91+
state: query
9592
delegate_to: localhost
93+
register: query_result
9694
97-
- name: Query all Set AS path action rules
95+
- name: Query a Set AS path action rule
9896
cisco.aci.aci_action_rule_set_as_path:
9997
host: apic
10098
username: admin
10199
password: SomeSecretPassword
100+
action_rule: my_action_rule
101+
tenant: prod
102+
criteria: prepend
102103
state: query
103104
delegate_to: localhost
104105
register: query_result
105106
106-
- name: Query a Set AS path action rule
107+
- name: Delete a Set AS path action rule
107108
cisco.aci.aci_action_rule_set_as_path:
108109
host: apic
109110
username: admin
110111
password: SomeSecretPassword
111112
action_rule: my_action_rule
112113
tenant: prod
113114
criteria: prepend
114-
state: query
115+
state: absent
115116
delegate_to: localhost
116-
register: query_result
117117
"""
118118

119119
RETURN = r"""

0 commit comments

Comments
 (0)