vRO
-
VMWare
Get all the reservation policies of a vRA instance
Get all the reservation policies of a vRA instance (using the CAFE plug-in). vRA // VMware vRealize Orchestrator action sample //…
Read More » -
VMWare
how to push vm into bios next boot
Push VM into BIOS next boot // VMware vRealize Orchestrator Task sample // // push vm into bios next boot…
Read More » -
VMWare
Send Mail Notification via vRO8.x
Send Notification workflow Pre-Built workflow for sending notifications are in place under Library>Mail>Send Notification Copy it to your own…
Read More » -
VMWare
Setting Maximum Limit to Add additional disks in vRA 8.x
Setting Maximum Limit to Add additional disks in vRA 8.x for User inputs. Create a new vRO action like DiskLimits…
Read More » -
vRA
Get the network names of a vRA reservation (IaaS)
Get the Network names of a vRA resvervation (IaaS) in a vRealize Orchestrator action script. // VMware vRealize Orchestrator…
Read More » -
VMWare
Get Network Profiles in a vRA instance
/** *VMware vRealize Orchestrator action sample * Returns the names of all network profiles defined in a vRA instance * For vRA…
Read More » -
Find the type of object
//find type of object function typeOf (obj) { return {}.toString.call(obj).split(‘ ‘)[1].slice(0, -1); }
Read More » -
Get resource pool from vC:Virtualmachine
/** * @param {vc:VirtualMachine} vcVm – The virtaul machine of vCenter. */ resourcePool = vcVm.runtime.host.parent.resourcePool;
Read More » -
vRO
Get VM Folder from vC:Virtualmachine
/** * @param {vc:VirtualMachine} vcVm – The virtaul machine of vCenter. */ vcVmFolderName = vcVm.parent.name;
Read More » -
Change Virtual Machine and Deployment owner in vRealize Automation 7.x
System.log(“\n================================”); System.log(“\n START: Change Owner Configuration.”); System.log(“\n================================”); var myResources = Server.findAllForType(“VCACCAFE:CatalogResource”, vmName); for each (resource in myResources){ if (resource.getName() == vmName){ catalogResourceName =…
Read More »