Orchestrator Function: Get an Ipam Fixed Address by Ip Address

by Simon Sparks · 8 March 2026

To use this function add it to the class library file named InfobloxService.ts

GitHub Repository: https://github.com/SimonSparksUK/Orchestrator

Filename: InfobloxService.ts

Description: Orchestrator Function to get an Ipam Fixed Address by Ip Address.

Function: IpamFixedAddressGetByIpAddress

publicIpamFixedAddressGetByIpAddress(objIpamConnection:IpamConnection,strIpamNetworkView:string,strIpAddress:string):IpamFixedAddress{
letobjIpamFixedAddressManager:IpamFixedAddressManager=objIpamConnection.getFixedAddressManager();

letobjIpamFixedAddress:IpamFixedAddress=objIpamFixedAddressManager.getFixedAddressByIP(strIpAddress,strIpamNetworkView);

returnobjIpamFixedAddress;
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like