Function: Remove an Ipam Fixed 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 remove an Ipam Fixed Address.

Function: IpamFixedAddressRemove

public IpamFixedAddressRemove(objIpamConnection: IpamConnection, objIpamFixedAddress: IpamFixedAddress): boolean {
    let objIpamFixedAddressManager: IpamFixedAddressManager = objIpamConnection.getFixedAddressManager();

    try {
        objIpamFixedAddressManager.removeFixedAddress(objIpamFixedAddress.reference);

        return true;
    }
    catch (objException) {
        return false;
    }
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like