Function: Un-Deploy VMs ( Power Off to You and Me )

by Simon Sparks · 5 September 2025

To use this function add it to the class library file named vCloudService.ts

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

Filename: vCloudService.ts

Description: Orchestrator Function to undeploy an array of VclVApp.

Function VclVAppsUndeploy

public VclVAppsUndeploy(arrVclVApp: VclVApp[]): void { 

    arrVclVApp.forEach((objVclVApp: VclVApp):void => { 
        this.VclVAppUndeploy(objVclVApp);
    });
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like