Skip to content

Commit

Permalink
Merge branch 'v2' of github.com:infobloxopen/bloxone-ansible into nex…
Browse files Browse the repository at this point in the history
…t-available
  • Loading branch information
VishrutiBuddhadev committed Jan 10, 2025
2 parents 4cff777 + c7fccd1 commit e2b4db5
Show file tree
Hide file tree
Showing 16 changed files with 2,221 additions and 3 deletions.
3 changes: 3 additions & 0 deletions changelogs/fragments/52-ipam-host.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
deprecated_features:
- b1_ipam_host - is deprecated in favor of 'ipam_host'.
- b1_ipam_host_gather - is deprecated in favor of 'ipam_host_info'.
14 changes: 14 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,20 @@ action_groups:
- dns_auth_zone_info
- dns_forward_zone
- dns_forward_zone_info
- dns_auth_nsg
- dns_auth_nsg_info
- dns_delegation
- dns_delegation_info

ipam:
- ipam_ip_space
- ipam_ip_space_info
- ipam_subnet
- ipam_subnet_info
- ipam_address_block
- ipam_address_block_info
- ipam_host
- ipam_host_info
- ipam_next_available_address_block_info

infra:
Expand Down Expand Up @@ -73,3 +78,12 @@ plugin_routing:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.dns_auth_zone_info instead.

b1_ipam_host:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.ipam_host instead.
b1_ipam_host_gather:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.ipam_host_info instead.
4 changes: 4 additions & 0 deletions plugins/modules/b1_ipam_host.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
author: "Akhilesh Kabade (@akhilesh-kabade-infoblox), Sriram Kannan(@kannans)"
short_description: Configure Host 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_host) instead.
alternative: Use M(ipam_host) instead.
description:
- Create, Update and Delete Hosts on Infoblox BloxOne DDI. This module manages the IPAM Host object using BloxOne REST APIs.
requirements:
Expand Down
6 changes: 5 additions & 1 deletion plugins/modules/b1_ipam_host_gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@

DOCUMENTATION = """
---
module: b1_ipam_ip_space
module: b1_ipam_host
author: "Akhilesh Kabade (@akhilesh-kabade-infoblox)"
short_description: Gather IPAM host facts
deprecated:
removed_in: 3.0.0
why: This module is deprecated and will be removed in version 3.0.0. Use M(ipam_host_info) instead.
alternative: Use M(ipam_host_info) instead.
description:
- Gather facts about IPAM hosts in Infoblox BloxOne DDI. This module gathers facts of IPAM Hosts object using BloxOne REST APIs.
requirements:
Expand Down
Loading

0 comments on commit e2b4db5

Please sign in to comment.