/* Begin----------------------------------------------------------------
*
* Example that returns the URLs of all registered vCenter server
* instances as array of strings.
*
* Cloud Assembly > Connections > Cloud Accounts
*
* Checked with vRA 8.5.1.18666
*
*/
var vcenters = VcPlugin.allRegisteredInstances;
vcenters.forEach ( function(vcenter) {
System.log(vcenter);
});
// End------------------------------------------------------------------