Orchestrator Function: Get All Dns View Names from an Ipam Network View 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 get All Dns View Names from an Ipam Network View using the Infoblox Plugin.

Function: IpamNetworkViewGetDnsViewNames

publicIpamNetworkViewGetDnsViewNames(objIpamConnection:IpamConnection,strNetworkViewReference:string):string[]{

letobjIpamViewManager:IpamViewManager=objIpamConnection.getViewManager();

letarrDnsView:string[]=objIpamViewManager.getDnsViewsForNetworkView(strNetworkViewReference);

returnarrDnsView;
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like