Function: Get All Ipam Network View Names 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 Ipam Network Views using the Infoblox plugin

Function: IpamNetworkViewGetAllNames

public IpamNetworkViewGetAllNames(objIpamConnection: IpamConnection): string[] {

    let arrIpamNetworkView: IpamNetworkView[] = this.IpamNetworkViewGetAll(objIpamConnection);

    let arrNetworkViewsName: string[] = arrIpamNetworkView.map((objIpamNetworkView: IpamNetworkView): string => {
        return objIpamNetworkView.name;
    });

    return arrNetworkViewsName;
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like