Class: Orchestrator Plugin vCenter Service

by Simon Sparks · 5 October 2025

Over the course of the next 12 months I will be adding functions to this page so bookmark it and come back regularly for new cool features and updates.

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

Filename: PluginVCService.ts

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

export class PluginVCService extends PluginBaseService {

    constructor(strProjectID: string, strServiceName: string) {

        if (!strProjectID) {
            throw new MissingRequiredParameterError('strProjectID');
        }

        super(strProjectID, `PluginVC${strServiceName}`);
    }
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like