File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
119119RETURN = r"""
You can’t perform that action at this time.
0 commit comments