Orchestrator Function: Update a Records IpAddress using the Infoblox Plugin

by Simon Sparks · 29 January 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 update a records IpAddress using the Infoblox plugin

Function: UpdateRecordIpAddress

publicUpdateRecordIpAddress(objIpamConnection:IpamConnection,strFQDN:string,strIpAddress:string,strDnsView:string="default",strNetworkView:string="default"):void{

try{
objIpamConnection.reconnect();
objIpamConnection.configDefaultNetworkView=strNetworkView;
objIpamConnection.configDefaultDnsView=strDnsView;

letobjIpamDnsRecordManager:IpamDnsRecordManager=objIpamConnection.getDnsRecordManager();

objIpamDnsRecordManager.changeIpAddress(strFQDN,strDnsView,strIpAddress);
}
catch (objException){
this.objLogger.info(objException);
}
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like