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: VcClusterComputeResourceService.ts
import { MissingRequiredParameterError } from "../../utilities/Extensions";
import { VcBaseService } from "./VcBaseService";
export class VcClusterComputeResourceService extends VcBaseService {
constructor(strProjectID: string) {
if (!strProjectID) {
throw new MissingRequiredParameterError('strProjectID');
}
super(strProjectID, "VcClusterComputeResource");
}
}Class Functions:
- Function: vCenter Cluster Compute Resource Configure DNS
- Function: vCenter Cluster Compute Resource Configure Power Policy
- Function: vCenter Cluster Compute Resource Get Best VcHostSystem
- Function: vCenter Cluster Compute Resource Get VcGuestOsDescriptors
- Function: vCenter Cluster Compute Resource IPv6 Toggle
- Function: vCenter Cluster Compute Resource NTP Server Toggle
- Function: vCenter Cluster Compute Resource Reconfigure
- Function: vCenter Cluster Compute Resource Rescan Storage
- Function: vCenter Cluster Compute Resource Set License Key
- Function: vCenter Cluster Compute Resource Set Minimum Hardware Version
Discover more from Cloud Build Tools
Subscribe to get the latest posts sent to your email.
