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:
- Function: Active Directory Create AD Host
- Function: Active Directory Field Functions – Base – AD Group – Get, Set and Add
- Function: Active Directory Field Functions – Base – AD OrganizationalUnit – Get, Set and Add
- Function: Active Directory Field Functions – Base – AD User – Get, Set and Add
- Function: Active Directory Field Functions – Base – AD UserGroup – Get, Set and Add
- Function: Active Directory Object Base Functions – Search
- Function: Remove All Computer Accounts from an OU in Active Directory using the Microsoft AD Plugin
- Function: Server Find All For Type ( AD )
- Function: Server Find For Type ( AD )
Discover more from Cloud Build Tools
Subscribe to get the latest posts sent to your email.
