Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IPAM Address and Next Available IP Support for Bloxone Ansible v2 #55

Merged
merged 22 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelogs/fragments/55-ipam-address.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
deprecated_features:
- b1_ipam_ipv4_reservation - is deprecated in favor of 'ipam_address'.
- b1_ipam_ipv4_reservation_gather - is deprecated in favor of 'ipam_address_info'.
12 changes: 12 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ action_groups:
- ipam_host
- ipam_host_info
- ipam_next_available_address_block_info
- ipam_address
- ipam_address_info
- ipam_next_available_ip_info

infra:
- infra_join_token
Expand Down Expand Up @@ -87,3 +90,12 @@ plugin_routing:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.ipam_host_info instead.

b1_ipam_ipv4_reservation:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.ipam_address instead.
b1_ipam_ipv4_reservation_gather:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.ipam_address_info instead.
4 changes: 4 additions & 0 deletions plugins/modules/b1_ipam_ipv4_reservation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
author: "Amit Mishra (@amishra), Sriram Kannan(@kannans)"
short_description: Configure IPv4 address reservation on Infoblox BloxOne DDI
version_added: "1.0.1"
deprecated:
removed_in: 3.0.0
why: This module is deprecated and will be removed in version 3.0.0. Use M(ipam_address) instead.
alternative: Use M(ipam_address) instead.
description:
- Get, Create, Update and Delete IPv4 address reservation on Infoblox BloxOne DDI. This module manages the IPAM IPv4 address reservation object using BloxOne REST APIs.
requirements:
Expand Down
4 changes: 4 additions & 0 deletions plugins/modules/b1_ipam_ipv4_reservation_gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
author: "Amit Mishra (@amishra), Sriram Kannan(@kannans)"
short_description: Gather information about Address Block in B1DDI
version_added: "1.0.1"
deprecated:
removed_in: 3.0.0
why: This module is deprecated and will be removed in version 3.0.0. Use M(ipam_address_info) instead.
alternative: Use M(ipam_address_info) instead.
description:
- Gather information about Address Block object on Infoblox BloxOne DDI. This module gather information about address block object using BloxOne REST APIs.
requirements:
Expand Down
Loading
Loading