mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-18 14:21:06 -07:00
New Module : aos_ip_pool as part of network/aos (#21044)
* Initial version of aos_ip_pool module * Add examples for IP Pool * Break down ip_pool into smaller function * Refactor do_load_resource * Add get_display_name_from_file * Add ‘src’ as an option to load ip pool from JSON file * Rename directory network/apstra to network/aos * Remove exception handling temporary * Remove all ‘Exception as XX’ to be python 2.4 compatible * Replace ‘== False’ with ‘is False’ for PEP8 Test * Update documentation to be Yaml compatible * Lisg all method imported from module_utils.aos * Refactor to align with collection.find() changes * Update examples by @gundalow’s recommendations * Update Documentation per @gundalow’s recommendations * Change the license per @gundalow recommendation * Add exception handling for get_aos_session * Change Auth format and add check_aos_version() to check minimum version * Add a check for minimum version * Refactor ‘src’ into ‘content’ to allow more options Remove get_display_name_from_file in aos.py Add content_to_dict in aos.py * Fix variable name in do_load_resource * Add mention of aos.py in module_utilities doc * Add try/except for import yaml * Add try/Except around main block of code and function * Refactor to auto detect content_format, update doc accordingly * Change create_new_ip_pool inputs * Remove unused import * Remove in_use as it’s never used * Fix doc format * Add version number in requirement doc
This commit is contained in:
parent
22701806c3
commit
b71a62283c
4 changed files with 529 additions and 3 deletions
|
@ -10,6 +10,7 @@ The following is a list of module_utils files and a general description. The mod
|
|||
|
||||
- a10.py - Utilities used by the a10_server module to manage A10 Networks devices.
|
||||
- api.py - Adds shared support for generic API modules.
|
||||
- aos.py - Module support utilities for managing Apstra AOS Server.
|
||||
- asa.py - Module support utilities for managing Cisco ASA network devices.
|
||||
- azure_rm_common.py - Definitions and utilities for Microsoft Azure Resource Manager template deployments.
|
||||
- basic.py - General definitions and helper utilities for Ansible modules.
|
||||
|
@ -17,8 +18,8 @@ The following is a list of module_utils files and a general description. The mod
|
|||
- database.py - Miscellaneous helper functions for PostGRES and MySQL
|
||||
- docker_common.py - Definitions and helper utilities for modules working with Docker.
|
||||
- ec2.py - Definitions and utilities for modules working with Amazon EC2
|
||||
- eos.py - Helper functions for modules working with EOS networking devices.
|
||||
- f5.py - Helper functions for modules working with F5 networking devices.
|
||||
- eos.py - Helper functions for modules working with EOS networking devices.
|
||||
- f5.py - Helper functions for modules working with F5 networking devices.
|
||||
- facts.py - Helper functions for modules that return facts.
|
||||
- gce.py - Definitions and helper functions for modules that work with Google Compute Engine resources.
|
||||
- ios.py - Definitions and helper functions for modules that manage Cisco IOS networking devices
|
||||
|
@ -43,6 +44,6 @@ The following is a list of module_utils files and a general description. The mod
|
|||
- six.py - Module utils for working with the Six python 2 and 3 compatibility library
|
||||
- splitter.py - String splitting and manipulation utilities for working with Jinja2 templates
|
||||
- urls.py - Utilities for working with http and https requests
|
||||
- vca.py - Contains utilities for modules that work with VMware vCloud Air
|
||||
- vca.py - Contains utilities for modules that work with VMware vCloud Air
|
||||
- vmware.py - Contains utilities for modules that work with VMware vSphere VMs
|
||||
- vyos.py - Definitions and functions for working with VyOS networking
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue