From b808b066071c7ed051c391eb04c944f27eb147d8 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Tue, 26 Feb 2019 03:00:00 +0100 Subject: [PATCH] ACI: Fix examples in documentation (#52958) * ACI: Fix examples in documentation * Fix typo --- .../network/aci/aci_encap_pool_range.py | 62 ++++++++++++++----- 1 file changed, 46 insertions(+), 16 deletions(-) diff --git a/lib/ansible/modules/network/aci/aci_encap_pool_range.py b/lib/ansible/modules/network/aci/aci_encap_pool_range.py index e097dffebf7..908d4362d0c 100644 --- a/lib/ansible/modules/network/aci/aci_encap_pool_range.py +++ b/lib/ansible/modules/network/aci/aci_encap_pool_range.py @@ -84,56 +84,86 @@ extends_documentation_fragment: aci ''' EXAMPLES = r''' -- name: Add a new VLAN range - aci_vlan_pool_encap_block: +- name: Add a new VLAN pool range + aci_encap_pool_range: host: apic username: admin password: SomeSecretPassword pool: production pool_type: vlan - encap_start: 20 - encap_end: 50 + pool_allocation_mode: static + range_name: anstest + range_start: 20 + range_end: 40 + allocation_mode: inherit state: present delegate_to: localhost -- name: Remove a VLAN range - aci_vlan_pool_encap_block: +- name: Remove a VLAN pool range + aci_encap_pool_range: host: apic username: admin password: SomeSecretPassword pool: production pool_type: vlan - encap_start: 20 - encap_end: 50 + pool_allocation_mode: static + range_name: anstest + range_start: 20 + range_end: 40 state: absent delegate_to: localhost - name: Query a VLAN range - aci_vlan_pool_encap_block: + aci_encap_pool_range: host: apic username: admin password: SomeSecretPassword pool: production pool_type: vlan - encap_start: 20 - encap_end: 50 + pool_allocation_mode: static + range_name: anstest + range_start: 20 + range_end: 50 state: query delegate_to: localhost register: query_result -- name: Query a VLAN pool for ranges - aci_vlan_pool_encap_block: +- name: Query a VLAN pool for ranges by range_name + aci_encap_pool_range: + host: apic + username: admin + password: SomeSecretPassword + pool_type: vlan + range_name: anstest + state: query + delegate_to: localhost + register: query_result + +- name: Query a VLAN pool for ranges by range_start + 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: production pool_type: vlan + range_start: 20 + range_end: 40 state: query delegate_to: localhost register: query_result -- name: Query all VLAN ranges - aci_vlan_pool_encap_block: +- name: Query all VLAN pool ranges + aci_encap_pool_range: host: apic username: admin password: SomeSecretPassword