vCO Workflow Script to Create a vCloud Event Log Entry
The following is the vCO Workflow Script to Create a vCloud Event Log Entry. var objVclEvent; objVclEvent = new VclEvent(); objVclEvent.type... Continue reading →
The home of everything vRealize
The following is the vCO Workflow Script to Create a vCloud Event Log Entry. var objVclEvent; objVclEvent = new VclEvent(); objVclEvent.type... Continue reading →
The following script enables the copying of Firewall Rules from a vShield Edge Device to another var objVclGatewayConfiguration; objVclGatewayConfiguration =... Continue reading →
The following is the script to wait for a vCloud task to complete if (objVclTask != null) { while (true)... Continue reading →
The following script checks the vShield Load Balancer Configuration System.log("============================================================"); System.log("===== Edge Gateway Name: " + objOrgVdcGateway.name); System.log("============================================================"); var objVclGatewayConfiguration;... Continue reading →
The following is the script to add CPUs to a vCloud virtual machine objVclVM.updateInternalState(); var objVclCimUnsignedInt; objVclCimUnsignedInt =... Continue reading →
The following is the script to add memory to a vCloud virtual machine objVclVM.updateInternalState(); var objVclVirtualMemory; objVclVirtualMemory = objVclVM.getMemory();... Continue reading →
The following is the script to create a vShield Load Balancer var objVclAdminVdc; objVclAdminVdc = objVclVdc.toAdminObject(); var arrVclGateway; arrVclGateway... Continue reading →
The following script enables the addition of a firewall rule to a vShield Edge Device objVclGateway.updateInternalState(); var objVclFirewallRuleProtocols;... Continue reading →
The following script enables you to find a vCloud virtual data center and virtual data center network object by name... Continue reading →
The following script enables an array of VclVM objects to be un-deployed. for(var i = 0; i < arrVclVm.length; i++)... Continue reading →