Class 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";

export class PluginVCFAService extends PluginBaseService {

    constructor(strProjectID: string) {

        if (!strProjectID) {
            throw new MissingRequiredParameterError('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