Orchestrator Function: Check if a Network View Owns a Dns View Name using the Infoblox Plugin

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 check if a Network View Owns a Dns View Name using the Infoblox Plugin.

Function: IpamNetworkViewOwnsDnsView

publicIpamNetworkViewOwnsDnsView(objIpamConnection:IpamConnection,strNetworkView:string,strDnsView:string):boolean{
letobjIpamViewManager:IpamViewManager=objIpamConnection.getViewManager();

letblnIsDnsViewOwnedByNetworkView:boolean=objIpamViewManager.isDnsViewOwnedByNetworkView(strDnsView,strNetworkView);

returnblnIsDnsViewOwnedByNetworkView;
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like