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 delete an Ipam Network View using the Infoblox Plugin.
Function: IpamNetworkViewDelete
public IpamNetworkViewDelete(objIpamConnection: IpamConnection, strNetworkViewReference: string): boolean {
let objIpamViewManager: IpamViewManager = objIpamConnection.getViewManager();
try {
objIpamViewManager.removeNetworkView(strNetworkViewReference)
return true;
}
catch (objException) {
return false;
}
}Discover more from Cloud Build Tools
Subscribe to get the latest posts sent to your email.
