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: VcDatastoreService.ts
import { MissingRequiredParameterError } from "../../utilities/Extensions";
import { VcBaseService } from "./VcBaseService";
export class VcDatastoreService extends VcBaseService {
constructor(strProjectID: string) {
if (!strProjectID) {
throw new MissingRequiredParameterError('strProjectID');
}
super(strProjectID, "VcDatastore");
}
}Class Functions:
- Function: Get All vCenter Virtual Machine Config Files on All Datastores
- Function: vCenter Datastore Cluster Get Space Utilization Threshold
- Function: vCenter Datastore Create NFS
- Function: vCenter Datastore Get All Files
- Function: vCenter Datastore Has Enough Free Space
- Function: vCenter Datastore IsType ?
Discover more from Cloud Build Tools
Subscribe to get the latest posts sent to your email.
