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

DHCP Fixed address #42

Draft
wants to merge 9 commits into
base: v2
Choose a base branch
from
3 changes: 3 additions & 0 deletions changelogs/fragments/38-fixed-address.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
deprecated_features:
- b1_ipam_fixed_address - is deprecated in favor of `ipam_fixed_address`.
- b1_ipam_fixed_address_gather - is deprecated in favor of `ipam_fixed_address_info`.
13 changes: 13 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ action_groups:
extend_group:
- ipam
- dns
- dhcp
dns:
- dns_view
- dns_view_info
Expand All @@ -18,6 +19,9 @@ action_groups:
- ipam_subnet_info
- ipam_address_block
- ipam_address_block_info
dhcp:
- dhcp_fixed_address
- dhcp_fixed_address_info

plugin_routing:
modules:
Expand Down Expand Up @@ -65,3 +69,12 @@ plugin_routing:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.dns_auth_zone_info instead.

b1_ipam_fixed_address:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.dhcp_fixed_address instead.
b1_ipam_fixed_address_gather:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.dhcp_fixed_address_info instead.
4 changes: 4 additions & 0 deletions plugins/modules/b1_ipam_fixed_address.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
contributor: "Chris Marrison (@ccmarris)"
short_description: Configure fixed address on Infoblox BloxOne DDI
version_added: "1.1.2"
deprecated:
removed_in: "3.0.0"
why: "This module is being deprecated and will be removed in version 3.0.0."
alternative: "Use the M(ipam_fixed_address) module instead."
description:
- Get, Create, Update and Delete fixed address on Infoblox BloxOne DDI. This module manages the fixed address object using BloxOne REST APIs.
requirements:
Expand Down
4 changes: 4 additions & 0 deletions plugins/modules/b1_ipam_fixed_address_gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
author: "Amit Mishra (@amishra)"
short_description: Configure IP space on Infoblox BloxOne DDI
version_added: "1.0.1"
deprecated:
removed_in: "3.0.0"
why: "This module is being deprecated and will be removed in version 3.0.0."
alternative: "Use the M(ipam_fixed_address_info) module instead."
description:
- Gather information about a fixed address object on Infoblox BloxOne DDI. This module gathers the fixed_address object using BloxOne REST APIs.
requirements:
Expand Down
Loading
Loading