This is a sample of how to create service which extends the OrchestratorBaseService using the Build Tools.
GitHub Repository: https://github.com/SimonSparksUK/Orchestrator
Filename: OrchestratorPluginAVIService.ts
import{MissingRequiredParameterError}from"../../utilities/Extensions";
import{PluginBaseService}from"./PluginBaseService";
exportclassPluginAVIServiceextendsPluginBaseService{
constructor(strProjectID:string){
if (!strProjectID){
thrownewMissingRequiredParameterError('strProjectID');
}
super(strProjectID,"PluginAVI");
}
}Class Functions:
- Orchestrator Function: Add an AVI Controller
- Orchestrator Function: Find All For Type ( AVI )
- Orchestrator Function: Get All AVI Controllers
- Orchestrator Function: Get AVI Controller by Name
- Orchestrator Function: Remove an AVI Controller
- Orchestrator Function: Server Find For Type ( AVI )
Discover more from Cloud Build Tools
Subscribe to get the latest posts sent to your email.
