Function: vCenter VAPI Endpoint Get All

by Simon Sparks · 11 February 2026

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

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

Filename: vCenterVAPIService.ts

Description: Orchestrator Function to Get All vCenter VAPI Endpoints

Function VAPIEndpointGetAll

public VAPIEndpointGetAll(): VAPIEndpoint[] {

    try {
        let arrVAPIEndpoint: VAPIEndpoint[] = VAPIManager.getAllEndpoints();

        return arrVAPIEndpoint;
    }
    catch (objException) {
        return [];
    }
}

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like