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
private AviServiceBuild(intPort: number, blnEnableHttp2: boolean = false, blnEnableSSL: boolean = false): AviService {
let objAviService: AviService = new AviService();
objAviService.setEnableHttp2(blnEnableHttp2);
objAviService.setEnableSsl(blnEnableSSL);
objAviService.setPortRangeEnd(intPort);
objAviService.setPort(intPort);
return objAviService;
}Discover more from Cloud Build Tools
Subscribe to get the latest posts sent to your email.
