From cb79957b5fa9098b342246e5010322f3baa65711 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Tue, 6 Mar 2018 00:05:13 +0100 Subject: [PATCH] Make use of named links in documentation notes (#37027) * Make use of named links in documentation notes Now that it is possible to name external links, we are making use of this to make the documentation better. * Add improvements to ACI documentation * Disable QA for long line * Add :menuselection: and :guilabel: * Improve links on some modules --- .../docsite/rst/scenario_guides/guide_aci.rst | 51 +++++++++++++++---- .../modules/network/aci/aci_aaa_user.py | 4 +- .../network/aci/aci_aaa_user_certificate.py | 4 +- ...s_port_to_interface_policy_leaf_profile.py | 4 +- lib/ansible/modules/network/aci/aci_aep.py | 4 +- .../modules/network/aci/aci_aep_to_domain.py | 4 +- lib/ansible/modules/network/aci/aci_ap.py | 4 +- lib/ansible/modules/network/aci/aci_bd.py | 4 +- .../modules/network/aci/aci_bd_subnet.py | 4 +- .../modules/network/aci/aci_bd_to_l3out.py | 4 +- .../network/aci/aci_config_rollback.py | 4 +- .../network/aci/aci_config_snapshot.py | 4 +- .../modules/network/aci/aci_contract.py | 4 +- .../network/aci/aci_contract_subject.py | 4 +- .../aci/aci_contract_subject_to_filter.py | 4 +- lib/ansible/modules/network/aci/aci_domain.py | 4 +- .../network/aci/aci_domain_to_encap_pool.py | 4 +- .../network/aci/aci_domain_to_vlan_pool.py | 4 +- .../modules/network/aci/aci_encap_pool.py | 4 +- .../network/aci/aci_encap_pool_range.py | 4 +- lib/ansible/modules/network/aci/aci_epg.py | 4 +- .../network/aci/aci_epg_monitoring_policy.py | 4 +- .../network/aci/aci_epg_to_contract.py | 4 +- .../modules/network/aci/aci_epg_to_domain.py | 4 +- .../modules/network/aci/aci_fabric_node.py | 4 +- lib/ansible/modules/network/aci/aci_filter.py | 4 +- .../modules/network/aci/aci_filter_entry.py | 4 +- .../network/aci/aci_firmware_source.py | 4 +- .../network/aci/aci_interface_policy_fc.py | 4 +- .../network/aci/aci_interface_policy_l2.py | 4 +- .../aci_interface_policy_leaf_policy_group.py | 4 +- .../aci/aci_interface_policy_leaf_profile.py | 4 +- .../network/aci/aci_interface_policy_lldp.py | 4 +- .../network/aci/aci_interface_policy_mcp.py | 4 +- .../aci/aci_interface_policy_port_channel.py | 4 +- .../aci/aci_interface_policy_port_security.py | 4 +- ..._selector_to_switch_policy_leaf_profile.py | 4 +- .../network/aci/aci_l3out_route_tag_policy.py | 4 +- lib/ansible/modules/network/aci/aci_rest.py | 4 +- .../network/aci/aci_static_binding_to_epg.py | 4 +- .../network/aci/aci_switch_leaf_selector.py | 4 +- .../aci/aci_switch_policy_leaf_profile.py | 4 +- .../aci_switch_policy_vpc_protection_group.py | 4 +- .../modules/network/aci/aci_taboo_contract.py | 4 +- lib/ansible/modules/network/aci/aci_tenant.py | 4 +- .../aci/aci_tenant_action_rule_profile.py | 4 +- .../aci/aci_tenant_ep_retention_policy.py | 4 +- .../network/aci/aci_tenant_span_dst_group.py | 4 +- .../network/aci/aci_tenant_span_src_group.py | 4 +- .../aci_tenant_span_src_group_to_dst_group.py | 4 +- .../modules/network/aci/aci_vlan_pool.py | 4 +- .../network/aci/aci_vlan_pool_encap_block.py | 4 +- lib/ansible/modules/network/aci/aci_vrf.py | 4 +- .../utils/module_docs_fragments/aci.py | 4 +- 54 files changed, 147 insertions(+), 116 deletions(-) diff --git a/docs/docsite/rst/scenario_guides/guide_aci.rst b/docs/docsite/rst/scenario_guides/guide_aci.rst index 616c85c8cb7..7bc7ee7064a 100644 --- a/docs/docsite/rst/scenario_guides/guide_aci.rst +++ b/docs/docsite/rst/scenario_guides/guide_aci.rst @@ -51,7 +51,7 @@ Using the ACI modules --------------------- The Ansible ACI modules provide a user-friendly interface to managing your ACI environment using Ansible playbooks. -For instance ensuring that a specific tenant exists, is done using the following Ansible task: +For instance ensuring that a specific tenant exists, is done using the following Ansible task using module `aci_tenant `: .. code-block:: yaml @@ -67,6 +67,37 @@ For instance ensuring that a specific tenant exists, is done using the following A complete list of existing ACI modules is available for `the latest stable release `_ as well as `the current development version `_. +Querying ACI configuration +.......................... + +A module can also be used to query a specific object. + +.. code-block:: yaml + + - name: Query tenant customer-xyz + aci_tenant: + host: my-apic-1 + username: admin + password: my-password + + tenant: customer-xyz + state: query + +Or query all objects. + +.. code-block:: yaml + + - name: Query all tenants + aci_tenant: + host: my-apic-1 + username: admin + password: my-password + + state: query + register: all_tenants + +After registering the return values of the `aci_tenant ` task as shown above, you can access all tenant information from variable ``all_tenants``. + Common parameters ................. @@ -125,7 +156,7 @@ Return values The following values are always returned: current - The resulting state of the managed object. + The resulting state of the managed object, or results of your query. The following values are returned when ``output_level: info``: @@ -173,7 +204,7 @@ ACI authentication Password-based authentication ............................. -If you want to logon using a username and password, you can use the following parameters with your ACI modules: +If you want to log on using a username and password, you can use the following parameters with your ACI modules: .. code-block:: yaml @@ -208,16 +239,16 @@ Configure your local user ,,,,,,,,,,,,,,,,,,,,,,,,, Perform the following steps: -- Add the X.509 certificate to your ACI AAA local user at **ADMIN > AAA** -- Click **AAA Authentication** -- Check that in the **Authentication** field the **Realm** field displays **Local** -- Expand **Security Management > Local Users** -- Click the name of the user you want to add a certificate to, in the **User Certificates** area -- Click the **+** sign and in the **Create X509 Certificate** enter a certificate name in the **Name** field +- Add the X.509 certificate to your ACI AAA local user at :guilabel:`ADMIN` » :guilabel:`AAA` +- Click :guilabel:`AAA Authentication` +- Check that in the :guilabel:`Authentication` field the :guilabel:`Realm` field displays :guilabel:`Local` +- Expand :guilabel:`Security Management` » :guilabel:`Local Users` +- Click the name of the user you want to add a certificate to, in the :guilabel:`User Certificates` area +- Click the :guilabel:`+` sign and in the :guilabel:`Create X509 Certificate` enter a certificate name in the :guilabel:`Name` field * If you use the basename of your private key here, you don't need to enter ``certificate_name`` in Ansible -- Copy and paste your X.509 certificate in the **Data** field. +- Copy and paste your X.509 certificate in the :guilabel:`Data` field. You can automate this by using the following Ansible task: diff --git a/lib/ansible/modules/network/aci/aci_aaa_user.py b/lib/ansible/modules/network/aci/aci_aaa_user.py index 41705657a22..75d37e97de7 100644 --- a/lib/ansible/modules/network/aci/aci_aaa_user.py +++ b/lib/ansible/modules/network/aci/aci_aaa_user.py @@ -23,8 +23,8 @@ notes: appears to be an inconsistency wrt. the idempotent nature of the APIC REST API. The vendor has been informed. More information in :ref:`the ACI documentation `. -- More information about the internal APIC class B(aaa:User) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(aaa:User) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) requirements: diff --git a/lib/ansible/modules/network/aci/aci_aaa_user_certificate.py b/lib/ansible/modules/network/aci/aci_aaa_user_certificate.py index 363407dd591..275c4ac9a72 100644 --- a/lib/ansible/modules/network/aci/aci_aaa_user_certificate.py +++ b/lib/ansible/modules/network/aci/aci_aaa_user_certificate.py @@ -20,8 +20,8 @@ description: notes: - The C(aaa_user) must exist before using this module in your playbook. The M(aci_aaa_user) module can be used for this. -- More information about the internal APIC class B(aaa:UserCert) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(aaa:UserCert) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_access_port_to_interface_policy_leaf_profile.py b/lib/ansible/modules/network/aci/aci_access_port_to_interface_policy_leaf_profile.py index a87b03533e2..625cda00ce3 100644 --- a/lib/ansible/modules/network/aci/aci_access_port_to_interface_policy_leaf_profile.py +++ b/lib/ansible/modules/network/aci/aci_access_port_to_interface_policy_leaf_profile.py @@ -18,8 +18,8 @@ short_description: Manage Fabric interface policy leaf profile interface selecto description: - Manage Fabric interface policy leaf profile interface selectors on Cisco ACI fabrics. notes: -- More information about the internal APIC classes B(infra:HPortS), B(infra:RsAccBaseGrp) and B(infra:PortBlk) at - U(https://developer.cisco.com/media/mim-ref). +- More information about the internal APIC classes B(infra:HPortS), B(infra:RsAccBaseGrp) and B(infra:PortBlk) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/) author: - Bruno Calogero (@brunocalogero) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_aep.py b/lib/ansible/modules/network/aci/aci_aep.py index 78970e38f68..387b1bd1cfe 100644 --- a/lib/ansible/modules/network/aci/aci_aep.py +++ b/lib/ansible/modules/network/aci/aci_aep.py @@ -18,8 +18,8 @@ description: - Connect to external virtual and physical domains by using attachable Access Entity Profiles (AEP) on Cisco ACI fabrics. notes: -- More information about the internal APIC classes B(infra:AttEntityP) and B(infra:ProvAcc) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC classes B(infra:AttEntityP) and B(infra:ProvAcc) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Swetha Chunduri (@schunduri) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_aep_to_domain.py b/lib/ansible/modules/network/aci/aci_aep_to_domain.py index 0514aebddf7..d0cedbb713b 100755 --- a/lib/ansible/modules/network/aci/aci_aep_to_domain.py +++ b/lib/ansible/modules/network/aci/aci_aep_to_domain.py @@ -20,8 +20,8 @@ description: notes: - The C(aep) and C(domain) parameters should exist before using this module. The M(aci_aep) and M(aci_domain) can be used for these. -- More information about the internal APIC class B(infra:RsDomP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(infra:RsDomP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_ap.py b/lib/ansible/modules/network/aci/aci_ap.py index 7da7b495b84..cda96c26fec 100644 --- a/lib/ansible/modules/network/aci/aci_ap.py +++ b/lib/ansible/modules/network/aci/aci_ap.py @@ -20,8 +20,8 @@ notes: - This module does not manage EPGs, see M(aci_epg) to do this. - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(fv:Ap) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fv:Ap) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Swetha Chunduri (@schunduri) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_bd.py b/lib/ansible/modules/network/aci/aci_bd.py index d4319fb6d6e..4b2874382ec 100644 --- a/lib/ansible/modules/network/aci/aci_bd.py +++ b/lib/ansible/modules/network/aci/aci_bd.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(fv:BD) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fv:BD) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_bd_subnet.py b/lib/ansible/modules/network/aci/aci_bd_subnet.py index b24a6074215..13909671850 100644 --- a/lib/ansible/modules/network/aci/aci_bd_subnet.py +++ b/lib/ansible/modules/network/aci/aci_bd_subnet.py @@ -21,8 +21,8 @@ notes: is required when the state is C(absent) or C(present). - The C(tenant) and C(bd) used must exist before using this module in your playbook. The M(aci_tenant) module and M(aci_bd) can be used for these. -- More information about the internal APIC class B(fv:Subnet) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fv:Subnet) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_bd_to_l3out.py b/lib/ansible/modules/network/aci/aci_bd_to_l3out.py index 4a7e3d6aba9..1717b023a8a 100644 --- a/lib/ansible/modules/network/aci/aci_bd_to_l3out.py +++ b/lib/ansible/modules/network/aci/aci_bd_to_l3out.py @@ -19,8 +19,8 @@ description: notes: - The C(bd) and C(l3out) parameters should exist before using this module. The M(aci_bd) and M(aci_l3out) can be used for these. -- More information about the internal APIC class B(fv:RsBDToOut) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fv:RsBDToOut) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_config_rollback.py b/lib/ansible/modules/network/aci/aci_config_rollback.py index 862fd54a417..d0985769aeb 100644 --- a/lib/ansible/modules/network/aci/aci_config_rollback.py +++ b/lib/ansible/modules/network/aci/aci_config_rollback.py @@ -18,8 +18,8 @@ description: - Provides rollback and rollback preview functionality for Cisco ACI fabrics. - Config Rollbacks are done using snapshots C(aci_snapshot) with the configImportP class. notes: -- More information about the internal APIC class B(config:ImportP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(config:ImportP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_config_snapshot.py b/lib/ansible/modules/network/aci/aci_config_snapshot.py index a699627ea82..17222b0bbf4 100644 --- a/lib/ansible/modules/network/aci/aci_config_snapshot.py +++ b/lib/ansible/modules/network/aci/aci_config_snapshot.py @@ -22,8 +22,8 @@ notes: - The APIC does not provide a mechanism for naming the snapshots. - 'Snapshot files use the following naming structure: ce_---
T::.+:.' - 'Snapshot objects use the following naming structure: run---
T--.' -- More information about the internal APIC classes B(config:Snapshot) and B(config:ExportP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC classes B(config:Snapshot) and B(config:ExportP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_contract.py b/lib/ansible/modules/network/aci/aci_contract.py index 4a10056818c..ef61ec84c3c 100644 --- a/lib/ansible/modules/network/aci/aci_contract.py +++ b/lib/ansible/modules/network/aci/aci_contract.py @@ -21,8 +21,8 @@ notes: Contract Subjects can still be removed using this module. - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(vz:BrCP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(vz:BrCP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_contract_subject.py b/lib/ansible/modules/network/aci/aci_contract_subject.py index 82ffa0d4b56..6dd798a1e18 100755 --- a/lib/ansible/modules/network/aci/aci_contract_subject.py +++ b/lib/ansible/modules/network/aci/aci_contract_subject.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant) and C(contract) used must exist before using this module in your playbook. - The M(aci_tenant) and M(aci_contract) modules can be used for this. -- More information about the internal APIC class B(vz:Subj) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(vz:Subj) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Swetha Chunduri (@schunduri) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_contract_subject_to_filter.py b/lib/ansible/modules/network/aci/aci_contract_subject_to_filter.py index 475894e1723..7fa46b8f23a 100644 --- a/lib/ansible/modules/network/aci/aci_contract_subject_to_filter.py +++ b/lib/ansible/modules/network/aci/aci_contract_subject_to_filter.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant), C(contract), C(subject), and C(filter_name) must exist before using this module in your playbook. - The M(aci_tenant), M(aci_contract), M(aci_contract_subject), and M(aci_filter) modules can be used for these. -- More information about the internal APIC class B(vz:RsSubjFiltAtt) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(vz:RsSubjFiltAtt) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_domain.py b/lib/ansible/modules/network/aci/aci_domain.py index 60c9ad552c1..e5ed9c344d4 100644 --- a/lib/ansible/modules/network/aci/aci_domain.py +++ b/lib/ansible/modules/network/aci/aci_domain.py @@ -18,8 +18,8 @@ description: - Manage physical, virtual, bridged, routed or FC domain profiles on Cisco ACI fabrics. notes: - More information about the internal APIC classes B(phys:DomP), - B(vmm:DomP), B(l2ext:DomP), B(l3ext:DomP) and B(fc:DomP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). + B(vmm:DomP), B(l2ext:DomP), B(l3ext:DomP) and B(fc:DomP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_domain_to_encap_pool.py b/lib/ansible/modules/network/aci/aci_domain_to_encap_pool.py index fd76f581425..705e7d3f11a 100644 --- a/lib/ansible/modules/network/aci/aci_domain_to_encap_pool.py +++ b/lib/ansible/modules/network/aci/aci_domain_to_encap_pool.py @@ -20,8 +20,8 @@ description: notes: - The C(domain) and C(encap_pool) parameters should exist before using this module. The M(aci_domain) and M(aci_encap_pool) can be used for these. -- More information about the internal APIC class B(infra:RsVlanNs) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(infra:RsVlanNs) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_domain_to_vlan_pool.py b/lib/ansible/modules/network/aci/aci_domain_to_vlan_pool.py index fb5f3683e92..1064523dd1b 100755 --- a/lib/ansible/modules/network/aci/aci_domain_to_vlan_pool.py +++ b/lib/ansible/modules/network/aci/aci_domain_to_vlan_pool.py @@ -20,8 +20,8 @@ description: notes: - The C(domain) and C(vlan_pool) parameters should exist before using this module. The M(aci_domain) and M(aci_vlan_pool) can be used for these. -- More information about the internal APIC class B(infra:RsVlanNs) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(infra:RsVlanNs) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_encap_pool.py b/lib/ansible/modules/network/aci/aci_encap_pool.py index a268a6d6046..c942db7d5ca 100644 --- a/lib/ansible/modules/network/aci/aci_encap_pool.py +++ b/lib/ansible/modules/network/aci/aci_encap_pool.py @@ -17,8 +17,8 @@ short_description: Manage encap pools (fvns:VlanInstP, fvns:VxlanInstP, fvns:Vsa description: - Manage vlan, vxlan, and vsan pools on Cisco ACI fabrics. notes: -- More information about the internal APIC classes B(fvns:VlanInstP), B(fvns:VxlanInstP) and B(fvns:VsanInstP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC classes B(fvns:VlanInstP), B(fvns:VxlanInstP) and B(fvns:VsanInstP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.5' 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 ed9346a3ceb..806ba7b2d82 100644 --- a/lib/ansible/modules/network/aci/aci_encap_pool_range.py +++ b/lib/ansible/modules/network/aci/aci_encap_pool_range.py @@ -18,8 +18,8 @@ description: - Manage vlan, vxlan, and vsan ranges that are assigned to pools on Cisco ACI fabrics. notes: - The C(pool) must exist in order to add or delete a range. -- More information about the internal APIC classes B(fvns:EncapBlk) and B(fvns:VsanEncapBlk) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC classes B(fvns:EncapBlk) and B(fvns:VsanEncapBlk) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_epg.py b/lib/ansible/modules/network/aci/aci_epg.py index 78dadd9e5e5..37044e8289d 100644 --- a/lib/ansible/modules/network/aci/aci_epg.py +++ b/lib/ansible/modules/network/aci/aci_epg.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant) and C(app_profile) used must exist before using this module in your playbook. The M(aci_tenant) and M(aci_ap) modules can be used for this. -- More information about the internal APIC class B(fv:AEPg) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fv:AEPg) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Swetha Chunduri (@schunduri) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_epg_monitoring_policy.py b/lib/ansible/modules/network/aci/aci_epg_monitoring_policy.py index 73768f4939a..e73d10143f4 100644 --- a/lib/ansible/modules/network/aci/aci_epg_monitoring_policy.py +++ b/lib/ansible/modules/network/aci/aci_epg_monitoring_policy.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(mon:EPGPol) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(mon:EPGPol) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_epg_to_contract.py b/lib/ansible/modules/network/aci/aci_epg_to_contract.py index 25b2164cbb8..2bdcaf0fdcb 100644 --- a/lib/ansible/modules/network/aci/aci_epg_to_contract.py +++ b/lib/ansible/modules/network/aci/aci_epg_to_contract.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant), C(app_profile), C(EPG), and C(Contract) used must exist before using this module in your playbook. The M(aci_tenant), M(aci_ap), M(aci_epg), and M(aci_contract) modules can be used for this. -- More information about the internal APIC classes B(fv:RsCons) and B(fv:RsProv) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC classes B(fv:RsCons) and B(fv:RsProv) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_epg_to_domain.py b/lib/ansible/modules/network/aci/aci_epg_to_domain.py index 6038e18ccef..d4d14b35f6e 100644 --- a/lib/ansible/modules/network/aci/aci_epg_to_domain.py +++ b/lib/ansible/modules/network/aci/aci_epg_to_domain.py @@ -22,8 +22,8 @@ notes: - OpenStack VMM domains must not be created using this module. The OpenStack VMM domain is created directly by the Cisco APIC Neutron plugin as part of the installation and configuration. This module can be used to query status of an OpenStack VMM domain. -- More information about the internal APIC class B(fv:RsDomAtt) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fv:RsDomAtt) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_fabric_node.py b/lib/ansible/modules/network/aci/aci_fabric_node.py index 9270cdb2051..a7904d2d11f 100644 --- a/lib/ansible/modules/network/aci/aci_fabric_node.py +++ b/lib/ansible/modules/network/aci/aci_fabric_node.py @@ -18,8 +18,8 @@ short_description: Manage Fabric Node Members (fabric:NodeIdentP) description: - Manage Fabric Node Members on Cisco ACI fabrics. notes: -- More information about the internal APIC class B(fabric:NodeIdentP) at - U(https://developer.cisco.com/site/aci/docs/apis/apic-mim-ref/). +- More information about the internal APIC class B(fabric:NodeIdentP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Bruno Calogero (@brunocalogero) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_filter.py b/lib/ansible/modules/network/aci/aci_filter.py index f361d243caf..d1f484cf6c7 100644 --- a/lib/ansible/modules/network/aci/aci_filter.py +++ b/lib/ansible/modules/network/aci/aci_filter.py @@ -20,8 +20,8 @@ description: notes: - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(vz:Filter) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(vz:Filter) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_filter_entry.py b/lib/ansible/modules/network/aci/aci_filter_entry.py index 72e417b874b..76a35da4456 100644 --- a/lib/ansible/modules/network/aci/aci_filter_entry.py +++ b/lib/ansible/modules/network/aci/aci_filter_entry.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant) and C(filter) used must exist before using this module in your playbook. The M(aci_tenant) and M(aci_filter) modules can be used for this. -- More information about the internal APIC class B(vz:Entry) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(vz:Entry) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_firmware_source.py b/lib/ansible/modules/network/aci/aci_firmware_source.py index 1c2bf6a28c1..2e1a4820248 100644 --- a/lib/ansible/modules/network/aci/aci_firmware_source.py +++ b/lib/ansible/modules/network/aci/aci_firmware_source.py @@ -21,8 +21,8 @@ author: - Dag Wieers (@dagwieers) version_added: '2.5' notes: -- More information about the internal APIC class B(firmware:OSource) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(firmware:OSource) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). options: source: description: diff --git a/lib/ansible/modules/network/aci/aci_interface_policy_fc.py b/lib/ansible/modules/network/aci/aci_interface_policy_fc.py index f8066ef11d9..8297ce8437e 100644 --- a/lib/ansible/modules/network/aci/aci_interface_policy_fc.py +++ b/lib/ansible/modules/network/aci/aci_interface_policy_fc.py @@ -20,8 +20,8 @@ author: - Dag Wieers (@dagwieers) version_added: '2.4' notes: -- More information about the internal APIC class B(fc:IfPol) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fc:IfPol) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). options: fc_policy: description: diff --git a/lib/ansible/modules/network/aci/aci_interface_policy_l2.py b/lib/ansible/modules/network/aci/aci_interface_policy_l2.py index 1bab0a1e099..6c36be554b0 100644 --- a/lib/ansible/modules/network/aci/aci_interface_policy_l2.py +++ b/lib/ansible/modules/network/aci/aci_interface_policy_l2.py @@ -20,8 +20,8 @@ author: - Dag Wieers (@dagwieers) version_added: '2.4' notes: -- More information about the internal APIC class B(l2:IfPol) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(l2:IfPol) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). options: l2_policy: description: diff --git a/lib/ansible/modules/network/aci/aci_interface_policy_leaf_policy_group.py b/lib/ansible/modules/network/aci/aci_interface_policy_leaf_policy_group.py index da451b56264..938246fcbf4 100644 --- a/lib/ansible/modules/network/aci/aci_interface_policy_leaf_policy_group.py +++ b/lib/ansible/modules/network/aci/aci_interface_policy_leaf_policy_group.py @@ -20,8 +20,8 @@ description: notes: - When using the module please select the appropriate link_aggregation_type (lag_type). C(link) for Port Channel(PC), C(node) for Virtual Port Channel(VPC) and C(leaf) for Leaf Access Port Policy Group. -- More information about the internal APIC classes B(infra:AccBndlGrp) and B(infra:AccPortGrp) at - U(https://developer.cisco.com/site/aci/docs/apis/apic-mim-ref/). +- More information about the internal APIC classes B(infra:AccBndlGrp) and B(infra:AccPortGrp) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Bruno Calogero (@brunocalogero) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_interface_policy_leaf_profile.py b/lib/ansible/modules/network/aci/aci_interface_policy_leaf_profile.py index 25d7736410f..6e57743446f 100644 --- a/lib/ansible/modules/network/aci/aci_interface_policy_leaf_profile.py +++ b/lib/ansible/modules/network/aci/aci_interface_policy_leaf_profile.py @@ -18,8 +18,8 @@ short_description: Manage fabric interface policy leaf profiles (infra:AccPortP) description: - Manage fabric interface policy leaf profiles on Cisco ACI fabrics. notes: -- More information about the internal APIC class B(infra:AccPortP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(infra:AccPortP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Bruno Calogero (@brunocalogero) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_interface_policy_lldp.py b/lib/ansible/modules/network/aci/aci_interface_policy_lldp.py index 3d9d648c72d..d5b7c9c9063 100644 --- a/lib/ansible/modules/network/aci/aci_interface_policy_lldp.py +++ b/lib/ansible/modules/network/aci/aci_interface_policy_lldp.py @@ -17,8 +17,8 @@ short_description: Manage LLDP interface policies (lldp:IfPol) description: - Manage LLDP interface policies on Cisco ACI fabrics. notes: -- More information about the internal APIC class B(lldp:IfPol) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(lldp:IfPol) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_interface_policy_mcp.py b/lib/ansible/modules/network/aci/aci_interface_policy_mcp.py index c2c74491151..90f56fe29af 100644 --- a/lib/ansible/modules/network/aci/aci_interface_policy_mcp.py +++ b/lib/ansible/modules/network/aci/aci_interface_policy_mcp.py @@ -17,8 +17,8 @@ short_description: Manage MCP interface policies (mcp:IfPol) description: - Manage MCP interface policies on Cisco ACI fabrics. notes: -- More information about the internal APIC class B(mcp:IfPol) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(mcp:IfPol) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_interface_policy_port_channel.py b/lib/ansible/modules/network/aci/aci_interface_policy_port_channel.py index 91c60a1b639..29c941587e2 100644 --- a/lib/ansible/modules/network/aci/aci_interface_policy_port_channel.py +++ b/lib/ansible/modules/network/aci/aci_interface_policy_port_channel.py @@ -17,8 +17,8 @@ short_description: Manage port channel interface policies (lacp:LagPol) description: - Manage port channel interface policies on Cisco ACI fabrics. notes: -- More information about the internal APIC class B(lacp:LagPol) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(lacp:LagPol) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_interface_policy_port_security.py b/lib/ansible/modules/network/aci/aci_interface_policy_port_security.py index 0898d580d31..5c0042cd32c 100644 --- a/lib/ansible/modules/network/aci/aci_interface_policy_port_security.py +++ b/lib/ansible/modules/network/aci/aci_interface_policy_port_security.py @@ -17,8 +17,8 @@ short_description: Manage port security (l2:PortSecurityPol) description: - Manage port security on Cisco ACI fabrics. notes: -- More information about the internal APIC class B(l2:PortSecurityPol) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(l2:PortSecurityPol) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_interface_selector_to_switch_policy_leaf_profile.py b/lib/ansible/modules/network/aci/aci_interface_selector_to_switch_policy_leaf_profile.py index 420873de674..d999a4259f6 100644 --- a/lib/ansible/modules/network/aci/aci_interface_selector_to_switch_policy_leaf_profile.py +++ b/lib/ansible/modules/network/aci/aci_interface_selector_to_switch_policy_leaf_profile.py @@ -19,8 +19,8 @@ description: - Bind interface selector profiles to switch policy leaf profiles on Cisco ACI fabrics. notes: - This module requires an existing leaf profile, the module M(aci_switch_policy_leaf_profile) can be used for this. -- More information about the internal APIC class B(infra:RsAccPortP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(infra:RsAccPortP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Bruno Calogero (@brunocalogero) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_l3out_route_tag_policy.py b/lib/ansible/modules/network/aci/aci_l3out_route_tag_policy.py index c63b084386a..2c2514187ad 100644 --- a/lib/ansible/modules/network/aci/aci_l3out_route_tag_policy.py +++ b/lib/ansible/modules/network/aci/aci_l3out_route_tag_policy.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(l3ext:RouteTagPol) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(l3ext:RouteTagPol) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_rest.py b/lib/ansible/modules/network/aci/aci_rest.py index 2cd13536efe..4c6c958d9c5 100644 --- a/lib/ansible/modules/network/aci/aci_rest.py +++ b/lib/ansible/modules/network/aci/aci_rest.py @@ -26,8 +26,8 @@ notes: This is a known APIC problem and has been reported to the vendor. A workaround for this issue exists. More information in :ref:`the ACI documentation `. - XML payloads require the C(lxml) and C(xmljson) python libraries. For JSON payloads nothing special is needed. -- More information regarding the Cisco APIC REST API is available from - U(http://www.cisco.com/c/en/us/td/docs/switches/datacenter/aci/apic/sw/2-x/rest_cfg/2_1_x/b_Cisco_APIC_REST_API_Configuration_Guide.html). +- More information regarding the APIC REST API is available from + L(the Cisco APIC REST API Configuration Guide,http://www.cisco.com/c/en/us/td/docs/switches/datacenter/aci/apic/sw/2-x/rest_cfg/2_1_x/b_Cisco_APIC_REST_API_Configuration_Guide.html). # NOQA author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_static_binding_to_epg.py b/lib/ansible/modules/network/aci/aci_static_binding_to_epg.py index 6ab97dd9ba2..42b8652276e 100644 --- a/lib/ansible/modules/network/aci/aci_static_binding_to_epg.py +++ b/lib/ansible/modules/network/aci/aci_static_binding_to_epg.py @@ -20,8 +20,8 @@ description: notes: - The C(tenant), C(ap), C(epg) used must exist before using this module in your playbook. The M(aci_tenant), M(aci_ap), M(aci_epg) modules can be used for this. -- More information about the internal APIC classes B(fv:RsPathAtt) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC classes B(fv:RsPathAtt) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Bruno Calogero (@brunocalogero) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_switch_leaf_selector.py b/lib/ansible/modules/network/aci/aci_switch_leaf_selector.py index 61f466a91f4..8eac9cfd451 100644 --- a/lib/ansible/modules/network/aci/aci_switch_leaf_selector.py +++ b/lib/ansible/modules/network/aci/aci_switch_leaf_selector.py @@ -20,8 +20,8 @@ description: notes: - This module is to be used with M(aci_switch_policy_leaf_profile) One first creates a leaf profile (infra:NodeP) and then creates an associated selector (infra:LeafS), -- More information about the internal APIC classes B(infra:LeafS), B(infra:NodeBlk) and B(infra:RsAccNodePGrp) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC classes B(infra:LeafS), B(infra:NodeBlk) and B(infra:RsAccNodePGrp) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Bruno Calogero (@brunocalogero) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_switch_policy_leaf_profile.py b/lib/ansible/modules/network/aci/aci_switch_policy_leaf_profile.py index f03e95c1fb7..37017c1f128 100644 --- a/lib/ansible/modules/network/aci/aci_switch_policy_leaf_profile.py +++ b/lib/ansible/modules/network/aci/aci_switch_policy_leaf_profile.py @@ -18,8 +18,8 @@ short_description: Manage switch policy leaf profiles (infra:NodeP) description: - Manage switch policy leaf profiles on Cisco ACI fabrics. notes: -- More information about the internal APIC class B(infra:NodeP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(infra:NodeP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Bruno Calogero (@brunocalogero) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_switch_policy_vpc_protection_group.py b/lib/ansible/modules/network/aci/aci_switch_policy_vpc_protection_group.py index 533623abf39..4cb843e071a 100644 --- a/lib/ansible/modules/network/aci/aci_switch_policy_vpc_protection_group.py +++ b/lib/ansible/modules/network/aci/aci_switch_policy_vpc_protection_group.py @@ -18,8 +18,8 @@ short_description: Manage switch policy explicit vPC protection groups (fabric:E description: - Manage switch policy explicit vPC protection groups on Cisco ACI fabrics. notes: -- More information about the internal APIC classes B(fabric:ExplicitGEp) and B(fabric:NodePEp) at - U(https://developer.cisco.com/site/aci/docs/apis/apic-mim-ref/). +- More information about the internal APIC classes B(fabric:ExplicitGEp) and B(fabric:NodePEp) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Bruno Calogero (@brunocalogero) version_added: '2.5' diff --git a/lib/ansible/modules/network/aci/aci_taboo_contract.py b/lib/ansible/modules/network/aci/aci_taboo_contract.py index 3d61b6c922d..035b4718209 100644 --- a/lib/ansible/modules/network/aci/aci_taboo_contract.py +++ b/lib/ansible/modules/network/aci/aci_taboo_contract.py @@ -20,8 +20,8 @@ description: notes: - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(vz:BrCP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(vz:BrCP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_tenant.py b/lib/ansible/modules/network/aci/aci_tenant.py index e697130147d..319ccd351b8 100644 --- a/lib/ansible/modules/network/aci/aci_tenant.py +++ b/lib/ansible/modules/network/aci/aci_tenant.py @@ -17,8 +17,8 @@ short_description: Manage tenants (fv:Tenant) description: - Manage tenants on Cisco ACI fabrics. notes: -- More information about the internal APIC class B(fv:Tenant) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fv:Tenant) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_tenant_action_rule_profile.py b/lib/ansible/modules/network/aci/aci_tenant_action_rule_profile.py index 7e1d30724b4..ad3158a5098 100644 --- a/lib/ansible/modules/network/aci/aci_tenant_action_rule_profile.py +++ b/lib/ansible/modules/network/aci/aci_tenant_action_rule_profile.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(rtctrl:AttrP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(rtctrl:AttrP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_tenant_ep_retention_policy.py b/lib/ansible/modules/network/aci/aci_tenant_ep_retention_policy.py index dde7abc295a..fa97dac1e37 100755 --- a/lib/ansible/modules/network/aci/aci_tenant_ep_retention_policy.py +++ b/lib/ansible/modules/network/aci/aci_tenant_ep_retention_policy.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(fv:EpRetPol) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fv:EpRetPol) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Swetha Chunduri (@schunduri) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_tenant_span_dst_group.py b/lib/ansible/modules/network/aci/aci_tenant_span_dst_group.py index 77e8a1dc9c2..d99a7ccca63 100644 --- a/lib/ansible/modules/network/aci/aci_tenant_span_dst_group.py +++ b/lib/ansible/modules/network/aci/aci_tenant_span_dst_group.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(span:DestGrp) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(span:DestGrp) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Dag Wieers (@dagwieers) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_tenant_span_src_group.py b/lib/ansible/modules/network/aci/aci_tenant_span_src_group.py index 2f8eca4a779..b939e744db8 100755 --- a/lib/ansible/modules/network/aci/aci_tenant_span_src_group.py +++ b/lib/ansible/modules/network/aci/aci_tenant_span_src_group.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(span:SrcGrp) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(span:SrcGrp) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_tenant_span_src_group_to_dst_group.py b/lib/ansible/modules/network/aci/aci_tenant_span_src_group_to_dst_group.py index 4605d72b537..08f5e443642 100755 --- a/lib/ansible/modules/network/aci/aci_tenant_span_src_group_to_dst_group.py +++ b/lib/ansible/modules/network/aci/aci_tenant_span_src_group_to_dst_group.py @@ -19,8 +19,8 @@ description: notes: - The C(tenant), C(src_group), and C(dst_group) must exist before using this module in your playbook. The M(aci_tenant), M(aci_tenant_span_src_group), and M(aci_tenant_span_dst_group) modules can be used for this. -- More information about the internal APIC class B(span:SrcGrp) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(span:SrcGrp) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/modules/network/aci/aci_vlan_pool.py b/lib/ansible/modules/network/aci/aci_vlan_pool.py index b724990b772..926a123abc3 100644 --- a/lib/ansible/modules/network/aci/aci_vlan_pool.py +++ b/lib/ansible/modules/network/aci/aci_vlan_pool.py @@ -19,8 +19,8 @@ short_description: Manage VLAN pools (fvns:VlanInstP) description: - Manage VLAN pools on Cisco ACI fabrics. notes: -- More information about the internal APIC class B(fvns:VlanInstP) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fvns:VlanInstP) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) - Dag Wieers (@dagwieers) diff --git a/lib/ansible/modules/network/aci/aci_vlan_pool_encap_block.py b/lib/ansible/modules/network/aci/aci_vlan_pool_encap_block.py index fab87021399..6fa56773714 100644 --- a/lib/ansible/modules/network/aci/aci_vlan_pool_encap_block.py +++ b/lib/ansible/modules/network/aci/aci_vlan_pool_encap_block.py @@ -20,8 +20,8 @@ description: - Manage VLAN encap blocks that are assigned to VLAN pools on Cisco ACI fabrics. notes: - The C(pool) must exist in order to add or delete a encap block. -- More information about the internal APIC class B(fvns:EncapBlk) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fvns:EncapBlk) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) - Dag Wieers (@dagwieers) diff --git a/lib/ansible/modules/network/aci/aci_vrf.py b/lib/ansible/modules/network/aci/aci_vrf.py index 1f0fde25442..982a36cf86d 100644 --- a/lib/ansible/modules/network/aci/aci_vrf.py +++ b/lib/ansible/modules/network/aci/aci_vrf.py @@ -20,8 +20,8 @@ description: notes: - The C(tenant) used must exist before using this module in your playbook. The M(aci_tenant) module can be used for this. -- More information about the internal APIC class B(fv:Ctx) at - U(https://developer.cisco.com/docs/apic-mim-ref/). +- More information about the internal APIC class B(fv:Ctx) from + L(the APIC Management Information Model reference,https://developer.cisco.com/docs/apic-mim-ref/). author: - Jacob McGill (@jmcgill298) version_added: '2.4' diff --git a/lib/ansible/utils/module_docs_fragments/aci.py b/lib/ansible/utils/module_docs_fragments/aci.py index 48c08473066..dc67710c8dc 100644 --- a/lib/ansible/utils/module_docs_fragments/aci.py +++ b/lib/ansible/utils/module_docs_fragments/aci.py @@ -47,8 +47,8 @@ options: description: - Influence the output of this ACI module. - C(normal) means the standard output, incl. C(current) dict - - C(info) means informational output, incl. C(previous), C(proposed) and C(sent) dicts - - C(debug) means debugging output, incl. C(filter_string), C(method), C(response), C(status) and C(url) information + - C(info) adds informational output, incl. C(previous), C(proposed) and C(sent) dicts + - C(debug) adds debugging output, incl. C(filter_string), C(method), C(response), C(status) and C(url) information choices: [ debug, info, normal ] default: normal timeout: