Orchestrator Function: Check the Type of an Ipam Connection

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 the type of an Ipam Connection.

Function: IpamConnectionIsWAPI

publicIpamConnectionIsWAPI(objIpamConnection:IpamConnection):boolean{
returnobjIpamConnection.apiType===IpamApiType.WAPI;
}

Function: IpamConnectionIsCLOUDAPI

publicIpamConnectionIsCLOUDAPI(objIpamConnection:IpamConnection):boolean{
returnobjIpamConnection.apiType===IpamApiType.CLOUD_API;
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like