Function: vRA Cloud Zone Service Create

by Simon Sparks · 11 February 2026

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

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

Filename: OrchestratorPluginVRAService.ts

Description: Orchestrator Function to Create a vRA Cloud Zone Service

Private Function: VraCloudZoneServiceCreate

private VraCloudZoneServiceCreate(objVraHost: VraHost): VraCloudZoneService {
    let objVraInfrastructureClient: VraInfrastructureClient = objVraHost.createInfrastructureClient();

    let objVraCloudZoneService: VraCloudZoneService = objVraInfrastructureClient.createCloudZoneService();

    return objVraCloudZoneService;
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like