To use this function add it to the class library file named vCenterServerService.ts
GitHub Repository: https://github.com/SimonSparksUK/Orchestrator
Filename: vCenterServerService.ts
public VcVirtualMachineSetGuestID(objVcVirtualMachine: VcVirtualMachine, strGuestId: string): boolean {
let objVcVirtualMachineConfigSpec: VcVirtualMachineConfigSpec = new VcVirtualMachineConfigSpec();
objVcVirtualMachineConfigSpec.guestId = strGuestId;
let blnResult: boolean = this.VcVirtualMachineReconfigure(objVcVirtualMachine, objVcVirtualMachineConfigSpec);
return blnResult;
}Discover more from Cloud Build Tools
Subscribe to get the latest posts sent to your email.
