mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 14:41:23 -07:00
ACI: Fix examples in documentation (#52958)
* ACI: Fix examples in documentation * Fix typo
This commit is contained in:
parent
bee293f65e
commit
b808b06607
1 changed files with 46 additions and 16 deletions
|
@ -84,56 +84,86 @@ extends_documentation_fragment: aci
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = r'''
|
EXAMPLES = r'''
|
||||||
- name: Add a new VLAN range
|
- name: Add a new VLAN pool range
|
||||||
aci_vlan_pool_encap_block:
|
aci_encap_pool_range:
|
||||||
host: apic
|
host: apic
|
||||||
username: admin
|
username: admin
|
||||||
password: SomeSecretPassword
|
password: SomeSecretPassword
|
||||||
pool: production
|
pool: production
|
||||||
pool_type: vlan
|
pool_type: vlan
|
||||||
encap_start: 20
|
pool_allocation_mode: static
|
||||||
encap_end: 50
|
range_name: anstest
|
||||||
|
range_start: 20
|
||||||
|
range_end: 40
|
||||||
|
allocation_mode: inherit
|
||||||
state: present
|
state: present
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Remove a VLAN range
|
- name: Remove a VLAN pool range
|
||||||
aci_vlan_pool_encap_block:
|
aci_encap_pool_range:
|
||||||
host: apic
|
host: apic
|
||||||
username: admin
|
username: admin
|
||||||
password: SomeSecretPassword
|
password: SomeSecretPassword
|
||||||
pool: production
|
pool: production
|
||||||
pool_type: vlan
|
pool_type: vlan
|
||||||
encap_start: 20
|
pool_allocation_mode: static
|
||||||
encap_end: 50
|
range_name: anstest
|
||||||
|
range_start: 20
|
||||||
|
range_end: 40
|
||||||
state: absent
|
state: absent
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Query a VLAN range
|
- name: Query a VLAN range
|
||||||
aci_vlan_pool_encap_block:
|
aci_encap_pool_range:
|
||||||
host: apic
|
host: apic
|
||||||
username: admin
|
username: admin
|
||||||
password: SomeSecretPassword
|
password: SomeSecretPassword
|
||||||
pool: production
|
pool: production
|
||||||
pool_type: vlan
|
pool_type: vlan
|
||||||
encap_start: 20
|
pool_allocation_mode: static
|
||||||
encap_end: 50
|
range_name: anstest
|
||||||
|
range_start: 20
|
||||||
|
range_end: 50
|
||||||
state: query
|
state: query
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
register: query_result
|
register: query_result
|
||||||
|
|
||||||
- name: Query a VLAN pool for ranges
|
- name: Query a VLAN pool for ranges by range_name
|
||||||
aci_vlan_pool_encap_block:
|
aci_encap_pool_range:
|
||||||
host: apic
|
host: apic
|
||||||
username: admin
|
username: admin
|
||||||
password: SomeSecretPassword
|
password: SomeSecretPassword
|
||||||
pool: production
|
|
||||||
pool_type: vlan
|
pool_type: vlan
|
||||||
|
range_name: anstest
|
||||||
state: query
|
state: query
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
register: query_result
|
register: query_result
|
||||||
|
|
||||||
- name: Query all VLAN ranges
|
- name: Query a VLAN pool for ranges by range_start
|
||||||
aci_vlan_pool_encap_block:
|
aci_encap_pool_range:
|
||||||
|
host: apic
|
||||||
|
username: admin
|
||||||
|
password: SomeSecretPassword
|
||||||
|
pool_type: vlan
|
||||||
|
range_start: 20
|
||||||
|
state: query
|
||||||
|
delegate_to: localhost
|
||||||
|
register: query_result
|
||||||
|
|
||||||
|
- name: Query a VLAN pool for ranges by range_start and range_end
|
||||||
|
aci_encap_pool_range:
|
||||||
|
host: apic
|
||||||
|
username: admin
|
||||||
|
password: SomeSecretPassword
|
||||||
|
pool_type: vlan
|
||||||
|
range_start: 20
|
||||||
|
range_end: 40
|
||||||
|
state: query
|
||||||
|
delegate_to: localhost
|
||||||
|
register: query_result
|
||||||
|
|
||||||
|
- name: Query all VLAN pool ranges
|
||||||
|
aci_encap_pool_range:
|
||||||
host: apic
|
host: apic
|
||||||
username: admin
|
username: admin
|
||||||
password: SomeSecretPassword
|
password: SomeSecretPassword
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue