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 Host Support for Bloxone Ansible v2 #52

Merged
merged 24 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f2071d3
generated resources for ipam_host and added examples
VishrutiBuddhadev Dec 10, 2024
36236b0
written integration tests for ipam_host
VishrutiBuddhadev Dec 10, 2024
4124d2e
deprecate b1_ipam_host and b1_ipam_host_gather
VishrutiBuddhadev Dec 10, 2024
38a69ee
Merge branch 'v2' into ipam_host
VishrutiBuddhadev Dec 10, 2024
cf5cfd2
fixed sanity issues and added empty line at the end
VishrutiBuddhadev Dec 11, 2024
00d9e16
removed instances of inherit
VishrutiBuddhadev Dec 11, 2024
b15c0b2
fixed documentation and added empty line at the end of file
VishrutiBuddhadev Dec 11, 2024
ca9c709
refactored integration tests
VishrutiBuddhadev Dec 12, 2024
1047ea3
addressed review comments
VishrutiBuddhadev Dec 17, 2024
b3f49dc
fixed sanity issues
VishrutiBuddhadev Dec 17, 2024
7efcdff
modified examples
VishrutiBuddhadev Dec 19, 2024
c6ed192
fixed sanity issues
VishrutiBuddhadev Dec 19, 2024
bd79d18
Merge branch 'v2' into ipam_host
VishrutiBuddhadev Dec 19, 2024
96fd2a9
addressed review comments
VishrutiBuddhadev Dec 19, 2024
ed20b91
added new line at the end
VishrutiBuddhadev Dec 19, 2024
4a8dc18
Merge branch 'v2' into ipam_host
VishrutiBuddhadev Dec 23, 2024
3bc54b2
modified examples
VishrutiBuddhadev Jan 3, 2025
fafa557
modified examples
VishrutiBuddhadev Jan 3, 2025
07626de
added code for cleanup
VishrutiBuddhadev Jan 6, 2025
24b33a1
addressed review comments
VishrutiBuddhadev Jan 6, 2025
210defc
added new line
VishrutiBuddhadev Jan 6, 2025
faa4cdd
addressed review comments
VishrutiBuddhadev Jan 8, 2025
3c195b8
addressed review comments
VishrutiBuddhadev Jan 9, 2025
4af66b3
Merge branch 'v2' into ipam_host
mathewab Jan 9, 2025
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/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'.
11 changes: 11 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ action_groups:
- ipam_subnet_info
- ipam_address_block
- ipam_address_block_info
- ipam_host
- ipam_host_info

infra:
- infra_join_token
Expand Down Expand Up @@ -75,3 +77,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
Loading