Orchestrator Class Library: Orchestrator Plugin VCF Automation Service

by Simon Sparks · 28 February 2026

This is a sample of how to create service which extends the PluginBaseService using the Build Tools.

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

Filename: PluginVCFAService.ts

import{MissingRequiredParameterError}from"../../utilities/Extensions";
import{PluginBaseService}from"./PluginBaseService";

exportclassPluginVCFAServiceextendsPluginBaseService{

constructor(strProjectID:string){

if (!strProjectID){
thrownewMissingRequiredParameterError('strProjectID');
}

super(strProjectID,"PluginVCFA");
}
}

Class Functions:


Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like