/**
* Returns the URLs of all registered vCenter server instances as array
* of strings.
*
* Assembler > Infrastructure > Connections > Cloud Accounts
* Orchestrator > Administration > Inventory > vSphere vCenter Server
*
* Checked with release 8.5.1, 8.12.0, 8.14.1, 8.16.0 and 8.18.0
*/
var vcenters = VcPlugin.allRegisteredInstances;
vcenters.forEach( function(vcenter) {
System.log(vcenter);
});
|