Class: Orchestrator Plugin Active Directory Service

by Simon Sparks · 1 September 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: OrchestratorPluginADService.ts

import { ResourceElementAccessor } from "com.vmware.pscoe.library.ts.util/ResourceElementAccessor";
import { MissingRequiredParameterError } from "../Extensions";
import { OrchestratorBaseService } from "../OrchestratorBaseService";

export class OrchestratorPluginADService extends OrchestratorBaseService {
    private objADHost: AD_Host;

    constructor(strProjectID: string) {

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

        super(strProjectID, "PluginAD");

        this.objADHost = this.objConfigElementAccessorEnvironment.get<AD_Host>("AD_Host");
    }
    
}

Class Functions:


Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like