Orchestrator Function: AVI Service Build

by Simon Sparks · 11 March 2026

To use this function add it to the class library file named PluginAVIService.ts

GitHub Repository: https://github.com/SimonSparksUK/Orchestrator

Filename: PluginAVIService.ts

Description: Orchestrator Function to Build an AVI Service.

Private Function: AviServiceBuild

privateAviServiceBuild(intPort:number,blnEnableHttp2:boolean=false,blnEnableSSL:boolean=false):AviService{
letobjAviService:AviService=newAviService();
objAviService.setEnableHttp2(blnEnableHttp2);
objAviService.setEnableSsl(blnEnableSSL);
objAviService.setPortRangeEnd(intPort);
objAviService.setPort(intPort);

returnobjAviService;
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like